Tom Rini | 89789eb | 2020-01-29 11:03:34 -0500 | [diff] [blame] | 1 | // SPDX-License-Identifier: BSD-2-Clause |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2001 William L. Pitts |
| 4 | * All rights reserved. |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <command.h> |
Simon Glass | 62270f4 | 2019-11-14 12:57:35 -0700 | [diff] [blame] | 9 | #include <cpu_func.h> |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 10 | #include <elf.h> |
Simon Glass | cdbff9f | 2019-08-01 09:46:50 -0600 | [diff] [blame] | 11 | #include <env.h> |
Simon Glass | 8e8ccfe | 2019-12-28 10:45:03 -0700 | [diff] [blame] | 12 | #include <image.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 13 | #include <log.h> |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 14 | #include <net.h> |
Niklaus Giger | 29a4c24 | 2008-11-03 22:15:34 +0100 | [diff] [blame] | 15 | #include <vxworks.h> |
Bin Meng | b90ff0f | 2015-10-07 20:19:18 -0700 | [diff] [blame] | 16 | #ifdef CONFIG_X86 |
Bin Meng | 447ae4f | 2018-04-11 22:02:19 -0700 | [diff] [blame] | 17 | #include <vbe.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 18 | #include <asm/cache.h> |
Bin Meng | b90ff0f | 2015-10-07 20:19:18 -0700 | [diff] [blame] | 19 | #include <asm/e820.h> |
Bin Meng | 9aa1280 | 2015-10-07 20:19:19 -0700 | [diff] [blame] | 20 | #include <linux/linkage.h> |
Bin Meng | b90ff0f | 2015-10-07 20:19:18 -0700 | [diff] [blame] | 21 | #endif |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 22 | |
Mike Frysinger | 017e9b7 | 2008-04-13 19:42:18 -0400 | [diff] [blame] | 23 | /* Allow ports to override the default behavior */ |
Jeroen Hofstee | 553d8c3 | 2014-10-08 22:57:31 +0200 | [diff] [blame] | 24 | static unsigned long do_bootelf_exec(ulong (*entry)(int, char * const[]), |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 25 | int argc, char *const argv[]) |
Mike Frysinger | 1f1d88d | 2008-01-29 18:21:05 -0500 | [diff] [blame] | 26 | { |
Mike Frysinger | 017e9b7 | 2008-04-13 19:42:18 -0400 | [diff] [blame] | 27 | unsigned long ret; |
| 28 | |
Mike Frysinger | 1f1d88d | 2008-01-29 18:21:05 -0500 | [diff] [blame] | 29 | /* |
Mike Frysinger | 017e9b7 | 2008-04-13 19:42:18 -0400 | [diff] [blame] | 30 | * pass address parameter as argv[0] (aka command name), |
| 31 | * and all remaining args |
| 32 | */ |
Daniel Schwierzeck | 62e03d3 | 2012-09-16 06:55:05 +0000 | [diff] [blame] | 33 | ret = entry(argc, argv); |
Mike Frysinger | 1f1d88d | 2008-01-29 18:21:05 -0500 | [diff] [blame] | 34 | |
Mike Frysinger | 017e9b7 | 2008-04-13 19:42:18 -0400 | [diff] [blame] | 35 | return ret; |
| 36 | } |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 37 | |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 38 | /* Interpreter command to boot an arbitrary ELF image from memory */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 39 | int do_bootelf(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 40 | { |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 41 | unsigned long addr; /* Address of the ELF image */ |
| 42 | unsigned long rc; /* Return value from user code */ |
Tom Rini | be1b867 | 2017-05-18 17:03:07 -0400 | [diff] [blame] | 43 | char *sload = NULL; |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 44 | int rcode = 0; |
| 45 | |
Tom Rini | be1b867 | 2017-05-18 17:03:07 -0400 | [diff] [blame] | 46 | /* Consume 'bootelf' */ |
| 47 | argc--; argv++; |
Mike Frysinger | f44a928 | 2010-10-02 15:44:53 -0400 | [diff] [blame] | 48 | |
Tom Rini | be1b867 | 2017-05-18 17:03:07 -0400 | [diff] [blame] | 49 | /* Check for flag. */ |
| 50 | if (argc >= 1 && (argv[0][0] == '-' && \ |
| 51 | (argv[0][1] == 'p' || argv[0][1] == 's'))) { |
| 52 | sload = argv[0]; |
| 53 | /* Consume flag. */ |
| 54 | argc--; argv++; |
| 55 | } |
| 56 | /* Check for address. */ |
| 57 | if (argc >= 1 && strict_strtoul(argv[0], 16, &addr) != -EINVAL) { |
| 58 | /* Consume address */ |
| 59 | argc--; argv++; |
| 60 | } else |
Simon Glass | bb872dd | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 61 | addr = image_load_addr; |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 62 | |
Daniel Schwierzeck | 62e03d3 | 2012-09-16 06:55:05 +0000 | [diff] [blame] | 63 | if (!valid_elf_image(addr)) |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 64 | return 1; |
| 65 | |
Mike Frysinger | f44a928 | 2010-10-02 15:44:53 -0400 | [diff] [blame] | 66 | if (sload && sload[1] == 'p') |
| 67 | addr = load_elf_image_phdr(addr); |
| 68 | else |
| 69 | addr = load_elf_image_shdr(addr); |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 70 | |
Simon Glass | 7839865 | 2021-10-21 21:08:52 -0600 | [diff] [blame] | 71 | if (!env_get_autostart()) |
Siva Durga Prasad Paladugu | 44c8fd3 | 2015-03-09 12:46:47 +0100 | [diff] [blame] | 72 | return rcode; |
| 73 | |
Daniel Schwierzeck | 62e03d3 | 2012-09-16 06:55:05 +0000 | [diff] [blame] | 74 | printf("## Starting application at 0x%08lx ...\n", addr); |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 75 | |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 76 | /* |
| 77 | * pass address parameter as argv[0] (aka command name), |
| 78 | * and all remaining args |
| 79 | */ |
Tom Rini | be1b867 | 2017-05-18 17:03:07 -0400 | [diff] [blame] | 80 | rc = do_bootelf_exec((void *)addr, argc, argv); |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 81 | if (rc != 0) |
| 82 | rcode = 1; |
| 83 | |
Daniel Schwierzeck | 62e03d3 | 2012-09-16 06:55:05 +0000 | [diff] [blame] | 84 | printf("## Application terminated, rc = 0x%lx\n", rc); |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 85 | |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 86 | return rcode; |
| 87 | } |
| 88 | |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 89 | /* |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 90 | * Interpreter command to boot VxWorks from a memory image. The image can |
| 91 | * be either an ELF image or a raw binary. Will attempt to setup the |
| 92 | * bootline and other parameters correctly. |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 93 | */ |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 94 | int do_bootvx(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 95 | { |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 96 | unsigned long addr; /* Address of image */ |
Bin Meng | 79c584e | 2018-04-11 22:02:22 -0700 | [diff] [blame] | 97 | unsigned long bootaddr = 0; /* Address to put the bootline */ |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 98 | char *bootline; /* Text of the bootline */ |
| 99 | char *tmp; /* Temporary char pointer */ |
| 100 | char build_buf[128]; /* Buffer for building the bootline */ |
Bin Meng | 7f0c3c5 | 2015-10-07 20:19:15 -0700 | [diff] [blame] | 101 | int ptr = 0; |
Bin Meng | b90ff0f | 2015-10-07 20:19:18 -0700 | [diff] [blame] | 102 | #ifdef CONFIG_X86 |
Bin Meng | 2902be8 | 2018-04-11 22:02:07 -0700 | [diff] [blame] | 103 | ulong base; |
Bin Meng | fa5e91f | 2018-04-11 22:02:09 -0700 | [diff] [blame] | 104 | struct e820_info *info; |
Bin Meng | 4551992 | 2018-04-11 22:02:11 -0700 | [diff] [blame] | 105 | struct e820_entry *data; |
Bin Meng | 447ae4f | 2018-04-11 22:02:19 -0700 | [diff] [blame] | 106 | struct efi_gop_info *gop; |
| 107 | struct vesa_mode_info *vesa = &mode_info.vesa; |
Bin Meng | b90ff0f | 2015-10-07 20:19:18 -0700 | [diff] [blame] | 108 | #endif |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 109 | |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 110 | /* |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 111 | * Check the loadaddr variable. |
| 112 | * If we don't know where the image is then we're done. |
| 113 | */ |
Stany MARCEL | 07a1a0c | 2013-11-27 14:48:43 +0100 | [diff] [blame] | 114 | if (argc < 2) |
Simon Glass | bb872dd | 2019-12-28 10:45:02 -0700 | [diff] [blame] | 115 | addr = image_load_addr; |
Stefan Roese | 1bdd468 | 2006-11-29 12:53:15 +0100 | [diff] [blame] | 116 | else |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 117 | addr = hextoul(argv[1], NULL); |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 118 | |
Jon Loeliger | baa26db | 2007-07-08 17:51:39 -0500 | [diff] [blame] | 119 | #if defined(CONFIG_CMD_NET) |
Daniel Schwierzeck | 62e03d3 | 2012-09-16 06:55:05 +0000 | [diff] [blame] | 120 | /* |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 121 | * Check to see if we need to tftp the image ourselves |
| 122 | * before starting |
Daniel Schwierzeck | 62e03d3 | 2012-09-16 06:55:05 +0000 | [diff] [blame] | 123 | */ |
Stany MARCEL | 07a1a0c | 2013-11-27 14:48:43 +0100 | [diff] [blame] | 124 | if ((argc == 2) && (strcmp(argv[1], "tftp") == 0)) { |
Joe Hershberger | bc0571f | 2015-04-08 01:41:21 -0500 | [diff] [blame] | 125 | if (net_loop(TFTPGET) <= 0) |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 126 | return 1; |
Daniel Schwierzeck | 62e03d3 | 2012-09-16 06:55:05 +0000 | [diff] [blame] | 127 | printf("Automatic boot of VxWorks image at address 0x%08lx ...\n", |
| 128 | addr); |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 129 | } |
| 130 | #endif |
| 131 | |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 132 | /* |
| 133 | * This should equate to |
| 134 | * NV_RAM_ADRS + NV_BOOT_OFFSET + NV_ENET_OFFSET |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 135 | * from the VxWorks BSP header files. |
| 136 | * This will vary from board to board |
| 137 | */ |
Tuomas Tynkkynen | 8996975 | 2018-01-21 18:16:42 +0200 | [diff] [blame] | 138 | #if defined(CONFIG_SYS_VXWORKS_MAC_PTR) |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 139 | tmp = (char *)CONFIG_SYS_VXWORKS_MAC_PTR; |
Simon Glass | 35affd7 | 2017-08-03 12:22:14 -0600 | [diff] [blame] | 140 | eth_env_get_enetaddr("ethaddr", (uchar *)build_buf); |
Mike Frysinger | 62c93d9 | 2009-02-11 18:51:43 -0500 | [diff] [blame] | 141 | memcpy(tmp, build_buf, 6); |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 142 | #else |
Daniel Schwierzeck | 62e03d3 | 2012-09-16 06:55:05 +0000 | [diff] [blame] | 143 | puts("## Ethernet MAC address not copied to NV RAM\n"); |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 144 | #endif |
| 145 | |
Bin Meng | 79c584e | 2018-04-11 22:02:22 -0700 | [diff] [blame] | 146 | #ifdef CONFIG_X86 |
| 147 | /* |
| 148 | * Get VxWorks's physical memory base address from environment, |
| 149 | * if we don't specify it in the environment, use a default one. |
| 150 | */ |
| 151 | base = env_get_hex("vx_phys_mem_base", VXWORKS_PHYS_MEM_BASE); |
| 152 | data = (struct e820_entry *)(base + E820_DATA_OFFSET); |
| 153 | info = (struct e820_info *)(base + E820_INFO_OFFSET); |
| 154 | |
| 155 | memset(info, 0, sizeof(struct e820_info)); |
| 156 | info->sign = E820_SIGNATURE; |
| 157 | info->entries = install_e820_map(E820MAX, data); |
| 158 | info->addr = (info->entries - 1) * sizeof(struct e820_entry) + |
| 159 | E820_DATA_OFFSET; |
| 160 | |
| 161 | /* |
| 162 | * Explicitly clear the bootloader image size otherwise if memory |
| 163 | * at this offset happens to contain some garbage data, the final |
| 164 | * available memory size for the kernel is insane. |
| 165 | */ |
| 166 | *(u32 *)(base + BOOT_IMAGE_SIZE_OFFSET) = 0; |
| 167 | |
| 168 | /* |
| 169 | * Prepare compatible framebuffer information block. |
| 170 | * The VESA mode has to be 32-bit RGBA. |
| 171 | */ |
| 172 | if (vesa->x_resolution && vesa->y_resolution) { |
| 173 | gop = (struct efi_gop_info *)(base + EFI_GOP_INFO_OFFSET); |
| 174 | gop->magic = EFI_GOP_INFO_MAGIC; |
| 175 | gop->info.version = 0; |
| 176 | gop->info.width = vesa->x_resolution; |
| 177 | gop->info.height = vesa->y_resolution; |
| 178 | gop->info.pixel_format = EFI_GOT_RGBA8; |
| 179 | gop->info.pixels_per_scanline = vesa->bytes_per_scanline / 4; |
| 180 | gop->fb_base = vesa->phys_base_ptr; |
| 181 | gop->fb_size = vesa->bytes_per_scanline * vesa->y_resolution; |
| 182 | } |
| 183 | #endif |
| 184 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 185 | /* |
| 186 | * Use bootaddr to find the location in memory that VxWorks |
Bin Meng | 9e98b7e | 2015-10-07 20:19:17 -0700 | [diff] [blame] | 187 | * will look for the bootline string. The default value is |
| 188 | * (LOCAL_MEM_LOCAL_ADRS + BOOT_LINE_OFFSET) as defined by |
| 189 | * VxWorks BSP. For example, on PowerPC it defaults to 0x4200. |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 190 | */ |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 191 | tmp = env_get("bootaddr"); |
Bin Meng | 9e98b7e | 2015-10-07 20:19:17 -0700 | [diff] [blame] | 192 | if (!tmp) { |
Bin Meng | 79c584e | 2018-04-11 22:02:22 -0700 | [diff] [blame] | 193 | #ifdef CONFIG_X86 |
| 194 | bootaddr = base + X86_BOOT_LINE_OFFSET; |
| 195 | #else |
Bin Meng | 9e98b7e | 2015-10-07 20:19:17 -0700 | [diff] [blame] | 196 | printf("## VxWorks bootline address not specified\n"); |
Bin Meng | ced71a2 | 2018-04-11 22:02:21 -0700 | [diff] [blame] | 197 | return 1; |
Bin Meng | 79c584e | 2018-04-11 22:02:22 -0700 | [diff] [blame] | 198 | #endif |
Bin Meng | ced71a2 | 2018-04-11 22:02:21 -0700 | [diff] [blame] | 199 | } |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 200 | |
Bin Meng | 79c584e | 2018-04-11 22:02:22 -0700 | [diff] [blame] | 201 | if (!bootaddr) |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 202 | bootaddr = hextoul(tmp, NULL); |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 203 | |
Bin Meng | ced71a2 | 2018-04-11 22:02:21 -0700 | [diff] [blame] | 204 | /* |
| 205 | * Check to see if the bootline is defined in the 'bootargs' parameter. |
| 206 | * If it is not defined, we may be able to construct the info. |
| 207 | */ |
| 208 | bootline = env_get("bootargs"); |
| 209 | if (!bootline) { |
| 210 | tmp = env_get("bootdev"); |
| 211 | if (tmp) { |
| 212 | strcpy(build_buf, tmp); |
| 213 | ptr = strlen(tmp); |
| 214 | } else { |
| 215 | printf("## VxWorks boot device not specified\n"); |
Bin Meng | a4092db | 2015-10-07 20:19:16 -0700 | [diff] [blame] | 216 | } |
Niklaus Giger | 29a4c24 | 2008-11-03 22:15:34 +0100 | [diff] [blame] | 217 | |
Bin Meng | ced71a2 | 2018-04-11 22:02:21 -0700 | [diff] [blame] | 218 | tmp = env_get("bootfile"); |
| 219 | if (tmp) |
| 220 | ptr += sprintf(build_buf + ptr, "host:%s ", tmp); |
| 221 | else |
| 222 | ptr += sprintf(build_buf + ptr, "host:vxWorks "); |
| 223 | |
| 224 | /* |
| 225 | * The following parameters are only needed if 'bootdev' |
| 226 | * is an ethernet device, otherwise they are optional. |
| 227 | */ |
| 228 | tmp = env_get("ipaddr"); |
| 229 | if (tmp) { |
| 230 | ptr += sprintf(build_buf + ptr, "e=%s", tmp); |
| 231 | tmp = env_get("netmask"); |
| 232 | if (tmp) { |
| 233 | u32 mask = env_get_ip("netmask").s_addr; |
| 234 | ptr += sprintf(build_buf + ptr, |
| 235 | ":%08x ", ntohl(mask)); |
| 236 | } else { |
| 237 | ptr += sprintf(build_buf + ptr, " "); |
| 238 | } |
| 239 | } |
| 240 | |
| 241 | tmp = env_get("serverip"); |
| 242 | if (tmp) |
| 243 | ptr += sprintf(build_buf + ptr, "h=%s ", tmp); |
| 244 | |
| 245 | tmp = env_get("gatewayip"); |
| 246 | if (tmp) |
| 247 | ptr += sprintf(build_buf + ptr, "g=%s ", tmp); |
| 248 | |
| 249 | tmp = env_get("hostname"); |
| 250 | if (tmp) |
| 251 | ptr += sprintf(build_buf + ptr, "tn=%s ", tmp); |
| 252 | |
| 253 | tmp = env_get("othbootargs"); |
| 254 | if (tmp) { |
| 255 | strcpy(build_buf + ptr, tmp); |
| 256 | ptr += strlen(tmp); |
| 257 | } |
| 258 | |
| 259 | bootline = build_buf; |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 260 | } |
| 261 | |
Bin Meng | ced71a2 | 2018-04-11 22:02:21 -0700 | [diff] [blame] | 262 | memcpy((void *)bootaddr, bootline, max(strlen(bootline), (size_t)255)); |
| 263 | flush_cache(bootaddr, max(strlen(bootline), (size_t)255)); |
| 264 | printf("## Using bootline (@ 0x%lx): %s\n", bootaddr, (char *)bootaddr); |
| 265 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 266 | /* |
| 267 | * If the data at the load address is an elf image, then |
| 268 | * treat it like an elf image. Otherwise, assume that it is a |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 269 | * binary image. |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 270 | */ |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 271 | if (valid_elf_image(addr)) |
Christian Gmeiner | 476c2fc | 2018-03-20 14:18:25 +0100 | [diff] [blame] | 272 | addr = load_elf_image_phdr(addr); |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 273 | else |
Daniel Schwierzeck | 62e03d3 | 2012-09-16 06:55:05 +0000 | [diff] [blame] | 274 | puts("## Not an ELF image, assuming binary\n"); |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 275 | |
Daniel Schwierzeck | 62e03d3 | 2012-09-16 06:55:05 +0000 | [diff] [blame] | 276 | printf("## Starting vxWorks at 0x%08lx ...\n", addr); |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 277 | |
Reinhard Arlt | 6eee21d | 2011-11-18 09:06:52 +0000 | [diff] [blame] | 278 | dcache_disable(); |
Vasyl Vavrychuk | 3194daa | 2018-04-10 12:36:36 +0300 | [diff] [blame] | 279 | #if defined(CONFIG_ARM64) && defined(CONFIG_ARMV8_PSCI) |
| 280 | armv8_setup_psci(); |
| 281 | smp_kick_all_cpus(); |
| 282 | #endif |
| 283 | |
Bin Meng | 9aa1280 | 2015-10-07 20:19:19 -0700 | [diff] [blame] | 284 | #ifdef CONFIG_X86 |
| 285 | /* VxWorks on x86 uses stack to pass parameters */ |
| 286 | ((asmlinkage void (*)(int))addr)(0); |
| 287 | #else |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 288 | ((void (*)(int))addr)(0); |
Bin Meng | 9aa1280 | 2015-10-07 20:19:19 -0700 | [diff] [blame] | 289 | #endif |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 290 | |
Daniel Schwierzeck | 62e03d3 | 2012-09-16 06:55:05 +0000 | [diff] [blame] | 291 | puts("## vxWorks terminated\n"); |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 292 | |
wdenk | 458ded3 | 2002-09-20 10:59:08 +0000 | [diff] [blame] | 293 | return 1; |
| 294 | } |
| 295 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 296 | U_BOOT_CMD( |
Tom Rini | be1b867 | 2017-05-18 17:03:07 -0400 | [diff] [blame] | 297 | bootelf, CONFIG_SYS_MAXARGS, 0, do_bootelf, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 298 | "Boot from an ELF image in memory", |
Mike Frysinger | f44a928 | 2010-10-02 15:44:53 -0400 | [diff] [blame] | 299 | "[-p|-s] [address]\n" |
| 300 | "\t- load ELF image at [address] via program headers (-p)\n" |
| 301 | "\t or via section headers (-s)" |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 302 | ); |
| 303 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 304 | U_BOOT_CMD( |
Bin Meng | ebca3df | 2015-10-07 20:19:13 -0700 | [diff] [blame] | 305 | bootvx, 2, 0, do_bootvx, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 306 | "Boot vxWorks from an ELF image", |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 307 | " [address] - load address of vxWorks ELF image." |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 308 | ); |