2012-08-12 23:26:24 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2012 FIX94
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
#include <gccore.h>
|
|
|
|
#include <string.h>
|
2012-10-13 00:25:22 +02:00
|
|
|
#include <ogc/machine/processor.h>
|
|
|
|
|
2012-08-12 23:26:24 +02:00
|
|
|
#include "external_booter.hpp"
|
2012-10-13 00:25:22 +02:00
|
|
|
#include "booter.h"
|
|
|
|
#include "Config.h"
|
2012-08-22 17:29:42 +02:00
|
|
|
#include "channel/nand.hpp"
|
2012-09-02 13:51:26 +02:00
|
|
|
#include "devicemounter/DeviceHandler.hpp"
|
2012-09-29 13:30:47 +02:00
|
|
|
#include "gui/text.hpp"
|
2012-10-13 00:25:22 +02:00
|
|
|
#include "loader/fst.h"
|
|
|
|
#include "loader/mload.h"
|
|
|
|
#include "loader/wdvd.h"
|
2012-08-12 23:26:24 +02:00
|
|
|
#include "homebrew/homebrew.h"
|
2012-09-29 13:30:47 +02:00
|
|
|
#include "memory/mem2.hpp"
|
2012-10-13 00:25:22 +02:00
|
|
|
#include "plugin/crc32.h"
|
2012-08-12 23:26:24 +02:00
|
|
|
|
2012-10-13 00:25:22 +02:00
|
|
|
typedef void (*entrypoint) (void);
|
|
|
|
extern "C" { void __exception_closeall(); }
|
2012-08-12 23:26:24 +02:00
|
|
|
|
2012-10-13 00:25:22 +02:00
|
|
|
/* External WiiFlow Game Booter */
|
|
|
|
#define BOOTER_ADDR ((u8 *)0x80F00000)
|
|
|
|
static the_CFG *BooterConfig = (the_CFG*)0x93100000;
|
|
|
|
static entrypoint exeEntryPoint = (entrypoint)BOOTER_ADDR;
|
2012-08-12 23:26:24 +02:00
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
u8 configbytes[2];
|
|
|
|
u32 hooktype;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern u8 *code_buf;
|
|
|
|
extern u32 code_size;
|
|
|
|
extern void *codelist;
|
|
|
|
extern u8 *codelistend;
|
|
|
|
extern u32 gameconfsize;
|
|
|
|
extern u32 *gameconf;
|
|
|
|
|
2012-10-13 00:25:22 +02:00
|
|
|
u32 cookie;
|
|
|
|
__argv args;
|
2012-09-29 13:30:47 +02:00
|
|
|
the_CFG normalCFG;
|
2012-08-12 23:26:24 +02:00
|
|
|
void WiiFlow_ExternalBooter(u8 vidMode, bool vipatch, bool countryString, u8 patchVidMode, int aspectRatio, u32 returnTo, u8 BootType)
|
|
|
|
{
|
|
|
|
normalCFG.vidMode = vidMode;
|
|
|
|
normalCFG.vipatch = vipatch;
|
|
|
|
normalCFG.countryString = countryString;
|
|
|
|
normalCFG.patchVidMode = patchVidMode;
|
|
|
|
normalCFG.aspectRatio = aspectRatio;
|
|
|
|
normalCFG.returnTo = returnTo;
|
|
|
|
normalCFG.configbytes[0] = configbytes[0];
|
|
|
|
normalCFG.configbytes[1] = configbytes[1];
|
|
|
|
normalCFG.IOS = CurrentIOS;
|
|
|
|
normalCFG.codelist = codelist;
|
|
|
|
normalCFG.codelistend = codelistend;
|
|
|
|
normalCFG.cheats = code_buf;
|
|
|
|
normalCFG.cheatSize = code_size;
|
|
|
|
normalCFG.hooktype = hooktype;
|
|
|
|
normalCFG.debugger = debuggerselect;
|
|
|
|
normalCFG.gameconf = gameconf;
|
|
|
|
normalCFG.gameconfsize = gameconfsize;
|
|
|
|
normalCFG.BootType = BootType;
|
|
|
|
|
2012-09-02 13:51:26 +02:00
|
|
|
ShutdownBeforeExit(true);
|
2012-09-29 13:30:47 +02:00
|
|
|
/* Copy CFG into new memory region */
|
2012-10-13 00:25:22 +02:00
|
|
|
memcpy(BooterConfig, &normalCFG, sizeof(the_CFG));
|
|
|
|
DCFlushRange(BooterConfig, sizeof(the_CFG));
|
|
|
|
/* Copy in booter */
|
|
|
|
memcpy(BOOTER_ADDR, booter, booter_size);
|
|
|
|
DCFlushRange(BOOTER_ADDR, booter_size);
|
|
|
|
/* Boot it */
|
|
|
|
//SYS_ResetSystem(SYS_SHUTDOWN, 0, 0);
|
|
|
|
_CPU_ISR_Disable(cookie);
|
|
|
|
__exception_closeall();
|
|
|
|
exeEntryPoint();
|
|
|
|
_CPU_ISR_Restore(cookie);
|
2012-08-12 23:26:24 +02:00
|
|
|
}
|
|
|
|
|
2012-09-28 19:24:04 +02:00
|
|
|
extern FragList *frag_list;
|
|
|
|
extern s32 wbfsDev;
|
|
|
|
extern u32 wbfs_part_idx;
|
|
|
|
void ExternalBooter_WiiGameSetup(bool wbfs, bool dvd, const char *ID)
|
|
|
|
{
|
2012-09-29 13:30:47 +02:00
|
|
|
memset(&normalCFG, 0, sizeof(the_CFG));
|
2012-09-28 19:24:04 +02:00
|
|
|
normalCFG.GameBootType = dvd ? TYPE_WII_DISC : (wbfs ? TYPE_WII_WBFS : TYPE_WII_WBFS_EXT);
|
|
|
|
strncpy(normalCFG.gameID, ID, 6);
|
|
|
|
normalCFG.fragments = frag_list;
|
|
|
|
normalCFG.wbfsDevice = wbfsDev;
|
|
|
|
normalCFG.wbfsPart = wbfs_part_idx;
|
|
|
|
normalCFG.mload_rev = mload_get_version();
|
|
|
|
}
|
|
|
|
|
2012-09-07 22:10:04 +02:00
|
|
|
void ExternalBooter_ChannelSetup(u64 title)
|
2012-08-12 23:26:24 +02:00
|
|
|
{
|
2012-09-29 13:30:47 +02:00
|
|
|
memset(&normalCFG, 0, sizeof(the_CFG));
|
|
|
|
memcpy(&normalCFG.title, &title, sizeof(u64));
|
2012-08-12 23:26:24 +02:00
|
|
|
}
|
2012-09-02 13:51:26 +02:00
|
|
|
|
|
|
|
void ShutdownBeforeExit(bool KeepPatches)
|
|
|
|
{
|
2012-09-22 15:47:52 +02:00
|
|
|
DeviceHandle.UnMountAll();
|
2012-09-02 13:51:26 +02:00
|
|
|
Nand::Instance()->DeInit_ISFS(KeepPatches);
|
|
|
|
WDVD_Close();
|
|
|
|
}
|