USB Loader GX

*Properly sync video after flush to avoid possible green flash
*Moved argument command line also to mem2 to avoid overwrite of it

Forwarder V4:
*Changed to new app_booter method (see WiiXplorer SVN)
*Properly sync video after flush to avoid possible green flash
*Centered background image and corrected aspect ratio
This commit is contained in:
dimok321 2011-07-25 17:50:03 +00:00
parent 1618b4b1e0
commit 61fd18e438
7 changed files with 38 additions and 53 deletions

View File

@ -81,11 +81,9 @@ else
export LD := $(CXX) export LD := $(CXX)
endif endif
export OFILES := $(addsuffix .o,$(BINFILES)) \ export OFILES := $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
$(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
$(sFILES:.s=.o) $(SFILES:.S=.o) \ $(sFILES:.s=.o) $(SFILES:.S=.o) \
$(PNGFILES:.png=.png.o) $(addsuffix .o,$(DOLFILES)) \ $(PNGFILES:.png=.png.o) $(addsuffix .o,$(BINFILES))
$(addsuffix .o,$(ELFFILES))
#--------------------------------------------------------------------------------- #---------------------------------------------------------------------------------
# build a list of include paths # build a list of include paths
@ -142,11 +140,7 @@ $(OUTPUT).elf: $(OFILES)
@echo $(notdir $<) @echo $(notdir $<)
@bin2s -a 32 $< | $(AS) -o $(@) @bin2s -a 32 $< | $(AS) -o $(@)
%.dol.o : %.dol %.bin.o : %.bin
@echo $(notdir $<)
@bin2s -a 32 $< | $(AS) -o $(@)
%.elf.o : %.elf
@echo $(notdir $<) @echo $(notdir $<)
@bin2s -a 32 $< | $(AS) -o $(@) @bin2s -a 32 $< | $(AS) -o $(@)

BIN
data/app_booter.bin Normal file

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 104 KiB

View File

@ -3,6 +3,8 @@
#include "video.h" #include "video.h"
#include "filelist.h" #include "filelist.h"
extern int screenwidth;
extern int screenheight;
static int imagewidth = 0; static int imagewidth = 0;
static int imageheight = 0; static int imageheight = 0;
@ -56,7 +58,7 @@ void fadein(u8 * imgdata)
for(i = 0; i < 255; i = i+10) for(i = 0; i < 255; i = i+10)
{ {
if(i>255) i = 255; if(i>255) i = 255;
Background_Show(0, 0, 0, imgdata, 0, 1, 1, i); Background_Show(screenwidth/2-imagewidth/2, screenheight/2-imageheight/2, 0, imgdata, 0, (float)screenwidth/(float)imagewidth, 1, i);
} }
} }
@ -68,6 +70,6 @@ void fadeout(u8 * imgdata)
for(i = 255; i > 1; i = i-7) for(i = 255; i > 1; i = i-7)
{ {
if(i < 0) i = 0; if(i < 0) i = 0;
Background_Show(0, 0, 0, imgdata, 0, 1, 1, i); Background_Show(screenwidth/2-imagewidth/2, screenheight/2-imageheight/2, 0, imgdata, 0, (float)screenwidth/(float)imagewidth, 1, i);
} }
} }

View File

@ -8,8 +8,8 @@
#include <gccore.h> #include <gccore.h>
extern const u8 app_booter_dol[]; extern const u8 app_booter_bin[];
extern const u32 app_booter_dol_size; extern const u32 app_booter_bin_size;
extern const u8 background_png[]; extern const u8 background_png[];
extern const u32 background_png_size; extern const u32 background_png_size;

View File

@ -1,8 +1,6 @@
/**************************************************************************** /****************************************************************************
* Copyright 2009 The Lemon Man and thanks to luccax, Wiipower, Aurelio and crediar * Copyright 2009 The Lemon Man and thanks to luccax, Wiipower, Aurelio and crediar
* Copyright 2010 Dimok * Copyright 2010-2011 Dimok
*
* Original forwarder source by
* *
* This software is provided 'as-is', without any express or implied * This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any * warranty. In no event will the authors be held liable for any
@ -32,12 +30,17 @@
#include "video.h" #include "video.h"
#include "background_image.h" #include "background_image.h"
#include "dolloader.h"
#include "filelist.h" #include "filelist.h"
#include "devicemounter.h" #include "devicemounter.h"
#include "cfg.h" #include "cfg.h"
void __exception_setreload(int t); #define EXECUTE_ADDR ((u8 *) 0x92000000)
#define BOOTER_ADDR ((u8 *) 0x93000000)
#define ARGS_ADDR ((u8 *) 0x93200000)
typedef void (*entrypoint) (void);
extern void __exception_setreload(int t);
extern void __exception_closeall();
static int GetXMLArguments(const char *path, struct __argv *args) static int GetXMLArguments(const char *path, struct __argv *args)
{ {
@ -96,11 +99,6 @@ static int GetXMLArguments(const char *path, struct __argv *args)
entry[len] = '\0'; entry[len] = '\0';
char *tmp = (char *) realloc(args->commandLine, args->length + len + 1);
if(!tmp)
break; //out of memory, take what we got until now
args->commandLine = tmp;
strcpy(args->commandLine + args->length - 1, entry); strcpy(args->commandLine + args->length - 1, entry);
args->length += len + 1; args->length += len + 1;
} }
@ -154,10 +152,9 @@ int main(int argc, char **argv)
{ {
u32 cookie; u32 cookie;
FILE *exeFile = NULL; FILE *exeFile = NULL;
void * exeBuffer = (void *)EXECUTABLE_MEM_ADDR;
u32 exeSize = 0; u32 exeSize = 0;
u32 exeEntryPointAddress = 0; void * exeBuffer = (void *)EXECUTE_ADDR;
entrypoint exeEntryPoint; entrypoint exeEntryPoint = (entrypoint) BOOTER_ADDR;
__exception_setreload(0); __exception_setreload(0);
/* int videomod */ /* int videomod */
@ -223,53 +220,42 @@ int main(int argc, char **argv)
} }
fclose (exeFile); fclose (exeFile);
/* load entry point */ //! Setup argument struct
struct __argv args; struct __argv args;
bzero(&args, sizeof(args)); bzero(&args, sizeof(args));
args.argvMagic = ARGV_MAGIC; args.argvMagic = ARGV_MAGIC;
args.length = strlen(filepath) + 2; args.length = strlen(filepath) + 2;
args.commandLine = (char*)malloc(args.length); //! Put the argument into mem2 too, to avoid overwriting it
if (!args.commandLine) SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0); args.commandLine = (char *) ARGS_ADDR + sizeof(args);
//! Add executable file path as first argument
strcpy(args.commandLine, filepath); strcpy(args.commandLine, filepath);
//! Append the arguments from the meta.xml
GetXMLArguments(filepath, &args); GetXMLArguments(filepath, &args);
//! Finishing sequence "\0\0"
args.commandLine[args.length - 1] = '\0'; args.commandLine[args.length - 1] = '\0';
args.argc = 1; args.argc = 1;
args.argv = &args.commandLine; args.argv = &args.commandLine;
args.endARGV = args.argv + 1; args.endARGV = args.argv + 1;
u8 * appboot_buff = (u8 *) malloc(app_booter_dol_size); //! Put the booter code to it's expected address
if(!appboot_buff) memcpy(BOOTER_ADDR, app_booter_bin, app_booter_bin_size);
{ DCFlushRange(BOOTER_ADDR, app_booter_bin_size);
fadeout(imgdata);
SDCard_deInit();
USBDevice_deInit();
StopGX();
free(imgdata);
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
}
memcpy(appboot_buff, app_booter_dol, app_booter_dol_size); //! Put the argument struct to it's expected address
memcpy(ARGS_ADDR, &args, sizeof(args));
DCFlushRange(ARGS_ADDR, sizeof(args) + args.length);
exeEntryPointAddress = load_dol_image(appboot_buff, &args); //! Reset HBC stub so we can leave correct from USB Loader GX to System Menu
if(appboot_buff)
free(appboot_buff);
fadeout(imgdata);
SDCard_deInit();
USBDevice_deInit();
StopGX();
free(imgdata);
//! Reset HBC stub so we can leave correct from USB Loader to System Menu
memset((char *) 0x80001804, 0, 8); memset((char *) 0x80001804, 0, 8);
DCFlushRange((char *) 0x80001804, 8); DCFlushRange((char *) 0x80001804, 8);
if (exeEntryPointAddress == 0) /* cleaning up and load booter */
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0); fadeout(imgdata);
SDCard_deInit();
USBDevice_deInit();
StopGX();
free(imgdata);
exeEntryPoint = (entrypoint) exeEntryPointAddress;
/* cleaning up and load dol */
SYS_ResetSystem(SYS_SHUTDOWN, 0, 0); SYS_ResetSystem(SYS_SHUTDOWN, 0, 0);
_CPU_ISR_Disable (cookie); _CPU_ISR_Disable (cookie);
__exception_closeall (); __exception_closeall ();

View File

@ -204,6 +204,9 @@ void StopGX()
VIDEO_SetBlack(TRUE); VIDEO_SetBlack(TRUE);
VIDEO_Flush(); VIDEO_Flush();
VIDEO_WaitVSync();
if (vmode->viTVMode & VI_NON_INTERLACE)
VIDEO_WaitVSync();
} }
/**************************************************************************** /****************************************************************************