2 * Copyright (c) 2001 William L. Pitts
5 * Redistribution and use in source and binary forms are freely
6 * permitted provided that the above copyright notice and this
7 * paragraph and the following disclaimer are duplicated in all
10 * This software is provided "AS IS" and without any express or
11 * implied warranties, including, without limitation, the implied
12 * warranties of merchantability and fitness for a particular
18 #include <linux/ctype.h>
23 #if defined(CONFIG_WALNUT) || defined(CONFIG_SYS_VXWORKS_MAC_PTR)
24 DECLARE_GLOBAL_DATA_PTR;
27 int valid_elf_image (unsigned long addr);
28 unsigned long load_elf_image (unsigned long addr);
30 /* Allow ports to override the default behavior */
32 unsigned long do_bootelf_exec (ulong (*entry)(int, char *[]), int argc, char *argv[])
37 * QNX images require the data cache is disabled.
38 * Data cache is already flushed, so just turn it off.
40 int dcache = dcache_status ();
45 * pass address parameter as argv[0] (aka command name),
46 * and all remaining args
48 ret = entry (argc, argv);
56 /* ======================================================================
57 * Interpreter command to boot an arbitrary ELF image from memory.
58 * ====================================================================== */
59 int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
61 unsigned long addr; /* Address of the ELF image */
62 unsigned long rc; /* Return value from user code */
64 /* -------------------------------------------------- */
70 addr = simple_strtoul (argv[1], NULL, 16);
72 if (!valid_elf_image (addr))
75 addr = load_elf_image (addr);
77 printf ("## Starting application at 0x%08lx ...\n", addr);
80 * pass address parameter as argv[0] (aka command name),
81 * and all remaining args
83 rc = do_bootelf_exec ((void *)addr, argc - 1, argv + 1);
87 printf ("## Application terminated, rc = 0x%lx\n", rc);
91 /* ======================================================================
92 * Interpreter command to boot VxWorks from a memory image. The image can
93 * be either an ELF image or a raw binary. Will attempt to setup the
94 * bootline and other parameters correctly.
95 * ====================================================================== */
96 int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
98 unsigned long addr; /* Address of image */
99 unsigned long bootaddr; /* Address to put the bootline */
100 char *bootline; /* Text of the bootline */
101 char *tmp; /* Temporary char pointer */
102 char build_buf[128]; /* Buffer for building the bootline */
104 /* ---------------------------------------------------
106 * Check the loadaddr variable.
107 * If we don't know where the image is then we're done.
113 addr = simple_strtoul (argv[1], NULL, 16);
115 #if defined(CONFIG_CMD_NET)
116 /* Check to see if we need to tftp the image ourselves before starting */
118 if ((argc == 2) && (strcmp (argv[1], "tftp") == 0)) {
119 if (NetLoop (TFTP) <= 0)
121 printf ("Automatic boot of VxWorks image at address 0x%08lx ... \n",
126 /* This should equate
127 * to NV_RAM_ADRS + NV_BOOT_OFFSET + NV_ENET_OFFSET
128 * from the VxWorks BSP header files.
129 * This will vary from board to board
132 #if defined(CONFIG_WALNUT)
133 tmp = (char *) CONFIG_SYS_NVRAM_BASE_ADDR + 0x500;
134 eth_getenv_enetaddr("ethaddr", (uchar *)build_buf);
135 memcpy(tmp, &build_buf[3], 3);
136 #elif defined(CONFIG_SYS_VXWORKS_MAC_PTR)
137 tmp = (char *) CONFIG_SYS_VXWORKS_MAC_PTR;
138 eth_getenv_enetaddr("ethaddr", (uchar *)build_buf);
139 memcpy(tmp, build_buf, 6);
141 puts ("## Ethernet MAC address not copied to NV RAM\n");
145 * Use bootaddr to find the location in memory that VxWorks
146 * will look for the bootline string. The default value for
147 * PowerPC is LOCAL_MEM_LOCAL_ADRS + BOOT_LINE_OFFSET which
151 if ((tmp = getenv ("bootaddr")) == NULL)
152 bootaddr = CONFIG_SYS_VXWORKS_BOOT_ADDR;
154 bootaddr = simple_strtoul (tmp, NULL, 16);
157 * Check to see if the bootline is defined in the 'bootargs'
158 * parameter. If it is not defined, we may be able to
162 if ((bootline = getenv ("bootargs")) != NULL) {
163 memcpy ((void *) bootaddr, bootline,
164 max (strlen (bootline), 255));
165 flush_cache (bootaddr, max (strlen (bootline), 255));
169 sprintf (build_buf, CONFIG_SYS_VXWORKS_BOOT_DEVICE);
170 if ((tmp = getenv ("bootfile")) != NULL) {
171 sprintf (&build_buf[strlen (build_buf)],
172 "%s:%s ", CONFIG_SYS_VXWORKS_SERVERNAME, tmp);
174 sprintf (&build_buf[strlen (build_buf)],
175 "%s:file ", CONFIG_SYS_VXWORKS_SERVERNAME);
178 if ((tmp = getenv ("ipaddr")) != NULL) {
179 sprintf (&build_buf[strlen (build_buf)], "e=%s ", tmp);
182 if ((tmp = getenv ("serverip")) != NULL) {
183 sprintf (&build_buf[strlen (build_buf)], "h=%s ", tmp);
186 if ((tmp = getenv ("hostname")) != NULL) {
187 sprintf (&build_buf[strlen (build_buf)], "tn=%s ", tmp);
189 #ifdef CONFIG_SYS_VXWORKS_ADD_PARAMS
190 sprintf (&build_buf[strlen (build_buf)],
191 CONFIG_SYS_VXWORKS_ADD_PARAMS);
194 memcpy ((void *) bootaddr, build_buf,
195 max (strlen (build_buf), 255));
196 flush_cache (bootaddr, max (strlen (build_buf), 255));
200 * If the data at the load address is an elf image, then
201 * treat it like an elf image. Otherwise, assume that it is a
205 if (valid_elf_image (addr)) {
206 addr = load_elf_image (addr);
208 puts ("## Not an ELF image, assuming binary\n");
209 /* leave addr as load_addr */
212 printf ("## Using bootline (@ 0x%lx): %s\n", bootaddr,
214 printf ("## Starting vxWorks at 0x%08lx ...\n", addr);
216 ((void (*)(void)) addr) ();
218 puts ("## vxWorks terminated\n");
222 /* ======================================================================
223 * Determine if a valid ELF image exists at the given memory location.
224 * First looks at the ELF header magic field, the makes sure that it is
225 * executable and makes sure that it is for a PowerPC.
226 * ====================================================================== */
227 int valid_elf_image (unsigned long addr)
229 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
231 /* -------------------------------------------------- */
233 ehdr = (Elf32_Ehdr *) addr;
235 if (!IS_ELF (*ehdr)) {
236 printf ("## No elf image at address 0x%08lx\n", addr);
240 if (ehdr->e_type != ET_EXEC) {
241 printf ("## Not a 32-bit elf image at address 0x%08lx\n", addr);
246 if (ehdr->e_machine != EM_PPC) {
247 printf ("## Not a PowerPC elf image at address 0x%08lx\n",
256 /* ======================================================================
257 * A very simple elf loader, assumes the image is valid, returns the
258 * entry point address.
259 * ====================================================================== */
260 unsigned long load_elf_image (unsigned long addr)
262 Elf32_Ehdr *ehdr; /* Elf header structure pointer */
263 Elf32_Shdr *shdr; /* Section header structure pointer */
264 unsigned char *strtab = 0; /* String table pointer */
265 unsigned char *image; /* Binary image pointer */
266 int i; /* Loop counter */
268 /* -------------------------------------------------- */
270 ehdr = (Elf32_Ehdr *) addr;
272 /* Find the section header string table for output info */
273 shdr = (Elf32_Shdr *) (addr + ehdr->e_shoff +
274 (ehdr->e_shstrndx * sizeof (Elf32_Shdr)));
276 if (shdr->sh_type == SHT_STRTAB)
277 strtab = (unsigned char *) (addr + shdr->sh_offset);
279 /* Load each appropriate section */
280 for (i = 0; i < ehdr->e_shnum; ++i) {
281 shdr = (Elf32_Shdr *) (addr + ehdr->e_shoff +
282 (i * sizeof (Elf32_Shdr)));
284 if (!(shdr->sh_flags & SHF_ALLOC)
285 || shdr->sh_addr == 0 || shdr->sh_size == 0) {
290 debug("%sing %s @ 0x%08lx (%ld bytes)\n",
291 (shdr->sh_type == SHT_NOBITS) ?
293 &strtab[shdr->sh_name],
294 (unsigned long) shdr->sh_addr,
295 (long) shdr->sh_size);
298 if (shdr->sh_type == SHT_NOBITS) {
299 memset ((void *)shdr->sh_addr, 0, shdr->sh_size);
301 image = (unsigned char *) addr + shdr->sh_offset;
302 memcpy ((void *) shdr->sh_addr,
303 (const void *) image,
306 flush_cache (shdr->sh_addr, shdr->sh_size);
309 return ehdr->e_entry;
312 /* ====================================================================== */
314 bootelf, 2, 0, do_bootelf,
315 "Boot from an ELF image in memory",
316 " [address] - load address of ELF image."
320 bootvx, 2, 0, do_bootvx,
321 "Boot vxWorks from an ELF image",
322 " [address] - load address of vxWorks ELF image."