This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / arch / mips / momentum / ocelot_g / prom.c
index 6b4f577..2b480b2 100644 (file)
 #include <asm/addrspace.h>
 #include <asm/bootinfo.h>
 #include <asm/pmon.h>
-#include <asm/gt64240.h>
 
+#include "gt64240.h"
 #include "ocelot_pld.h"
 
 struct callvectors* debug_vectors;
 
-extern unsigned long marvell_base;
+extern unsigned long gt64240_base;
 extern unsigned long bus_clock;
 
 #ifdef CONFIG_GALILLEO_GT64240_ETH
@@ -38,8 +38,10 @@ const char *get_system_type(void)
        return "Momentum Ocelot";
 }
 
+/* [jsun@junsun.net] PMON passes arguments in C main() style */
 void __init prom_init(void)
 {
+       uint32_t tmp;
        int argc = fw_arg0;
        char **arg = (char **) fw_arg1;
        char **env = (char **) fw_arg2;
@@ -69,15 +71,17 @@ void __init prom_init(void)
 
        while (*env) {
                if (strncmp("gtbase", *env, strlen("gtbase")) == 0) {
-                       marvell_base = simple_strtol(*env + strlen("gtbase="),
+                       gt64240_base = simple_strtol(*env + strlen("gtbase="),
                                                        NULL, 16);
                }
                if (strncmp("busclock", *env, strlen("busclock")) == 0) {
                        bus_clock = simple_strtol(*env + strlen("busclock="),
                                                        NULL, 10);
                }
-               env++;
+               *env++;
        }
+
+       debug_vectors->printf("Booting Linux kernel...\n");
 }
 
 unsigned long __init prom_free_prom_memory(void)