some openbios support
authornotaz <notasas@gmail.com>
Mon, 10 Jul 2023 22:19:58 +0000 (01:19 +0300)
committernotaz <notasas@gmail.com>
Mon, 10 Jul 2023 22:45:34 +0000 (01:45 +0300)
slowboot isn't working yet, doesn't work at all with lightrec,
openbios-fastboot doesn't work with ari64

frontend/libretro.c
frontend/menu.c
libpcsxcore/misc.c
libpcsxcore/misc.h
libpcsxcore/psxcommon.c
libpcsxcore/psxcommon.h
libpcsxcore/r3000a.c

index 84baeda..5acaba8 100644 (file)
@@ -2708,12 +2708,6 @@ void retro_run(void)
    {
       rebootemu = 0;
       SysReset();
-      if (!Config.HLE && !Config.SlowBoot)
-      {
-         // skip BIOS logos
-         psxRegs.pc = psxRegs.GPR.n.ra;
-      }
-      return;
    }
 
    print_internal_fps();
index 9ca87c6..f78d3d2 100644 (file)
@@ -2011,9 +2011,6 @@ static int reset_game(void)
        ClosePlugins();
        OpenPlugins();
        SysReset();
-       if (CheckCdrom() != -1) {
-               LoadCdrom();
-       }
        return 0;
 }
 
@@ -2042,13 +2039,17 @@ static int reload_plugins(const char *cdimg)
 
 static int run_bios(void)
 {
+       boolean origSlowBoot = Config.SlowBoot;
+
        if (bios_sel == 0)
                return -1;
 
        ready_to_go = 0;
        if (reload_plugins(NULL) != 0)
                return -1;
+       Config.SlowBoot = 1;
        SysReset();
+       Config.SlowBoot = origSlowBoot;
 
        ready_to_go = 1;
        return 0;
index 57d3959..022ad6d 100644 (file)
@@ -22,6 +22,7 @@
 */
 
 #include <stddef.h>
+#include <assert.h>
 #include "misc.h"
 #include "cdrom.h"
 #include "mdec.h"
@@ -154,7 +155,7 @@ static const unsigned int gpu_data_def[] = {
        0x02000000, 0x00000000, 0x01ff03ff,
 };
 
-static void fake_bios_gpu_setup(void)
+void BiosLikeGPUSetup()
 {
        int i;
 
@@ -177,6 +178,14 @@ static void SetBootRegs(u32 pc, u32 gp, u32 sp)
        psxCpu->Notify(R3000ACPU_NOTIFY_AFTER_LOAD, NULL);
 }
 
+void BiosBootBypass() {
+       assert(psxRegs.pc == 0x80030000);
+
+       // skip BIOS logos and region check
+       psxCpu->Notify(R3000ACPU_NOTIFY_BEFORE_SAVE, NULL);
+       psxRegs.pc = psxRegs.GPR.n.ra;
+}
+
 int LoadCdrom() {
        EXE_HEADER tmpHead;
        struct iso_directory_record *dir;
@@ -184,15 +193,10 @@ int LoadCdrom() {
        u8 mdir[4096];
        char exename[256];
 
-       // not the best place to do it, but since BIOS boot logo killer
-       // is just below, do it here
-       fake_bios_gpu_setup();
-
-       if (!Config.HLE && !Config.SlowBoot) {
-               // skip BIOS logos
-               psxCpu->Notify(R3000ACPU_NOTIFY_BEFORE_SAVE, NULL);
-               psxRegs.pc = psxRegs.GPR.n.ra;
-               return 0;
+       if (!Config.HLE) {
+               if (!BiosBooted) return 0;              // custom BIOS
+               if (psxRegs.pc != 0x80030000) return 0; // BiosBootBypass'ed
+               if (Config.SlowBoot) return 0;
        }
 
        time[0] = itob(0); time[1] = itob(2); time[2] = itob(0x10);
@@ -210,6 +214,7 @@ int LoadCdrom() {
        if (GetCdromFile(mdir, time, "SYSTEM.CNF;1") == -1) {
                // if SYSTEM.CNF is missing, start an existing PSX.EXE
                if (GetCdromFile(mdir, time, "PSX.EXE;1") == -1) return -1;
+               strcpy(exename, "PSX.EXE;1");
 
                READTRACK();
        }
@@ -243,6 +248,7 @@ int LoadCdrom() {
 
        memcpy(&tmpHead, buf + 12, sizeof(EXE_HEADER));
 
+       SysPrintf("manual booting '%s'\n", exename);
        SetBootRegs(SWAP32(tmpHead.pc0), SWAP32(tmpHead.gp0), SWAP32(tmpHead.s_addr));
 
        tmpHead.t_size = SWAP32(tmpHead.t_size);
index ae3fc81..da99885 100644 (file)
@@ -56,6 +56,9 @@ typedef struct {
 extern char CdromId[10];
 extern char CdromLabel[33];
 
+void BiosLikeGPUSetup();
+void BiosBootBypass();
+
 int LoadCdrom();
 int LoadCdromFile(const char *filename, EXE_HEADER *head);
 int CheckCdrom();
index 8313304..fcc3deb 100644 (file)
@@ -26,6 +26,7 @@
 
 PcsxConfig Config;
 boolean NetOpened = FALSE;
+boolean BiosBooted = FALSE;
 
 int Log = 0;
 FILE *emuLog = NULL;
index b621326..67a0ae0 100644 (file)
@@ -150,13 +150,11 @@ typedef struct {
                boolean cdr_read_timing;
                boolean gpu_slow_list_walking;
        } hacks;
-#ifdef _WIN32
-       char Lang[256];
-#endif
 } PcsxConfig;
 
 extern PcsxConfig Config;
 extern boolean NetOpened;
+extern boolean BiosBooted;
 
 struct PcsxSaveFuncs {
        void *(*open)(const char *name, const char *mode);
index 8b7cfbf..53a5eba 100644 (file)
@@ -67,8 +67,14 @@ void psxReset() {
        psxHwReset();
        psxBiosInit();
 
-       if (!Config.HLE)
+       BiosLikeGPUSetup(); // a bit of a hack but whatever
+
+       BiosBooted = FALSE;
+       if (!Config.HLE) {
                psxExecuteBios();
+               if (psxRegs.pc == 0x80030000 && !Config.SlowBoot)
+                       BiosBootBypass();
+       }
 
 #ifdef EMU_LOG
        EMU_LOG("*BIOS END*\n");
@@ -237,7 +243,12 @@ void psxJumpTest() {
 }
 
 void psxExecuteBios() {
-       while (psxRegs.pc != 0x80030000)
+       int i;
+       for (i = 0; psxRegs.pc != 0x80030000 && i < 5000000; i++)
                psxCpu->ExecuteBlock();
+       if (psxRegs.pc == 0x80030000)
+               BiosBooted = TRUE;
+       else
+               SysPrintf("BIOS boot timeout - custom BIOS?\n");
 }