2012-01-21 21:57:41 +01:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <ogcsys.h>
|
|
|
|
|
#include <unistd.h>
|
2012-05-15 23:33:53 +02:00
|
|
|
|
#include <ogc/lwp_threads.h>
|
2012-01-21 21:57:41 +01:00
|
|
|
|
#include <ogc/lwp_watchdog.h>
|
|
|
|
|
#include <ogc/machine/processor.h>
|
|
|
|
|
|
|
|
|
|
#include "disc.h"
|
|
|
|
|
#include "wdvd.h"
|
|
|
|
|
#include "sys.h"
|
|
|
|
|
|
|
|
|
|
#include "fst.h"
|
|
|
|
|
#include "wbfs.h"
|
|
|
|
|
#include "frag.h"
|
|
|
|
|
#include "wip.h"
|
2012-08-05 15:48:15 +02:00
|
|
|
|
|
2012-06-16 19:03:23 +02:00
|
|
|
|
#include "utils.h"
|
2012-07-16 16:05:57 +02:00
|
|
|
|
#include "cios.h"
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
2012-08-05 15:48:15 +02:00
|
|
|
|
#include "devicemounter/usbstorage.h"
|
|
|
|
|
#include "gecko/gecko.h"
|
|
|
|
|
#include "memory/memory.h"
|
|
|
|
|
|
2012-01-21 21:57:41 +01:00
|
|
|
|
/* Constants */
|
|
|
|
|
#define PTABLE_OFFSET 0x40000
|
|
|
|
|
|
|
|
|
|
//appentrypoint
|
|
|
|
|
u32 appentrypoint;
|
|
|
|
|
|
|
|
|
|
/* Disc pointers */
|
|
|
|
|
static u32 *buffer = (u32 *)0x93000000;
|
|
|
|
|
static u8 *diskid = (u8 *)0x80000000;
|
|
|
|
|
|
|
|
|
|
s32 Disc_Init(void)
|
|
|
|
|
{
|
|
|
|
|
/* Init DVD subsystem */
|
|
|
|
|
return WDVD_Init();
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-12 02:34:32 +02:00
|
|
|
|
s32 Disc_Open(bool boot_disc)
|
2012-01-21 21:57:41 +01:00
|
|
|
|
{
|
|
|
|
|
/* Reset drive */
|
|
|
|
|
s32 ret = WDVD_Reset();
|
|
|
|
|
if (ret < 0) return ret;
|
|
|
|
|
|
|
|
|
|
memset(diskid, 0, 32);
|
|
|
|
|
|
|
|
|
|
/* Read disc ID */
|
2012-01-23 16:57:30 +01:00
|
|
|
|
ret = WDVD_ReadDiskId(diskid);
|
2012-03-18 14:29:17 +01:00
|
|
|
|
|
2012-05-04 07:09:40 +02:00
|
|
|
|
/* Directly set Audio Streaming for GC*/
|
2012-07-12 02:34:32 +02:00
|
|
|
|
if(boot_disc)
|
|
|
|
|
gprintf("Setting Audio Streaming for GC Games: 0x%08x\n", WDVD_SetStreaming());
|
2012-03-18 14:29:17 +01:00
|
|
|
|
|
2012-01-23 16:57:30 +01:00
|
|
|
|
return ret;
|
2012-01-21 21:57:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 Disc_Wait(void)
|
|
|
|
|
{
|
|
|
|
|
u32 cover = 0;
|
|
|
|
|
int icounter = 0;
|
|
|
|
|
|
|
|
|
|
/* Wait for disc */
|
|
|
|
|
while (!(cover & 0x2))
|
|
|
|
|
{
|
|
|
|
|
/* Get cover status */
|
|
|
|
|
s32 ret = WDVD_GetCoverStatus(&cover);
|
|
|
|
|
if (ret < 0) return ret;
|
|
|
|
|
|
|
|
|
|
// 10 tries to make sure it doesn<73>t "freeze" in Install dialog
|
|
|
|
|
// if no Game Disc is insert
|
|
|
|
|
icounter++;
|
|
|
|
|
sleep(1);
|
|
|
|
|
if(icounter > 10)
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-20 23:18:29 +02:00
|
|
|
|
s32 Disc_SetUSB(const u8 *id, bool frag)
|
2012-01-21 21:57:41 +01:00
|
|
|
|
{
|
2012-08-05 18:10:32 +02:00
|
|
|
|
/* ENABLE USB in cIOS */
|
|
|
|
|
if(id)
|
|
|
|
|
{
|
|
|
|
|
if(frag)
|
|
|
|
|
return set_frag_list();
|
|
|
|
|
s32 part = -1;
|
2012-08-11 14:27:38 +02:00
|
|
|
|
if(CurrentIOS.Type == IOS_TYPE_HERMES)
|
2012-08-05 18:10:32 +02:00
|
|
|
|
part = wbfs_part_idx ? wbfs_part_idx - 1 : 0;
|
|
|
|
|
return WDVD_SetUSBMode(wbfsDev, (u8*)id, part);
|
|
|
|
|
}
|
|
|
|
|
/* DISABLE USB in cIOS */
|
|
|
|
|
return WDVD_SetUSBMode(0, NULL, -1);
|
2012-01-21 21:57:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 Disc_ReadHeader(void *outbuf)
|
|
|
|
|
{
|
|
|
|
|
/* Read Wii disc header */
|
|
|
|
|
return WDVD_UnencryptedRead(outbuf, sizeof(struct discHdr), 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 Disc_ReadGCHeader(void *outbuf)
|
|
|
|
|
{
|
|
|
|
|
/* Read GC disc header */
|
|
|
|
|
return WDVD_UnencryptedRead(outbuf, sizeof(struct gc_discHdr), 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 Disc_Type(bool gc)
|
|
|
|
|
{
|
|
|
|
|
s32 ret;
|
|
|
|
|
u32 check;
|
|
|
|
|
u32 magic;
|
|
|
|
|
|
|
|
|
|
if (!gc)
|
|
|
|
|
{
|
|
|
|
|
check = WII_MAGIC;
|
|
|
|
|
struct discHdr *header = (struct discHdr *)buffer;
|
|
|
|
|
ret = Disc_ReadHeader(header);
|
|
|
|
|
magic = header->magic;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
check = GC_MAGIC;
|
|
|
|
|
struct gc_discHdr *header = (struct gc_discHdr *)buffer;
|
|
|
|
|
ret = Disc_ReadGCHeader(header);
|
2012-03-09 19:15:07 +01:00
|
|
|
|
if(strcmp((char *)header->id, "GCOPDV") == 0)
|
2012-05-24 20:48:26 +02:00
|
|
|
|
magic = GC_MAGIC;
|
2012-03-09 19:15:07 +01:00
|
|
|
|
else
|
|
|
|
|
magic = header->magic;
|
2012-01-21 21:57:41 +01:00
|
|
|
|
}
|
|
|
|
|
|
2012-05-24 20:48:26 +02:00
|
|
|
|
if (ret < 0)
|
|
|
|
|
return ret;
|
2012-01-21 21:57:41 +01:00
|
|
|
|
|
|
|
|
|
/* Check magic word */
|
|
|
|
|
if (magic != check) return -1;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 Disc_IsWii(void)
|
|
|
|
|
{
|
|
|
|
|
return Disc_Type(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
s32 Disc_IsGC(void)
|
|
|
|
|
{
|
|
|
|
|
return Disc_Type(1);
|
|
|
|
|
}
|