mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-05 10:25:07 +01:00
174 lines
4.2 KiB
C
174 lines
4.2 KiB
C
/****************************************************************************
|
|
* Nintendo Gamecube DVD Reading Library
|
|
*
|
|
* This is NOT a complete DVD library, in that it works for reading
|
|
* ISO9660 discs only.
|
|
*
|
|
* If you need softmod drivecodes etc, look elsewhere.
|
|
* There are known issues with libogc dvd handling, so these work
|
|
* outside of it ,if you will.
|
|
*
|
|
* This is ideal for using with a gc-linux self booting DVD only.
|
|
* Go http://www.gc-linux.org for further information and the tools
|
|
* for your platform.
|
|
*
|
|
* To keep libOGC stable, make sure you call DVD_Init before using
|
|
* these functions.
|
|
***************************************************************************/
|
|
#include "shared.h"
|
|
#ifdef HW_RVL
|
|
#include "di/di.h"
|
|
#endif
|
|
|
|
|
|
#ifndef HW_RVL
|
|
static u64 DvdMaxOffset = 0x57057C00; /* 1.4 GB max. */
|
|
static vu32* const dvd = (u32*)0xCC006000; /* DVD I/O Address base */
|
|
static u8 *inquiry=(unsigned char *)0x80000004;
|
|
|
|
#else
|
|
static u64 DvdMaxOffset = 0x118244F00LL; /* 4.7 GB max. */
|
|
#endif
|
|
|
|
/* 2k buffer for all DVD operations */
|
|
u8 DVDreadbuffer[2048] ATTRIBUTE_ALIGN (32);
|
|
|
|
|
|
/***************************************************************************
|
|
* dvd_read
|
|
*
|
|
* Read DVD disc sectors
|
|
***************************************************************************/
|
|
u32 dvd_read (void *dst, u32 len, u64 offset)
|
|
{
|
|
/*** We only allow 2k reads **/
|
|
if (len > 2048) return 0;
|
|
|
|
/*** Let's not read past end of DVD ***/
|
|
if(offset < DvdMaxOffset)
|
|
{
|
|
unsigned char *buffer = (unsigned char *) (unsigned int) DVDreadbuffer;
|
|
DCInvalidateRange((void *)buffer, len);
|
|
|
|
#ifndef HW_RVL
|
|
dvd[0] = 0x2E;
|
|
dvd[1] = 0;
|
|
dvd[2] = 0xA8000000;
|
|
dvd[3] = (u32)(offset >> 2);
|
|
dvd[4] = len;
|
|
dvd[5] = (u32) buffer;
|
|
dvd[6] = len;
|
|
dvd[7] = 3;
|
|
|
|
/*** Enable reading with DMA ***/
|
|
while (dvd[7] & 1);
|
|
|
|
/*** Ensure it has completed ***/
|
|
if (dvd[0] & 0x4) return 0;
|
|
|
|
#else
|
|
int ret = DI_ReadDVD(buffer, len , (u32)(offset >> 2));
|
|
if (ret)
|
|
{
|
|
char msg[50];
|
|
u32 val;
|
|
DI_GetError(&val);
|
|
sprintf(msg, "DI Read Error: 0x%08X\n",val);
|
|
return 0;
|
|
}
|
|
#endif
|
|
|
|
memcpy (dst, buffer, len);
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* dvd_motor_off
|
|
*
|
|
* Stop the DVD Motor
|
|
*
|
|
* This can be used to prevent the Disc from spinning during playtime
|
|
****************************************************************************/
|
|
void dvd_motor_off( )
|
|
{
|
|
#ifndef HW_RVL
|
|
dvd[0] = 0x2e;
|
|
dvd[1] = 0;
|
|
dvd[2] = 0xe3000000;
|
|
dvd[3] = 0;
|
|
dvd[4] = 0;
|
|
dvd[5] = 0;
|
|
dvd[6] = 0;
|
|
dvd[7] = 1; // Do immediate
|
|
while (dvd[7] & 1);
|
|
|
|
/*** PSO Stops blackscreen at reload ***/
|
|
dvd[0] = 0x14;
|
|
dvd[1] = 0;
|
|
|
|
#else
|
|
DI_StopMotor();
|
|
#endif
|
|
}
|
|
|
|
#ifndef HW_RVL
|
|
/****************************************************************************
|
|
* uselessinquiry
|
|
*
|
|
* As the name suggests, this function is quite useless.
|
|
* It's only purpose is to stop any pending DVD interrupts while we use the
|
|
* memcard interface.
|
|
*
|
|
* libOGC tends to foul up if you don't, and sometimes does if you do!
|
|
****************************************************************************/
|
|
void uselessinquiry ()
|
|
{
|
|
dvd[0] = 0;
|
|
dvd[1] = 0;
|
|
dvd[2] = 0x12000000;
|
|
dvd[3] = 0;
|
|
dvd[4] = 0x20;
|
|
dvd[5] = 0x80000000;
|
|
dvd[6] = 0x20;
|
|
dvd[7] = 1;
|
|
|
|
while (dvd[7] & 1);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* dvd_drive_detect()
|
|
*
|
|
* Detect the DVD Drive Type
|
|
*
|
|
****************************************************************************/
|
|
void dvd_drive_detect()
|
|
{
|
|
dvd[0] = 0x2e;
|
|
dvd[1] = 0;
|
|
dvd[2] = 0x12000000;
|
|
dvd[3] = 0;
|
|
dvd[4] = 0x20;
|
|
dvd[5] = 0x80000000;
|
|
dvd[6] = 0x20;
|
|
dvd[7] = 3;
|
|
while( dvd[7] & 1 );
|
|
DCFlushRange((void *)0x80000000, 32);
|
|
|
|
int driveid = (int)inquiry[2];
|
|
|
|
if ((driveid == 4) || (driveid == 6) || (driveid == 8))
|
|
{
|
|
/* Gamecube DVD Drive (1.4 GB)*/
|
|
DvdMaxOffset = 0x57057C00;
|
|
}
|
|
else
|
|
{
|
|
/* Wii DVD Drive (4.7GB) */
|
|
DvdMaxOffset = 0x118244F00LL;
|
|
}
|
|
}
|
|
#endif
|