2009-12-19 18:30:56 +00:00
|
|
|
/* USBnull
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2009-02-09 21:15:56 +00:00
|
|
|
*
|
2010-05-03 14:08:02 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-02-09 21:15:56 +00:00
|
|
|
*
|
2010-05-03 14:08:02 +00:00
|
|
|
* PCSX2 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.
|
2009-02-09 21:15:56 +00:00
|
|
|
*
|
2010-05-03 14:08:02 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-02-09 21:15:56 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2009-05-02 02:29:48 +00:00
|
|
|
#include <string>
|
|
|
|
using namespace std;
|
2009-02-09 21:15:56 +00:00
|
|
|
|
|
|
|
#include "USB.h"
|
2011-03-25 01:09:18 +00:00
|
|
|
string s_strIniPath="inis";
|
|
|
|
string s_strLogPath="logs";
|
2009-02-09 21:15:56 +00:00
|
|
|
|
|
|
|
const unsigned char version = PS2E_USB_VERSION;
|
|
|
|
const unsigned char revision = 0;
|
2010-01-09 05:11:18 +00:00
|
|
|
const unsigned char build = 7; // increase that with each version
|
2009-02-09 21:15:56 +00:00
|
|
|
|
|
|
|
static char *libraryName = "USBnull Driver";
|
2009-12-19 18:30:56 +00:00
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
USBcallback USBirq;
|
|
|
|
Config conf;
|
2010-01-09 05:11:18 +00:00
|
|
|
PluginLog USBLog;
|
|
|
|
|
|
|
|
s8 *usbregs, *ram;
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2010-05-29 10:46:48 +00:00
|
|
|
void LogInit()
|
|
|
|
{
|
|
|
|
const std::string LogFile(s_strLogPath + "/USBnull.log");
|
|
|
|
setLoggingState();
|
|
|
|
USBLog.Open(LogFile);
|
|
|
|
}
|
|
|
|
|
2010-06-01 11:27:10 +00:00
|
|
|
EXPORT_C_(void) USBsetLogDir(const char* dir)
|
2010-05-29 10:46:48 +00:00
|
|
|
{
|
|
|
|
// Get the path to the log directory.
|
2011-03-25 01:09:18 +00:00
|
|
|
s_strLogPath = (dir==NULL) ? "logs" : dir;
|
2010-05-29 10:46:48 +00:00
|
|
|
|
|
|
|
// Reload the log file after updated the path
|
|
|
|
USBLog.Close();
|
|
|
|
LogInit();
|
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(u32) PS2EgetLibType()
|
|
|
|
{
|
2009-02-09 21:15:56 +00:00
|
|
|
return PS2E_LT_USB;
|
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(char*) PS2EgetLibName()
|
|
|
|
{
|
2009-02-09 21:15:56 +00:00
|
|
|
return libraryName;
|
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(u32) PS2EgetLibVersion2(u32 type)
|
|
|
|
{
|
|
|
|
return (version << 16) | (revision << 8) | build;
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(s32) USBinit()
|
|
|
|
{
|
|
|
|
LoadConfig();
|
2010-05-29 10:46:48 +00:00
|
|
|
LogInit();
|
2010-01-09 05:11:18 +00:00
|
|
|
USBLog.WriteLn("USBnull plugin version %d,%d", revision, build);
|
|
|
|
USBLog.WriteLn("Initializing USBnull");
|
|
|
|
|
|
|
|
// Initialize memory structures here.
|
2010-05-28 16:54:42 +00:00
|
|
|
usbregs = (s8*)calloc(0x10000, 1);
|
2010-04-25 00:31:27 +00:00
|
|
|
|
|
|
|
if (usbregs == NULL)
|
2010-01-09 05:11:18 +00:00
|
|
|
{
|
2010-04-25 00:31:27 +00:00
|
|
|
USBLog.Message("Error allocating memory");
|
2010-01-09 05:11:18 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-02-09 21:15:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(void) USBshutdown()
|
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
// Yes, we close things in the Shutdown routine, and
|
|
|
|
// don't do anything in the close routine.
|
|
|
|
USBLog.Close();
|
2010-05-28 16:54:42 +00:00
|
|
|
|
|
|
|
free(usbregs);
|
|
|
|
usbregs = NULL;
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(s32) USBopen(void *pDsp)
|
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
USBLog.WriteLn("Opening USBnull.");
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-01-09 05:11:18 +00:00
|
|
|
// Take care of anything else we need on opening, other then initialization.
|
2009-02-09 21:15:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(void) USBclose()
|
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
USBLog.WriteLn("Closing USBnull.");
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
2010-01-09 05:11:18 +00:00
|
|
|
// Note: actually uncommenting the read/write functions I provided here
|
|
|
|
// caused uLauncher.elf to hang on startup, so careful when experimenting.
|
|
|
|
EXPORT_C_(u8) USBread8(u32 addr)
|
2009-05-02 02:29:48 +00:00
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
u8 value = 0;
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-01-09 05:11:18 +00:00
|
|
|
switch(addr)
|
|
|
|
{
|
|
|
|
// Handle any appropriate addresses here.
|
2010-01-14 00:57:01 +00:00
|
|
|
case 0x1f801600:
|
|
|
|
USBLog.WriteLn("(USBnull) 8 bit read at address %lx", addr);
|
|
|
|
break;
|
|
|
|
|
2010-01-09 05:11:18 +00:00
|
|
|
default:
|
|
|
|
//value = usbRu8(addr);
|
2010-01-14 00:57:01 +00:00
|
|
|
USBLog.WriteLn("*(USBnull) 8 bit read at address %lx", addr);
|
2010-01-09 05:11:18 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return value;
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(u16) USBread16(u32 addr)
|
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
u16 value = 0;
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-01-09 05:11:18 +00:00
|
|
|
switch(addr)
|
|
|
|
{
|
|
|
|
// Handle any appropriate addresses here.
|
2010-01-14 00:57:01 +00:00
|
|
|
case 0x1f801600:
|
|
|
|
USBLog.WriteLn("(USBnull) 16 bit read at address %lx", addr);
|
|
|
|
break;
|
|
|
|
|
2010-01-09 05:11:18 +00:00
|
|
|
default:
|
|
|
|
//value = usbRu16(addr);
|
2010-01-14 00:57:01 +00:00
|
|
|
USBLog.WriteLn("(USBnull) 16 bit read at address %lx", addr);
|
2010-01-09 05:11:18 +00:00
|
|
|
}
|
|
|
|
return value;
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(u32) USBread32(u32 addr)
|
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
u32 value = 0;
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2010-01-09 05:11:18 +00:00
|
|
|
switch(addr)
|
|
|
|
{
|
|
|
|
// Handle any appropriate addresses here.
|
2010-01-14 00:57:01 +00:00
|
|
|
case 0x1f801600:
|
|
|
|
USBLog.WriteLn("(USBnull) 32 bit read at address %lx", addr);
|
|
|
|
break;
|
|
|
|
|
2010-01-09 05:11:18 +00:00
|
|
|
default:
|
|
|
|
//value = usbRu32(addr);
|
2010-01-14 00:57:01 +00:00
|
|
|
USBLog.WriteLn("(USBnull) 32 bit read at address %lx", addr);
|
2010-01-09 05:11:18 +00:00
|
|
|
}
|
|
|
|
return value;
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(void) USBwrite8(u32 addr, u8 value)
|
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
switch(addr)
|
|
|
|
{
|
|
|
|
// Handle any appropriate addresses here.
|
2010-01-14 00:57:01 +00:00
|
|
|
case 0x1f801600:
|
|
|
|
USBLog.WriteLn("(USBnull) 8 bit write at address %lx value %x", addr, value);
|
|
|
|
break;
|
|
|
|
|
2010-01-09 05:11:18 +00:00
|
|
|
default:
|
|
|
|
//usbRu8(addr) = value;
|
2010-01-14 00:57:01 +00:00
|
|
|
USBLog.WriteLn("(USBnull) 8 bit write at address %lx value %x", addr, value);
|
2010-01-09 05:11:18 +00:00
|
|
|
}
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(void) USBwrite16(u32 addr, u16 value)
|
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
switch(addr)
|
|
|
|
{
|
|
|
|
// Handle any appropriate addresses here.
|
2010-01-14 00:57:01 +00:00
|
|
|
case 0x1f801600:
|
|
|
|
USBLog.WriteLn("(USBnull) 16 bit write at address %lx value %x", addr, value);
|
|
|
|
break;
|
|
|
|
|
2010-01-09 05:11:18 +00:00
|
|
|
default:
|
|
|
|
//usbRu16(addr) = value;
|
2010-01-14 00:57:01 +00:00
|
|
|
USBLog.WriteLn("(USBnull) 16 bit write at address %lx value %x", addr, value);
|
2010-01-09 05:11:18 +00:00
|
|
|
}
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(void) USBwrite32(u32 addr, u32 value)
|
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
switch(addr)
|
|
|
|
{
|
|
|
|
// Handle any appropriate addresses here.
|
2010-01-14 00:57:01 +00:00
|
|
|
case 0x1f801600:
|
|
|
|
USBLog.WriteLn("(USBnull) 16 bit write at address %lx value %x", addr, value);
|
|
|
|
break;
|
|
|
|
|
2010-01-09 05:11:18 +00:00
|
|
|
default:
|
|
|
|
//usbRu32(addr) = value;
|
2010-01-14 00:57:01 +00:00
|
|
|
USBLog.WriteLn("(USBnull) 32 bit write at address %lx value %x", addr, value);
|
2010-01-09 05:11:18 +00:00
|
|
|
}
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
2010-04-25 00:31:27 +00:00
|
|
|
EXPORT_C_(void) USBirqCallback(USBcallback callback)
|
2009-05-02 02:29:48 +00:00
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
// Register USBirq, so we can trigger an interrupt with it later.
|
|
|
|
// It will be called as USBirq(cycles); where cycles is the number
|
|
|
|
// of cycles before the irq is triggered.
|
|
|
|
USBirq = callback;
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(int) _USBirqHandler(void)
|
|
|
|
{
|
2010-04-25 00:31:27 +00:00
|
|
|
// This is our USB irq handler, so if an interrupt gets triggered,
|
2010-01-09 05:11:18 +00:00
|
|
|
// deal with it here.
|
2009-02-09 21:15:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(USBhandler) USBirqHandler(void)
|
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
// Pass our handler to pcsx2.
|
2009-02-09 21:15:56 +00:00
|
|
|
return (USBhandler)_USBirqHandler;
|
|
|
|
}
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(void) USBsetRAM(void *mem)
|
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
ram = (s8*)mem;
|
|
|
|
USBLog.WriteLn("*Setting ram.");
|
2009-02-09 21:15:56 +00:00
|
|
|
}
|
|
|
|
|
2009-12-20 13:45:26 +00:00
|
|
|
EXPORT_C_(void) USBsetSettingsDir(const char* dir)
|
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
// Get the path to the ini directory.
|
2011-03-25 01:09:18 +00:00
|
|
|
s_strIniPath = (dir==NULL) ? "inis" : dir;
|
2009-12-20 13:45:26 +00:00
|
|
|
}
|
2010-04-25 00:31:27 +00:00
|
|
|
|
2009-02-09 21:15:56 +00:00
|
|
|
// extended funcs
|
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(s32) USBfreeze(int mode, freezeData *data)
|
|
|
|
{
|
2010-04-25 00:31:27 +00:00
|
|
|
// This should store or retrieve any information, for if emulation
|
2010-01-09 05:11:18 +00:00
|
|
|
// gets suspended, or for savestates.
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case FREEZE_LOAD:
|
|
|
|
// Load previously saved data.
|
|
|
|
break;
|
|
|
|
case FREEZE_SAVE:
|
|
|
|
// Save data.
|
|
|
|
break;
|
|
|
|
case FREEZE_SIZE:
|
|
|
|
// return the size of the data.
|
|
|
|
break;
|
|
|
|
}
|
2009-02-09 21:15:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-09 05:11:18 +00:00
|
|
|
/*EXPORT_C_(void) USBasync(u32 cycles)
|
|
|
|
{
|
|
|
|
// Optional function: Called in IopCounter.cpp.
|
|
|
|
}*/
|
2009-02-09 21:15:56 +00:00
|
|
|
|
2009-05-02 02:29:48 +00:00
|
|
|
EXPORT_C_(s32) USBtest()
|
|
|
|
{
|
2010-01-09 05:11:18 +00:00
|
|
|
// 0 if the plugin works, non-0 if it doesn't.
|
2009-02-09 21:15:56 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-01-09 05:11:18 +00:00
|
|
|
/* For operating systems that need an entry point for a dll/library, here it is. Defined in PS2Eext.h. */
|
|
|
|
ENTRY_POINT;
|