ppx4xx: Fix sdram init on PMC440 boards
[oweals/u-boot.git] / common / cmd_elf.c
index 88744b473a349ad6d4c0c5115bf7b1dbc84eb2e6..2eb745315602afa86b351255844d5d636b4a2a0e 100644 (file)
 #include <command.h>
 #include <linux/ctype.h>
 #include <net.h>
-
-#include <cmd_elf.h>
 #include <elf.h>
 
-
-#if (CONFIG_COMMANDS & CFG_CMD_ELF)
+#if defined(CONFIG_WALNUT) || defined(CFG_VXWORKS_MAC_PTR)
+DECLARE_GLOBAL_DATA_PTR;
+#endif
 
 #ifndef MAX
 #define MAX(a,b) ((a) > (b) ? (a) : (b))
 #endif
 
+int valid_elf_image (unsigned long addr);
+unsigned long load_elf_image (unsigned long addr);
 
 /* ======================================================================
  * Interpreter command to boot an arbitrary ELF image from memory.
@@ -76,15 +77,8 @@ int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
  * be either an ELF image or a raw binary.  Will attempt to setup the
  * bootline and other parameters correctly.
  * ====================================================================== */
-int do_bootvx ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
+int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 {
-#if defined(CONFIG_WALNUT405)  || \
-    defined(CONFIG_CPCI405)    || \
-    defined(CONFIG_OCRTC)      || \
-    defined(CONFIG_ORSG)
-       DECLARE_GLOBAL_DATA_PTR;
-#endif
-
        unsigned long addr;             /* Address of image            */
        unsigned long bootaddr;         /* Address to put the bootline */
        char *bootline;                 /* Text of the bootline        */
@@ -100,18 +94,16 @@ int do_bootvx ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
         * If we don't know where the image is then we're done.
         */
 
-       if ((tmp = getenv ("loadaddr")) != NULL) {
-               addr = simple_strtoul (tmp, NULL, 16);
-       } else {
-               printf ("No load address provided\n");
-               return 1;
-       }
+       if (argc < 2)
+               addr = load_addr;
+       else
+               addr = simple_strtoul (argv[1], NULL, 16);
 
-#if (CONFIG_COMMANDS & CFG_CMD_NET)
+#if defined(CONFIG_CMD_NET)
        /* Check to see if we need to tftp the image ourselves before starting */
 
        if ((argc == 2) && (strcmp (argv[1], "tftp") == 0)) {
-               if (NetLoop (TFTP) == 0)
+               if (NetLoop (TFTP) <= 0)
                        return 1;
                printf ("Automatic boot of VxWorks image at address 0x%08lx ... \n", addr);
        }
@@ -123,24 +115,21 @@ int do_bootvx ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
         * This will vary from board to board
         */
 
-#if defined(CONFIG_WALNUT405)
+#if defined(CONFIG_WALNUT)
        tmp = (char *) CFG_NVRAM_BASE_ADDR + 0x500;
        memcpy ((char *) tmp, (char *) &gd->bd->bi_enetaddr[3], 3);
-#elif defined(CONFIG_CPCI405)
-       tmp = (char *) CFG_NVRAM_BASE_ADDR + CFG_NVRAM_VXWORKS_OFFS;
-       memcpy ((char *) tmp, (char *) &gd->bd->bi_enetaddr[0], 6);
-#elif defined(CONFIG_OCRTC) || defined(CONFIG_ORSG)
-       tmp = (char *) CFG_ETHERNET_MAC_ADDR;
+#elif defined(CFG_VXWORKS_MAC_PTR)
+       tmp = (char *) CFG_VXWORKS_MAC_PTR;
        memcpy ((char *) tmp, (char *) &gd->bd->bi_enetaddr[0], 6);
 #else
-       printf ("## Ethernet MAC address not copied to NV RAM\n");
+       puts ("## Ethernet MAC address not copied to NV RAM\n");
 #endif
 
-        /*
-         * Use bootaddr to find the location in memory that VxWorks
-         * will look for the bootline string. The default value for
-         * PowerPC is LOCAL_MEM_LOCAL_ADRS + BOOT_LINE_OFFSET which
-         * defaults to 0x4200
+       /*
+        * Use bootaddr to find the location in memory that VxWorks
+        * will look for the bootline string. The default value for
+        * PowerPC is LOCAL_MEM_LOCAL_ADRS + BOOT_LINE_OFFSET which
+        * defaults to 0x4200
         */
 
        if ((tmp = getenv ("bootaddr")) == NULL)
@@ -148,10 +137,10 @@ int do_bootvx ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
        else
                bootaddr = simple_strtoul (tmp, NULL, 16);
 
-        /*
-         * Check to see if the bootline is defined in the 'bootargs'
-         * parameter. If it is not defined, we may be able to
-         * construct the info
+       /*
+        * Check to see if the bootline is defined in the 'bootargs'
+        * parameter. If it is not defined, we may be able to
+        * construct the info
         */
 
        if ((bootline = getenv ("bootargs")) != NULL) {
@@ -194,27 +183,27 @@ int do_bootvx ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
                flush_cache (bootaddr, MAX(strlen(build_buf), 255));
 #else
 
-                /*
-                 * I'm not sure what the device should be for other
-                 * PPC flavors, the hostname and ipaddr should be ok
-                 * to just copy
+               /*
+                * I'm not sure what the device should be for other
+                * PPC flavors, the hostname and ipaddr should be ok
+                * to just copy
                 */
 
-               printf ("No bootargs defined\n");
+               puts ("No bootargs defined\n");
                return 1;
 #endif
        }
 
-        /*
-         * If the data at the load address is an elf image, then
-         * treat it like an elf image. Otherwise, assume that it is a
-         * binary image
+       /*
+        * If the data at the load address is an elf image, then
+        * treat it like an elf image. Otherwise, assume that it is a
+        * binary image
         */
 
        if (valid_elf_image (addr)) {
                addr = load_elf_image (addr);
        } else {
-               printf ("## Not an ELF image, assuming binary\n");
+               puts ("## Not an ELF image, assuming binary\n");
                /* leave addr as load_addr */
        }
 
@@ -224,7 +213,7 @@ int do_bootvx ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 
        ((void (*)(void)) addr) ();
 
-       printf ("## vxWorks terminated\n");
+       puts ("## vxWorks terminated\n");
        return 1;
 }
 
@@ -252,11 +241,13 @@ int valid_elf_image (unsigned long addr)
                return 0;
        }
 
+#if 0
        if (ehdr->e_machine != EM_PPC) {
                printf ("## Not a PowerPC elf image at address 0x%08lx\n",
                        addr);
                return 0;
        }
+#endif
 
        return 1;
 }
@@ -319,4 +310,14 @@ unsigned long load_elf_image (unsigned long addr)
 }
 
 /* ====================================================================== */
-#endif /* CFG_CMD_ELF */
+U_BOOT_CMD(
+       bootelf,      2,      0,      do_bootelf,
+       "bootelf - Boot from an ELF image in memory\n",
+       " [address] - load address of ELF image.\n"
+);
+
+U_BOOT_CMD(
+       bootvx,      2,      0,      do_bootvx,
+       "bootvx  - Boot vxWorks from an ELF image\n",
+       " [address] - load address of vxWorks ELF image.\n"
+);