mips: CBMEM table reference is passed to payload

The coreboot table address is passed as an argument when jumping
to payload.
With this change depthcharge is loaded and executed properly on urara.

Change-Id: I230d474a91b8d38aff070aa4aac623b6c8f0809c
Signed-off-by: Ionela Voinescu <ionela.voinescu@imgtec.com>
Reviewed-on: http://review.coreboot.org/10460
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
diff --git a/src/arch/mips/boot.c b/src/arch/mips/boot.c
index 2ac50b3..c09af05 100644
--- a/src/arch/mips/boot.c
+++ b/src/arch/mips/boot.c
@@ -22,5 +22,8 @@
 
 void arch_prog_run(struct prog *prog)
 {
-	stage_exit(prog_entry(prog));
+	void *cb_tables = prog_entry_arg(prog);
+	void (*doit)(void *) = prog_entry(prog);
+
+	doit(cb_tables);
 }