Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Marian Balakowicz | 2437cf2 | 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 | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 7 | */ |
| 8 | |
Marian Balakowicz | f92332b | 2008-01-31 13:20:06 +0100 | [diff] [blame] | 9 | |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 10 | #include <common.h> |
Simon Glass | 1ea9789 | 2020-05-10 11:40:00 -0600 | [diff] [blame] | 11 | #include <bootstage.h> |
Simon Glass | 6333448 | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 12 | #include <cpu_func.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 13 | #include <env.h> |
Simon Glass | 8e16b1e | 2019-12-28 10:45:05 -0700 | [diff] [blame] | 14 | #include <init.h> |
Simon Glass | 2dc9c34 | 2020-05-10 11:40:01 -0600 | [diff] [blame] | 15 | #include <lmb.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 16 | #include <log.h> |
Marian Balakowicz | 2437cf2 | 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 | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 21 | #include <asm/global_data.h> |
Jean-Christophe PLAGNIOL-VILLARD | 6bb9449 | 2009-04-04 12:49:11 +0200 | [diff] [blame] | 22 | #include <u-boot/zlib.h> |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 23 | #include <bzlib.h> |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 24 | #include <asm/byteorder.h> |
Kumar Gala | 365024c | 2011-01-31 15:51:20 -0600 | [diff] [blame] | 25 | #include <asm/mp.h> |
Christophe Leroy | 4a4750b | 2017-07-13 15:10:08 +0200 | [diff] [blame] | 26 | #include <bootm.h> |
| 27 | #include <vxworks.h> |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 28 | |
| 29 | #if defined(CONFIG_OF_LIBFDT) |
Masahiro Yamada | 75f82d0 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 30 | #include <linux/libfdt.h> |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 31 | #include <fdt_support.h> |
Wolfgang Denk | 1e0f07e | 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 | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 36 | #endif |
| 37 | |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 38 | DECLARE_GLOBAL_DATA_PTR; |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 39 | |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 40 | static ulong get_sp (void); |
Miao Yan | 1bd5456 | 2013-11-28 17:51:38 +0800 | [diff] [blame] | 41 | extern void ft_fixup_num_cores(void *blob); |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 42 | static void set_clocks_in_mhz (struct bd_info *kbd); |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 43 | |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 44 | #ifndef CFG_SYS_LINUX_LOWMEM_MAX_SIZE |
| 45 | #define CFG_SYS_LINUX_LOWMEM_MAX_SIZE (768*1024*1024) |
Kumar Gala | c5bacfd | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 46 | #endif |
| 47 | |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 48 | static void boot_jump_linux(struct bootm_headers *images) |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 49 | { |
Masahiro Yamada | f7ed78b | 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 | ffccb57 | 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 | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 56 | kernel = (void (*)(struct bd_info *, ulong, ulong, ulong, |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 57 | ulong, ulong, ulong))images->ep; |
Simon Glass | 8f055af | 2020-05-10 11:40:04 -0600 | [diff] [blame] | 58 | debug("## Transferring control to Linux (at address %08lx) ...\n", |
| 59 | (ulong)kernel); |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 60 | |
Simon Glass | 0169e6b | 2012-02-13 13:51:18 +0000 | [diff] [blame] | 61 | bootstage_mark(BOOTSTAGE_ID_RUN_OS); |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 62 | |
Mela Custodio | be11d89 | 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 | 1e0f07e | 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 | ffccb57 | 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 | 8f055af | 2020-05-10 11:40:04 -0600 | [diff] [blame] | 86 | debug(" Booting using OF flat tree...\n"); |
Stefan Roese | 80877fa | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 87 | schedule(); |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 88 | (*kernel) ((struct bd_info *)of_flat_tree, 0, 0, EPAPR_MAGIC, |
Simon Glass | da1a134 | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 89 | env_get_bootm_mapsize(), 0, 0); |
Kumar Gala | ffccb57 | 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 | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 108 | struct bd_info *kbd = images->kbd; |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 109 | |
Simon Glass | 8f055af | 2020-05-10 11:40:04 -0600 | [diff] [blame] | 110 | debug(" Booting using board info...\n"); |
Stefan Roese | 80877fa | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 111 | schedule(); |
Kumar Gala | ffccb57 | 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 | } |
Bin Meng | 75a6a37 | 2022-10-26 12:40:07 +0800 | [diff] [blame] | 116 | return; |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 117 | } |
| 118 | |
Kumar Gala | b02d722 | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 119 | void arch_lmb_reserve(struct lmb *lmb) |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 120 | { |
Becky Bruce | d26d67c | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 121 | phys_size_t bootm_size; |
Marek Vasut | d0dd68f | 2021-09-10 22:47:10 +0200 | [diff] [blame] | 122 | ulong size, bootmap_base; |
Kumar Gala | 93467bc | 2008-08-15 08:24:36 -0500 | [diff] [blame] | 123 | |
Simon Glass | da1a134 | 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 | c5bacfd | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 126 | |
| 127 | #ifdef DEBUG |
Becky Bruce | d26d67c | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 128 | if (((u64)bootmap_base + bootm_size) > |
Tom Rini | bb4dd96 | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 129 | (CFG_SYS_SDRAM_BASE + (u64)gd->ram_size)) |
Kumar Gala | c5bacfd | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 130 | puts("WARNING: bootm_low + bootm_size exceed total memory\n"); |
Becky Bruce | d26d67c | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 131 | if ((bootmap_base + bootm_size) > get_effective_memsize()) |
Kumar Gala | c5bacfd | 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 | d26d67c | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 135 | size = min(bootm_size, get_effective_memsize()); |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 136 | size = min(size, (ulong)CFG_SYS_LINUX_LOWMEM_MAX_SIZE); |
Kumar Gala | c5bacfd | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 137 | |
Becky Bruce | d26d67c | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 138 | if (size < bootm_size) { |
Kumar Gala | c5bacfd | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 139 | ulong base = bootmap_base + size; |
Pali Rohár | 80bec27 | 2022-05-26 14:36:03 +0200 | [diff] [blame] | 140 | printf("WARNING: adjusting available memory from 0x%lx to 0x%llx\n", |
| 141 | size, (unsigned long long)bootm_size); |
Becky Bruce | d26d67c | 2008-06-09 20:37:18 -0500 | [diff] [blame] | 142 | lmb_reserve(lmb, base, bootm_size - size); |
Kumar Gala | c5bacfd | 2008-02-27 21:51:50 -0600 | [diff] [blame] | 143 | } |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 144 | |
Marek Vasut | d0dd68f | 2021-09-10 22:47:10 +0200 | [diff] [blame] | 145 | arch_lmb_reserve_generic(lmb, get_sp(), gd->ram_top, 4096); |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 146 | |
Kumar Gala | 365024c | 2011-01-31 15:51:20 -0600 | [diff] [blame] | 147 | #ifdef CONFIG_MP |
| 148 | cpu_mp_lmb_reserve(lmb); |
| 149 | #endif |
| 150 | |
Bin Meng | 75a6a37 | 2022-10-26 12:40:07 +0800 | [diff] [blame] | 151 | return; |
Kumar Gala | b02d722 | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 152 | } |
| 153 | |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 154 | static void boot_prep_linux(struct bootm_headers *images) |
Kumar Gala | 180c581 | 2011-12-07 04:42:58 +0000 | [diff] [blame] | 155 | { |
| 156 | #ifdef CONFIG_MP |
| 157 | /* |
| 158 | * if we are MP make sure to flush the device tree so any changes are |
| 159 | * made visibile to all other cores. In AMP boot scenarios the cores |
| 160 | * might not be HW cache coherent with each other. |
| 161 | */ |
| 162 | flush_cache((unsigned long)images->ft_addr, images->ft_len); |
| 163 | #endif |
| 164 | } |
| 165 | |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 166 | static int boot_cmdline_linux(struct bootm_headers *images) |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 167 | { |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 168 | ulong of_size = images->ft_len; |
| 169 | struct lmb *lmb = &images->lmb; |
| 170 | ulong *cmd_start = &images->cmdline_start; |
| 171 | ulong *cmd_end = &images->cmdline_end; |
Kumar Gala | b02d722 | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 172 | |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 173 | int ret = 0; |
Kumar Gala | b02d722 | 2008-10-16 21:52:08 -0500 | [diff] [blame] | 174 | |
Kumar Gala | a56d7d5 | 2008-02-27 21:51:44 -0600 | [diff] [blame] | 175 | if (!of_size) { |
| 176 | /* allocate space and init command line */ |
Grant Likely | dfff7a2 | 2011-03-28 09:58:34 +0000 | [diff] [blame] | 177 | ret = boot_get_cmdline (lmb, cmd_start, cmd_end); |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 178 | if (ret) { |
| 179 | puts("ERROR with allocation of cmdline\n"); |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 180 | return ret; |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 181 | } |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 182 | } |
| 183 | |
| 184 | return ret; |
| 185 | } |
| 186 | |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 187 | static int boot_bd_t_linux(struct bootm_headers *images) |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 188 | { |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 189 | ulong of_size = images->ft_len; |
| 190 | struct lmb *lmb = &images->lmb; |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 191 | struct bd_info **kbd = &images->kbd; |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 192 | |
| 193 | int ret = 0; |
Kumar Gala | a56d7d5 | 2008-02-27 21:51:44 -0600 | [diff] [blame] | 194 | |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 195 | if (!of_size) { |
Kumar Gala | a56d7d5 | 2008-02-27 21:51:44 -0600 | [diff] [blame] | 196 | /* allocate space for kernel copy of board info */ |
Grant Likely | dfff7a2 | 2011-03-28 09:58:34 +0000 | [diff] [blame] | 197 | ret = boot_get_kbd (lmb, kbd); |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 198 | if (ret) { |
| 199 | puts("ERROR with allocation of kernel bd\n"); |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 200 | return ret; |
Kumar Gala | b937bb7 | 2008-02-27 21:51:49 -0600 | [diff] [blame] | 201 | } |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 202 | set_clocks_in_mhz(*kbd); |
Kumar Gala | a56d7d5 | 2008-02-27 21:51:44 -0600 | [diff] [blame] | 203 | } |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 204 | |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 205 | return ret; |
| 206 | } |
| 207 | |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 208 | static int boot_body_linux(struct bootm_headers *images) |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 209 | { |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 210 | int ret; |
| 211 | |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 212 | /* allocate space for kernel copy of board info */ |
| 213 | ret = boot_bd_t_linux(images); |
| 214 | if (ret) |
| 215 | return ret; |
| 216 | |
Simon Glass | ae7ed57 | 2023-02-05 15:40:13 -0700 | [diff] [blame] | 217 | if (IS_ENABLED(CONFIG_LMB)) { |
Ashok Reddy Soma | 8aaae3d | 2022-07-07 10:45:37 +0200 | [diff] [blame] | 218 | ret = image_setup_linux(images); |
| 219 | if (ret) |
| 220 | return ret; |
| 221 | } |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 222 | |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 223 | return 0; |
| 224 | } |
Kumar Gala | 56bdf1d | 2008-02-27 21:51:45 -0600 | [diff] [blame] | 225 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 226 | noinline int do_bootm_linux(int flag, int argc, char *const argv[], |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 227 | struct bootm_headers *images) |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 228 | { |
| 229 | int ret; |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 230 | |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 231 | if (flag & BOOTM_STATE_OS_CMDLINE) { |
| 232 | boot_cmdline_linux(images); |
| 233 | return 0; |
| 234 | } |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 235 | |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 236 | if (flag & BOOTM_STATE_OS_BD_T) { |
| 237 | boot_bd_t_linux(images); |
| 238 | return 0; |
| 239 | } |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 240 | |
Kumar Gala | 180c581 | 2011-12-07 04:42:58 +0000 | [diff] [blame] | 241 | if (flag & BOOTM_STATE_OS_PREP) { |
| 242 | boot_prep_linux(images); |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 243 | return 0; |
Kumar Gala | 180c581 | 2011-12-07 04:42:58 +0000 | [diff] [blame] | 244 | } |
Kumar Gala | dcdcfea | 2008-08-15 08:24:31 -0500 | [diff] [blame] | 245 | |
Kumar Gala | 180c581 | 2011-12-07 04:42:58 +0000 | [diff] [blame] | 246 | boot_prep_linux(images); |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 247 | ret = boot_body_linux(images); |
| 248 | if (ret) |
| 249 | return ret; |
| 250 | boot_jump_linux(images); |
Kumar Gala | 18f4c0f | 2008-02-27 21:51:46 -0600 | [diff] [blame] | 251 | |
Kumar Gala | ffccb57 | 2008-10-21 17:25:46 -0500 | [diff] [blame] | 252 | return 0; |
Marian Balakowicz | 2437cf2 | 2008-01-08 18:11:43 +0100 | [diff] [blame] | 253 | } |
Marian Balakowicz | 28fb615 | 2008-01-31 13:20:08 +0100 | [diff] [blame] | 254 | |
Marian Balakowicz | 9c701e8 | 2008-01-31 13:57:17 +0100 | [diff] [blame] | 255 | static ulong get_sp (void) |
| 256 | { |
| 257 | ulong sp; |
| 258 | |
| 259 | asm( "mr %0,1": "=r"(sp) : ); |
| 260 | return sp; |
| 261 | } |
| 262 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 263 | static void set_clocks_in_mhz (struct bd_info *kbd) |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 264 | { |
| 265 | char *s; |
| 266 | |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 267 | s = env_get("clocks_in_mhz"); |
| 268 | if (s) { |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 269 | /* convert all clock information to MHz */ |
| 270 | kbd->bi_intfreq /= 1000000L; |
| 271 | kbd->bi_busfreq /= 1000000L; |
Marian Balakowicz | 2efc264 | 2008-01-31 13:58:13 +0100 | [diff] [blame] | 272 | } |
Marian Balakowicz | 351d3e3 | 2008-02-27 11:02:26 +0100 | [diff] [blame] | 273 | } |
Miao Yan | 1bd5456 | 2013-11-28 17:51:38 +0800 | [diff] [blame] | 274 | |
| 275 | #if defined(CONFIG_BOOTM_VXWORKS) |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 276 | void boot_prep_vxworks(struct bootm_headers *images) |
Miao Yan | 1bd5456 | 2013-11-28 17:51:38 +0800 | [diff] [blame] | 277 | { |
| 278 | #if defined(CONFIG_OF_LIBFDT) |
| 279 | int off; |
| 280 | u64 base, size; |
| 281 | |
| 282 | if (!images->ft_addr) |
| 283 | return; |
| 284 | |
Stefan Roese | a13a2aa | 2020-08-12 13:16:36 +0200 | [diff] [blame] | 285 | base = (u64)gd->ram_base; |
| 286 | size = (u64)gd->ram_size; |
Miao Yan | 1bd5456 | 2013-11-28 17:51:38 +0800 | [diff] [blame] | 287 | |
| 288 | off = fdt_path_offset(images->ft_addr, "/memory"); |
| 289 | if (off < 0) |
| 290 | fdt_fixup_memory(images->ft_addr, base, size); |
| 291 | |
| 292 | #if defined(CONFIG_MP) |
| 293 | #if defined(CONFIG_MPC85xx) |
| 294 | ft_fixup_cpu(images->ft_addr, base + size); |
| 295 | ft_fixup_num_cores(images->ft_addr); |
| 296 | #elif defined(CONFIG_MPC86xx) |
| 297 | off = fdt_add_mem_rsv(images->ft_addr, |
| 298 | determine_mp_bootpg(NULL), (u64)4096); |
| 299 | if (off < 0) |
| 300 | printf("## WARNING %s: %s\n", __func__, fdt_strerror(off)); |
| 301 | ft_fixup_num_cores(images->ft_addr); |
| 302 | #endif |
| 303 | flush_cache((unsigned long)images->ft_addr, images->ft_len); |
| 304 | #endif |
| 305 | #endif |
| 306 | } |
| 307 | |
Simon Glass | df00afa | 2022-09-06 20:26:50 -0600 | [diff] [blame] | 308 | void boot_jump_vxworks(struct bootm_headers *images) |
Miao Yan | 1bd5456 | 2013-11-28 17:51:38 +0800 | [diff] [blame] | 309 | { |
| 310 | /* PowerPC VxWorks boot interface conforms to the ePAPR standard |
| 311 | * general purpuse registers: |
| 312 | * |
| 313 | * r3: Effective address of the device tree image |
| 314 | * r4: 0 |
| 315 | * r5: 0 |
| 316 | * r6: ePAPR magic value |
| 317 | * r7: shall be the size of the boot IMA in bytes |
| 318 | * r8: 0 |
| 319 | * r9: 0 |
| 320 | * TCR: WRC = 0, no watchdog timer reset will occur |
| 321 | */ |
Stefan Roese | 80877fa | 2022-09-02 14:10:46 +0200 | [diff] [blame] | 322 | schedule(); |
Miao Yan | 1bd5456 | 2013-11-28 17:51:38 +0800 | [diff] [blame] | 323 | |
| 324 | ((void (*)(void *, ulong, ulong, ulong, |
| 325 | ulong, ulong, ulong))images->ep)(images->ft_addr, |
Simon Glass | da1a134 | 2017-08-03 12:22:15 -0600 | [diff] [blame] | 326 | 0, 0, EPAPR_MAGIC, env_get_bootm_mapsize(), 0, 0); |
Miao Yan | 1bd5456 | 2013-11-28 17:51:38 +0800 | [diff] [blame] | 327 | } |
| 328 | #endif |