Search
lxdream.org :: lxdream/src/dreamcast.c
lxdream 0.9.1
released Jun 29
Download Now
filename src/dreamcast.c
changeset 825:2ac7ceccd775
prev766:336858fb0160
next839:51f1c4195790
author nkeynes
date Thu Aug 28 00:08:12 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Change so all tracks after sector 45000 belong to session 1, even if they don't have a valid lba
view annotate diff log raw
     1 /**
     2  * $Id$
     3  * Central switchboard for the system. This pulls all the individual modules
     4  * together into some kind of coherent structure. This is also where you'd
     5  * add Naomi support, if I ever get a board to play with...
     6  *
     7  * Copyright (c) 2005 Nathan Keynes.
     8  *
     9  * This program is free software; you can redistribute it and/or modify
    10  * it under the terms of the GNU General Public License as published by
    11  * the Free Software Foundation; either version 2 of the License, or
    12  * (at your option) any later version.
    13  *
    14  * This program is distributed in the hope that it will be useful,
    15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    17  * GNU General Public License for more details.
    18  */
    20 #include <errno.h>
    21 #include <glib.h>
    22 #include "lxdream.h"
    23 #include "dream.h"
    24 #include "mem.h"
    25 #include "dreamcast.h"
    26 #include "asic.h"
    27 #include "syscall.h"
    28 #include "gui.h"
    29 #include "aica/aica.h"
    30 #include "gdrom/ide.h"
    31 #include "maple/maple.h"
    32 #include "sh4/sh4.h"
    33 #include "sh4/sh4core.h"
    35 /**
    36  * Current state of the DC virtual machine
    37  */
    38 typedef enum { STATE_UNINIT=0, STATE_RUNNING, 
    39                STATE_STOPPING, STATE_STOPPED } dreamcast_state_t;
    41 static volatile dreamcast_state_t dreamcast_state = STATE_UNINIT;
    42 static gboolean dreamcast_has_bios = FALSE;
    43 static gboolean dreamcast_has_flash = FALSE;
    44 static gboolean dreamcast_exit_on_stop = FALSE;
    45 static gchar *dreamcast_program_name = NULL;
    46 static sh4addr_t dreamcast_entry_point = 0xA0000000;
    47 static uint32_t timeslice_length = DEFAULT_TIMESLICE_LENGTH;
    48 static uint64_t run_time_nanosecs = 0;
    50 #define MAX_MODULES 32
    51 static int num_modules = 0;
    52 dreamcast_module_t modules[MAX_MODULES];
    54 /**
    55  * The unknown module is used for logging files without an actual module
    56  * declaration
    57  */
    58 struct dreamcast_module unknown_module = { "****", NULL, NULL, NULL, NULL, 
    59         NULL, NULL, NULL };
    61 /**
    62  * This function is responsible for defining how all the pieces of the
    63  * dreamcast actually fit together. 
    64  *
    65  * Note currently the locations of the various MMIO pages are hard coded in
    66  * the MMIO definitions - they should probably be moved here.
    67  */
    68 void dreamcast_configure( )
    69 {
    70     const char *bios_path = lxdream_get_config_value(CONFIG_BIOS_PATH);
    71     const char *flash_path = lxdream_get_config_value(CONFIG_FLASH_PATH);
    73     dreamcast_register_module( &eventq_module );
    74     /* Register the memory framework */
    75     dreamcast_register_module( &mem_module );
    77     /* Setup standard memory map */
    78     mem_create_repeating_ram_region( 0x0C000000, 16 MB, MEM_REGION_MAIN, 0x01000000, 0x0F000000 );
    79     mem_create_ram_region( 0x00800000, 2 MB, MEM_REGION_AUDIO );
    80     mem_create_ram_region( 0x00703000, 8 KB, MEM_REGION_AUDIO_SCRATCH );
    81     mem_create_ram_region( 0x05000000, 8 MB, MEM_REGION_VIDEO );
    82     dreamcast_has_bios = mem_load_rom( bios_path, 0x00000000, 0x00200000, 0x89f2b1a1, MEM_REGION_BIOS );
    83     mem_create_ram_region( 0x00200000, 0x00020000, MEM_REGION_FLASH );
    84     if( flash_path != NULL && flash_path[0] != '\0' ) {
    85         mem_load_block( flash_path, 0x00200000, 0x00020000 );
    86     }
    87     dreamcast_has_flash = TRUE;
    89     /* Load in the rest of the core modules */
    90     dreamcast_register_module( &sh4_module );
    91     dreamcast_register_module( &asic_module );
    92     dreamcast_register_module( &pvr2_module );
    93     dreamcast_register_module( &aica_module );
    94     dreamcast_register_module( &maple_module );
    95     dreamcast_register_module( &ide_module );
    96 }
    98 void dreamcast_config_changed(void)
    99 {
   100     const char *bios_path = lxdream_get_config_value(CONFIG_BIOS_PATH);
   101     const char *flash_path = lxdream_get_config_value(CONFIG_FLASH_PATH);
   102     dreamcast_has_bios = mem_load_rom( bios_path, 0x00000000, 0x00200000, 0x89f2b1a1, MEM_REGION_BIOS );
   103     if( flash_path != NULL && flash_path[0] != '\0' ) {
   104         mem_load_block( flash_path, 0x00200000, 0x00020000 );
   105     }
   106 }
   108 void dreamcast_save_flash()
   109 {
   110     if( dreamcast_has_flash ) {
   111         const char *file = lxdream_get_config_value(CONFIG_FLASH_PATH);
   112         mem_save_block( file, 0x00200000, 0x00020000 );
   113     }
   114 }
   116 /**
   117  * Constructs a system configuration for the AICA in standalone mode,
   118  * ie sound chip only.
   119  */
   120 void dreamcast_configure_aica_only( )
   121 {
   122     dreamcast_register_module( &mem_module );
   123     mem_create_ram_region( 0x00800000, 2 MB, MEM_REGION_AUDIO );
   124     mem_create_ram_region( 0x00703000, 8 KB, MEM_REGION_AUDIO_SCRATCH );
   125     dreamcast_register_module( &aica_module );
   126     aica_enable();
   127     dreamcast_state = STATE_STOPPED;
   128 }
   130 void dreamcast_register_module( dreamcast_module_t module ) 
   131 {
   132     modules[num_modules++] = module;
   133     if( module->init != NULL )
   134         module->init();
   135 }
   137 void dreamcast_set_run_time( uint32_t secs, uint32_t nanosecs )
   138 {
   139     run_time_nanosecs = (((uint64_t)secs) * 1000000000) + nanosecs;
   140 }
   142 void dreamcast_set_exit_on_stop( gboolean flag )
   143 {
   144     dreamcast_exit_on_stop = flag;
   145 }
   147 void dreamcast_init( void )
   148 {
   149     dreamcast_configure();
   150     dreamcast_state = STATE_STOPPED;
   151 }
   153 void dreamcast_reset( void )
   154 {
   155     sh4_core_exit(CORE_EXIT_SYSRESET);
   156     int i;
   157     for( i=0; i<num_modules; i++ ) {
   158         if( modules[i]->reset != NULL )
   159             modules[i]->reset();
   160     }
   161 }
   163 void dreamcast_run( void )
   164 {
   165     int i;
   167     if( dreamcast_state != STATE_RUNNING ) {
   168         for( i=0; i<num_modules; i++ ) {
   169             if( modules[i]->start != NULL )
   170                 modules[i]->start();
   171         }
   172     }
   174     dreamcast_state = STATE_RUNNING;
   176     if( run_time_nanosecs != 0 ) {
   177         while( dreamcast_state == STATE_RUNNING ) {
   178             uint32_t time_to_run = timeslice_length;
   179             if( run_time_nanosecs < time_to_run ) {
   180                 time_to_run = (uint32_t)run_time_nanosecs;
   181             }
   183             for( i=0; i<num_modules; i++ ) {
   184                 if( modules[i]->run_time_slice != NULL )
   185                     time_to_run = modules[i]->run_time_slice( time_to_run );
   186             }
   188             if( run_time_nanosecs > time_to_run ) {
   189                 run_time_nanosecs -= time_to_run;
   190             } else {
   191                 run_time_nanosecs = 0; // Finished
   192                 break;
   193             }
   194         }
   195     } else {
   196         while( dreamcast_state == STATE_RUNNING ) {
   197             int time_to_run = timeslice_length;
   198             for( i=0; i<num_modules; i++ ) {
   199                 if( modules[i]->run_time_slice != NULL )
   200                     time_to_run = modules[i]->run_time_slice( time_to_run );
   201             }
   203         }
   204     }
   206     for( i=0; i<num_modules; i++ ) {
   207         if( modules[i]->stop != NULL )
   208             modules[i]->stop();
   209     }
   210     dreamcast_state = STATE_STOPPED;
   212     if( dreamcast_exit_on_stop ) {
   213         dreamcast_shutdown();
   214         exit(0);
   215     }
   216 }
   218 void dreamcast_stop( void )
   219 {
   220     sh4_core_exit(CORE_EXIT_HALT); // returns only if not inside SH4 core
   221     if( dreamcast_state == STATE_RUNNING )
   222         dreamcast_state = STATE_STOPPING;
   223 }
   225 void dreamcast_shutdown()
   226 {
   227     // Don't do a dreamcast_stop - if we're calling this out of SH4 code,
   228     // it's a shutdown-and-quit event
   229     if( dreamcast_state == STATE_RUNNING )
   230         dreamcast_state = STATE_STOPPING;
   231     dreamcast_save_flash();
   232 #ifdef ENABLE_SH4STATS
   233     sh4_stats_print(stdout);
   234 #endif
   235 }
   237 void dreamcast_program_loaded( const gchar *name, sh4addr_t entry_point )
   238 {
   239     if( dreamcast_program_name != NULL ) {
   240         g_free(dreamcast_program_name);
   241     }
   242     dreamcast_program_name = g_strdup(name);
   243     dreamcast_entry_point = entry_point;
   244     sh4_set_pc(entry_point);
   245     bios_install();
   246     dcload_install();
   247     gui_update_state();
   248 }
   250 gboolean dreamcast_is_running( void )
   251 {
   252     return dreamcast_state == STATE_RUNNING;
   253 }
   255 gboolean dreamcast_can_run(void)
   256 {
   257     return dreamcast_state != STATE_UNINIT &&
   258     (dreamcast_has_bios || dreamcast_program_name != NULL);
   259 }
   261 /********************************* Save States *****************************/
   263 struct save_state_header {
   264     char magic[16];
   265     uint32_t version;
   266     uint32_t module_count;
   267 };
   269 struct chunk_header {
   270     char marker[4]; /* Always BLCK */
   271     char name[8]; /* Block (module) name */
   272     uint32_t block_length;
   273 };
   275 /**
   276  * Check the save state header to ensure that it is a valid, supported
   277  * file. 
   278  * @return the number of blocks following, or 0 if the file is invalid.
   279  */
   280 int dreamcast_read_save_state_header( FILE *f )
   281 {
   282     struct save_state_header header;
   283     if( fread( &header, sizeof(header), 1, f ) != 1 ) {
   284         return 0;
   285     }
   286     if( strncmp( header.magic, DREAMCAST_SAVE_MAGIC, 16 ) != 0 ) {
   287         ERROR( "Not a %s save state file", APP_NAME );
   288         return 0;
   289     }
   290     if( header.version != DREAMCAST_SAVE_VERSION ) {
   291         ERROR( "%s save state version not supported", APP_NAME );
   292         return 0;
   293     }
   294     if( header.module_count > MAX_MODULES ) {
   295         ERROR( "%s save state is corrupted (bad module count)", APP_NAME );
   296         return 0;
   297     }
   298     return header.module_count;
   299 }
   301 int dreamcast_write_chunk_header( const gchar *name, uint32_t length, FILE *f )
   302 {
   303     struct chunk_header head;
   305     memcpy( head.marker, "BLCK", 4 );
   306     memset( head.name, 0, 8 );
   307     memcpy( head.name, name, strlen(name) );
   308     head.block_length = length;
   309     return fwrite( &head, sizeof(head), 1, f );
   310 }
   313 frame_buffer_t dreamcast_load_preview( const gchar *filename )
   314 {
   315     int i;
   316     FILE *f = fopen( filename, "r" );
   317     if( f == NULL ) return NULL;
   319     int module_count = dreamcast_read_save_state_header(f);
   320     if( module_count <= 0 ) {
   321         fclose(f);
   322         return NULL;
   323     }
   324     for( i=0; i<module_count; i++ ) {
   325         struct chunk_header head;
   326         if( fread( &head, sizeof(head), 1, f ) != 1 ) {
   327             fclose(f);
   328             return NULL;
   329         }
   330         if( memcmp("BLCK", head.marker, 4) != 0 ) {
   331             fclose(f);
   332             return NULL;
   333         }
   335         if( strcmp("PVR2", head.name) == 0 ) {
   336             uint32_t buf_count;
   337             int has_front;
   338             fread( &buf_count, sizeof(buf_count), 1, f );
   339             fread( &has_front, sizeof(has_front), 1, f );
   340             if( buf_count != 0 && has_front ) {
   341                 frame_buffer_t result = read_png_from_stream(f);
   342                 fclose(f);
   343                 return result;
   344             }
   345             break;
   346         } else {
   347             fseek( f, head.block_length, SEEK_CUR );
   348         }
   349     }
   350     return NULL;
   351 }
   353 int dreamcast_load_state( const gchar *filename )
   354 {
   355     int i,j;
   356     int module_count;
   357     int have_read[MAX_MODULES];
   359     FILE *f = fopen( filename, "r" );
   360     if( f == NULL ) return errno;
   362     module_count = dreamcast_read_save_state_header(f);
   363     if( module_count <= 0 ) {
   364         fclose(f);
   365         return 1;
   366     }
   368     for( i=0; i<MAX_MODULES; i++ ) {
   369         have_read[i] = 0;
   370     }
   372     for( i=0; i<module_count; i++ ) {
   373         struct chunk_header chunk;
   374         fread( &chunk, sizeof(chunk), 1, f );
   375         if( strncmp(chunk.marker, "BLCK", 4) != 0 ) {
   376             ERROR( "%s save state is corrupted (missing block header %d)", APP_NAME, i );
   377             fclose(f);
   378             return 2;
   379         }
   381         /* Find the matching module by name */
   382         for( j=0; j<num_modules; j++ ) {
   383             if( strcmp(modules[j]->name,chunk.name) == 0 ) {
   384                 have_read[j] = 1;
   385                 if( modules[j]->load == NULL ) {
   386                     ERROR( "%s save state is corrupted (no loader for %s)", APP_NAME, modules[j]->name );
   387                     fclose(f);
   388                     return 2;
   389                 } else if( modules[j]->load(f) != 0 ) {
   390                     ERROR( "%s save state is corrupted (%s failed)", APP_NAME, modules[j]->name );
   391                     fclose(f);
   392                     return 2;
   393                 }
   394                 break;
   395             }
   396         }
   397         if( j == num_modules ) {
   398             fclose(f);
   399             ERROR( "%s save state contains unrecognized section", APP_NAME );
   400             return 2;
   401         }
   402     }
   404     /* Any modules that we didn't load - reset to the default state.
   405      * (ie it's not an error to skip a module if you don't actually
   406      * care about its state).
   407      */
   408     for( j=0; j<num_modules; j++ ) {
   409         if( have_read[j] == 0 && modules[j]->reset != NULL ) {
   410             modules[j]->reset();
   411         }
   412     }
   413     fclose(f);
   414     INFO( "Save state read from %s", filename );
   415     return 0;
   416 }
   418 int dreamcast_save_state( const gchar *filename )
   419 {
   420     int i;
   421     FILE *f;
   422     struct save_state_header header;
   424     f = fopen( filename, "w" );
   425     if( f == NULL )
   426         return errno;
   427     strcpy( header.magic, DREAMCAST_SAVE_MAGIC );
   428     header.version = DREAMCAST_SAVE_VERSION;
   429     header.module_count = 0;
   431     for( i=0; i<num_modules; i++ ) {
   432         if( modules[i]->save != NULL )
   433             header.module_count++;
   434     }
   435     fwrite( &header, sizeof(header), 1, f );
   436     for( i=0; i<num_modules; i++ ) {
   437         if( modules[i]->save != NULL ) {
   438             uint32_t blocklen, posn1, posn2;
   439             dreamcast_write_chunk_header( modules[i]->name, 0, f );
   440             posn1 = ftell(f);
   441             modules[i]->save(f);
   442             posn2 = ftell(f);
   443             blocklen = posn2 - posn1;
   444             fseek( f, posn1-4, SEEK_SET );
   445             fwrite( &blocklen, sizeof(blocklen), 1, f );
   446             fseek( f, posn2, SEEK_SET );
   447         }
   448     }
   449     fclose( f );
   450     INFO( "Save state written to %s", filename );
   451     return 0;
   452 }
.