void fixup_prefs (struct uae_prefs *p, bool userconfig) { int err = 0; built_in_chipset_prefs (p); fixup_cpu (p); if (p->cpuboard_type && p->cpuboardmem1_size > cpuboard_maxmemory(p)) { error_log(_T("Unsupported accelerator board memory size %d (0x%x).\n"), p->cpuboardmem1_size, p->cpuboardmem1_size); p->cpuboardmem1_size = cpuboard_maxmemory(p); } if (cpuboard_memorytype(p) == BOARD_MEMORY_HIGHMEM) { p->mbresmem_high_size = p->cpuboardmem1_size; } else if (cpuboard_memorytype(p) == BOARD_MEMORY_Z2) { p->fastmem2_size = p->cpuboardmem1_size; } else if (cpuboard_memorytype(p) == BOARD_MEMORY_25BITMEM) { p->mem25bit_size = p->cpuboardmem1_size; } else if (cpuboard_memorytype(p) == BOARD_MEMORY_EMATRIX) { int size = p->cpuboardmem1_size / (1024 * 1024); if (size == 32 || size == 8 || size == 2) { p->custom_memory_sizes[0] = p->cpuboardmem1_size / 2; p->custom_memory_sizes[1] = p->cpuboardmem1_size / 2; p->custom_memory_addrs[0] = 0x18000000 - p->custom_memory_sizes[0]; p->custom_memory_addrs[1] = 0x18000000; p->custom_memory_mask[0] = 0x10000000; p->custom_memory_mask[1] = 0x18000000; } else { p->custom_memory_sizes[0] = p->cpuboardmem1_size; p->custom_memory_sizes[1] = 0; p->custom_memory_addrs[0] = 0x18000000 - p->custom_memory_sizes[0]; p->custom_memory_addrs[1] = 0; p->custom_memory_mask[0] = 0x10000000; p->custom_memory_mask[1] = 0; } } if (((p->chipmem_size & (p->chipmem_size - 1)) != 0 && p->chipmem_size != 0x180000) || p->chipmem_size < 0x20000 || p->chipmem_size > 0x800000) { error_log (_T("Unsupported chipmem size %d (0x%x)."), p->chipmem_size, p->chipmem_size); p->chipmem_size = 0x200000; err = 1; } if ((p->fastmem_size & (p->fastmem_size - 1)) != 0 || (p->fastmem_size != 0 && (p->fastmem_size < 0x10000 || p->fastmem_size > 0x800000))) { error_log (_T("Unsupported fastmem size %d (0x%x)."), p->fastmem_size, p->fastmem_size); p->fastmem_size = 0; err = 1; } if ((p->fastmem2_size & (p->fastmem2_size - 1)) != 0 || (p->fastmem2_size != 0 && (p->fastmem2_size < 0x10000 || p->fastmem2_size > 0x800000))) { error_log (_T("Unsupported fastmem2 size %d (0x%x)."), p->fastmem2_size, p->fastmem2_size); p->fastmem2_size = 0; err = 1; } if (p->cachesize) { if (p->fastmem_size + p->fastmem2_size > 0x800000) { error_log (_T("Unsupported fastmem2 size %d (0x%x)."), p->fastmem2_size, p->fastmem2_size); err = 1; } if (p->fastmem2_size > p->fastmem_size && p->fastmem_size > 0) { error_log (_T("Fastmem2 size can't be larger than fastmem1 if JIT is enabled.")); p->fastmem2_size = 0; err = 1; } } if (p->rtgmem_size > max_z3fastmem && p->rtgmem_type == GFXBOARD_UAE_Z3) { error_log (_T("Graphics card memory size %d (0x%x) larger than maximum reserved %d (0x%x)."), p->rtgmem_size, p->rtgmem_size, max_z3fastmem, max_z3fastmem); p->rtgmem_size = max_z3fastmem; err = 1; } if ((p->rtgmem_size & (p->rtgmem_size - 1)) != 0 || (p->rtgmem_size != 0 && (p->rtgmem_size < 0x100000))) { error_log (_T("Unsupported graphics card memory size %d (0x%x)."), p->rtgmem_size, p->rtgmem_size); if (p->rtgmem_size > max_z3fastmem) p->rtgmem_size = max_z3fastmem; else p->rtgmem_size = 0; err = 1; } if (p->z3fastmem_size > max_z3fastmem) { error_log (_T("Zorro III fastmem size %d (0x%x) larger than max reserved %d (0x%x)."), p->z3fastmem_size, p->z3fastmem_size, max_z3fastmem, max_z3fastmem); p->z3fastmem_size = max_z3fastmem; err = 1; } if ((p->z3fastmem_size & (p->z3fastmem_size - 1)) != 0 || (p->z3fastmem_size != 0 && p->z3fastmem_size < 0x100000)) { error_log (_T("Unsupported Zorro III fastmem size %d (0x%x)."), p->z3fastmem_size, p->z3fastmem_size); p->z3fastmem_size = 0; err = 1; } if (p->z3fastmem2_size > max_z3fastmem) { error_log (_T("Zorro III fastmem2 size %d (0x%x) larger than max reserved %d (0x%x)."), p->z3fastmem2_size, p->z3fastmem2_size, max_z3fastmem, max_z3fastmem); p->z3fastmem2_size = max_z3fastmem; err = 1; } if ((p->z3fastmem2_size & (p->z3fastmem2_size - 1)) != 0 || (p->z3fastmem2_size != 0 && p->z3fastmem2_size < 0x100000)) { error_log (_T("Unsupported Zorro III fastmem2 size %x (%x)."), p->z3fastmem2_size, p->z3fastmem2_size); p->z3fastmem2_size = 0; err = 1; } p->z3autoconfig_start &= ~0xffff; if (p->z3autoconfig_start < 0x1000000) p->z3autoconfig_start = 0x1000000; if (p->z3chipmem_size > max_z3fastmem) { error_log (_T("Zorro III fake chipmem size %d (0x%x) larger than max reserved %d (0x%x)."), p->z3chipmem_size, p->z3chipmem_size, max_z3fastmem, max_z3fastmem); p->z3chipmem_size = max_z3fastmem; err = 1; } if (((p->z3chipmem_size & (p->z3chipmem_size - 1)) != 0 && p->z3chipmem_size != 0x18000000 && p->z3chipmem_size != 0x30000000) || (p->z3chipmem_size != 0 && p->z3chipmem_size < 0x100000)) { error_log (_T("Unsupported 32-bit chipmem size %d (0x%x)."), p->z3chipmem_size, p->z3chipmem_size); p->z3chipmem_size = 0; err = 1; } if (p->address_space_24 && (p->z3fastmem_size != 0 || p->z3fastmem2_size != 0 || p->z3chipmem_size != 0)) { p->z3fastmem_size = p->z3fastmem2_size = p->z3chipmem_size = 0; error_log (_T("Can't use a Z3 graphics card or 32-bit memory when using a 24 bit address space.")); } if (p->bogomem_size != 0 && p->bogomem_size != 0x80000 && p->bogomem_size != 0x100000 && p->bogomem_size != 0x180000 && p->bogomem_size != 0x1c0000) { error_log (_T("Unsupported bogomem size %d (0x%x)"), p->bogomem_size, p->bogomem_size); p->bogomem_size = 0; err = 1; } if (p->bogomem_size > 0x180000 && (p->cs_fatgaryrev >= 0 || p->cs_ide || p->cs_ramseyrev >= 0)) { p->bogomem_size = 0x180000; error_log (_T("Possible Gayle bogomem conflict fixed.")); } if (p->chipmem_size > 0x200000 && p->fastmem_size > 262144) { error_log(_T("You can't use fastmem and more than 2MB chip at the same time.")); p->chipmem_size = 0x200000; err = 1; } if (p->chipmem_size > 0x200000 && p->rtgmem_size && gfxboard_get_configtype(p->rtgmem_type) == 2) { error_log(_T("You can't use Zorro II RTG and more than 2MB chip at the same time.")); p->chipmem_size = 0x200000; err = 1; } if (p->mem25bit_size > 128 * 1024 * 1024 || (p->mem25bit_size & 0xfffff)) { p->mem25bit_size = 0; error_log(_T("Unsupported 25bit RAM size")); } if (p->mbresmem_low_size > 0x04000000 || (p->mbresmem_low_size & 0xfffff)) { p->mbresmem_low_size = 0; error_log (_T("Unsupported Mainboard RAM size")); } if (p->mbresmem_high_size > 0x08000000 || (p->mbresmem_high_size & 0xfffff)) { p->mbresmem_high_size = 0; error_log (_T("Unsupported CPU Board RAM size.")); } if (p->rtgmem_type >= GFXBOARD_HARDWARE) { if (gfxboard_get_vram_min(p->rtgmem_type) > 0 && p->rtgmem_size < gfxboard_get_vram_min (p->rtgmem_type)) { error_log(_T("Graphics card memory size %d (0x%x) smaller than minimum hardware supported %d (0x%x)."), p->rtgmem_size, p->rtgmem_size, gfxboard_get_vram_min(p->rtgmem_type), gfxboard_get_vram_min(p->rtgmem_type)); p->rtgmem_size = gfxboard_get_vram_min (p->rtgmem_type); } if (p->address_space_24 && gfxboard_get_configtype(p->rtgmem_type) == 3) { p->rtgmem_type = GFXBOARD_UAE_Z2; p->rtgmem_size = 0; error_log (_T("Z3 RTG and 24-bit address space are not compatible.")); } if (gfxboard_get_vram_max(p->rtgmem_type) > 0 && p->rtgmem_size > gfxboard_get_vram_max(p->rtgmem_type)) { error_log(_T("Graphics card memory size %d (0x%x) larger than maximum hardware supported %d (0x%x)."), p->rtgmem_size, p->rtgmem_size, gfxboard_get_vram_max(p->rtgmem_type), gfxboard_get_vram_max(p->rtgmem_type)); p->rtgmem_size = gfxboard_get_vram_max(p->rtgmem_type); } } if (p->address_space_24 && p->rtgmem_size && p->rtgmem_type == GFXBOARD_UAE_Z3) { error_log (_T("Z3 RTG and 24bit address space are not compatible.")); p->rtgmem_type = GFXBOARD_UAE_Z2; } if (p->rtgmem_type == GFXBOARD_UAE_Z2 && (p->chipmem_size > 2 * 1024 * 1024 || getz2size (p) > 8 * 1024 * 1024 || getz2size (p) < 0)) { p->rtgmem_size = 0; error_log (_T("Too large Z2 RTG memory size.")); } if (p->cs_z3autoconfig && p->address_space_24) { p->cs_z3autoconfig = false; error_log (_T("Z3 autoconfig and 24bit address space are not compatible.")); } #if 0 if (p->m68k_speed < -1 || p->m68k_speed > 20) { write_log (_T("Bad value for -w parameter: must be -1, 0, or within 1..20.\n")); p->m68k_speed = 4; err = 1; } #endif if (p->produce_sound < 0 || p->produce_sound > 3) { error_log (_T("Bad value for -S parameter: enable value must be within 0..3.")); p->produce_sound = 0; err = 1; } if (p->comptrustbyte < 0 || p->comptrustbyte > 3) { error_log (_T("Bad value for comptrustbyte parameter: value must be within 0..2.")); p->comptrustbyte = 1; err = 1; } if (p->comptrustword < 0 || p->comptrustword > 3) { error_log (_T("Bad value for comptrustword parameter: value must be within 0..2.")); p->comptrustword = 1; err = 1; } if (p->comptrustlong < 0 || p->comptrustlong > 3) { error_log (_T("Bad value for comptrustlong parameter: value must be within 0..2.")); p->comptrustlong = 1; err = 1; } if (p->comptrustnaddr < 0 || p->comptrustnaddr > 3) { error_log (_T("Bad value for comptrustnaddr parameter: value must be within 0..2.")); p->comptrustnaddr = 1; err = 1; } if (p->cachesize < 0 || p->cachesize > 16384) { error_log (_T("Bad value for cachesize parameter: value must be within 0..16384.")); p->cachesize = 0; err = 1; } if ((p->z3fastmem_size || p->z3fastmem2_size || p->z3chipmem_size) && p->address_space_24) { error_log (_T("Z3 fast memory can't be used if address space is 24-bit.")); p->z3fastmem_size = 0; p->z3fastmem2_size = 0; p->z3chipmem_size = 0; err = 1; } if ((p->rtgmem_size > 0 && p->rtgmem_type == GFXBOARD_UAE_Z3) && p->address_space_24) { error_log (_T("UAEGFX RTG can't be used if address space is 24-bit.")); p->rtgmem_size = 0; err = 1; } #if !defined (BSDSOCKET) if (p->socket_emu) { write_log (_T("Compile-time option of BSDSOCKET_SUPPORTED was not enabled. You can't use bsd-socket emulation.\n")); p->socket_emu = 0; err = 1; } #endif if (p->nr_floppies < 0 || p->nr_floppies > 4) { error_log (_T("Invalid number of floppies. Using 2.")); p->nr_floppies = 2; p->floppyslots[0].dfxtype = 0; p->floppyslots[1].dfxtype = 0; p->floppyslots[2].dfxtype = -1; p->floppyslots[3].dfxtype = -1; err = 1; } if (p->floppy_speed > 0 && p->floppy_speed < 10) { error_log (_T("Invalid floppy speed.")); p->floppy_speed = 100; } if (p->input_mouse_speed < 1 || p->input_mouse_speed > 1000) { error_log (_T("Invalid mouse speed.")); p->input_mouse_speed = 100; } if (p->collision_level < 0 || p->collision_level > 3) { error_log (_T("Invalid collision support level. Using 1.")); p->collision_level = 1; err = 1; } if (p->parallel_postscript_emulation) p->parallel_postscript_detection = 1; if (p->cs_compatible == 1) { p->cs_fatgaryrev = p->cs_ramseyrev = p->cs_mbdmac = -1; p->cs_ide = 0; if (p->cpu_model >= 68020) { p->cs_fatgaryrev = 0; p->cs_ide = -1; p->cs_ramseyrev = 0x0f; p->cs_mbdmac = 0; } } else if (p->cs_compatible == 0) { if (p->cs_ide == IDE_A4000) { if (p->cs_fatgaryrev < 0) p->cs_fatgaryrev = 0; if (p->cs_ramseyrev < 0) p->cs_ramseyrev = 0x0f; } } if (p->chipmem_size >= 0x100000) p->cs_1mchipjumper = true; /* Can't fit genlock and A2024 or Graffiti at the same time, * also Graffiti uses genlock audio bit as an enable signal */ if (p->genlock && p->monitoremu) { error_log (_T("Genlock and A2024 or Graffiti can't be active simultaneously.")); p->genlock = false; } if (p->cs_hacks) { error_log (_T("chipset_hacks is nonzero (0x%04x)."), p->cs_hacks); } fixup_prefs_dimensions (p); #if !defined (JIT) p->cachesize = 0; #endif #ifdef CPU_68000_ONLY p->cpu_model = 68000; p->fpu_model = 0; #endif #ifndef CPUEMU_0 p->cpu_compatible = 1; p->address_space_24 = 1; #endif #if !defined (CPUEMU_11) && !defined (CPUEMU_13) p->cpu_compatible = 0; p->address_space_24 = 0; #endif #if !defined (CPUEMU_13) p->cpu_cycle_exact = p->blitter_cycle_exact = 0; #endif #ifndef AGA p->chipset_mask &= ~CSMASK_AGA; #endif #ifndef AUTOCONFIG p->z3fastmem_size = 0; p->fastmem_size = 0; p->rtgmem_size = 0; #endif #if !defined (BSDSOCKET) p->socket_emu = 0; #endif #if !defined (SCSIEMU) p->scsi = 0; #ifdef _WIN32 p->win32_aspi = 0; #endif #endif #if !defined (SANA2) p->sana2 = 0; #endif #if !defined (UAESERIAL) p->uaeserial = 0; #endif #if defined (CPUEMU_13) if (p->cpu_cycle_exact) { if (p->gfx_framerate > 1) { error_log (_T("Cycle-exact requires disabled frameskip.")); p->gfx_framerate = 1; } if (p->cachesize) { error_log (_T("Cycle-exact and JIT can't be active simultaneously.")); p->cachesize = 0; } #if 0 if (p->m68k_speed) { error_log (_T("Adjustable CPU speed is not available in cycle-exact mode.")); p->m68k_speed = 0; } #endif } #endif if (p->maprom && !p->address_space_24) { p->maprom = 0x0f000000; } if (((p->maprom & 0xff000000) && p->address_space_24) || (p->maprom && p->mbresmem_high_size >= 0x08000000)) { p->maprom = 0x00e00000; } if (p->tod_hack && p->cs_ciaatod == 0) p->cs_ciaatod = p->ntscmode ? 2 : 1; if (p->sound_toccata + p->sound_es1370 + p->sound_fm801 > 1) { error_log(_T("Only one sound card can be enabled at the same time.")); if (p->sound_toccata) { p->sound_es1370 = 0; p->sound_fm801 = 0; } else if (p->sound_es1370) { p->sound_toccata = 0; p->sound_fm801 = 0; } else { p->sound_toccata = 0; p->sound_es1370 = 0; } } built_in_chipset_prefs (p); blkdev_fix_prefs (p); inputdevice_fix_prefs(p, userconfig); target_fixup_options (p); }
void fixup_prefs (struct uae_prefs *p) { /** FIXME: * There must be a way to a) have a sane max_z3fastmem value * without NATMEM being used and b) a way to use fastmem and * rtg mem without crashing 64bit linux systems. **/ #ifndef NATMEM_OFFSET max_z3fastmem = 0; #endif // NATMEM_OFFSET int err = 0; built_in_chipset_prefs (p); fixup_cpu (p); if (((p->chipmem_size & (p->chipmem_size - 1)) != 0 && p->chipmem_size != 0x180000) || p->chipmem_size < 0x20000 || p->chipmem_size > 0x800000) { error_log (_T("Unsupported chipmem size %d (0x%x)."), p->chipmem_size, p->chipmem_size); p->chipmem_size = 0x200000; err = 1; } if ((p->fastmem_size & (p->fastmem_size - 1)) != 0 || (p->fastmem_size != 0 && (p->fastmem_size < 0x100000 || p->fastmem_size > 0x800000))) { error_log (_T("Unsupported fastmem size %d (0x%x)."), p->fastmem_size, p->fastmem_size); p->fastmem_size = 0; err = 1; } if (p->rtgmem_size > max_z3fastmem && p->rtgmem_type == GFXBOARD_UAE_Z3) { error_log (_T("Graphics card memory size %d (0x%x) larger than maximum reserved %d (0x%x)."), p->rtgmem_size, p->rtgmem_size, max_z3fastmem, max_z3fastmem); p->rtgmem_size = max_z3fastmem; err = 1; } if ((p->rtgmem_size & (p->rtgmem_size - 1)) != 0 || (p->rtgmem_size != 0 && (p->rtgmem_size < 0x100000))) { error_log (_T("Unsupported graphics card memory size %d (0x%x)."), p->rtgmem_size, p->rtgmem_size); if (p->rtgmem_size > max_z3fastmem) p->rtgmem_size = max_z3fastmem; else p->rtgmem_size = 0; err = 1; } if (p->z3fastmem_size > max_z3fastmem) { error_log (_T("Zorro III fastmem size %d (0x%x) larger than max reserved %d (0x%x)."), p->z3fastmem_size, p->z3fastmem_size, max_z3fastmem, max_z3fastmem); p->z3fastmem_size = max_z3fastmem; err = 1; } if ((p->z3fastmem_size & (p->z3fastmem_size - 1)) != 0 || (p->z3fastmem_size != 0 && p->z3fastmem_size < 0x100000)) { error_log (_T("Unsupported Zorro III fastmem size %d (0x%x)."), p->z3fastmem_size, p->z3fastmem_size); p->z3fastmem_size = 0; err = 1; } if (p->z3fastmem2_size > max_z3fastmem) { error_log (_T("Zorro III fastmem2 size %d (0x%x) larger than max reserved %d (0x%x)."), p->z3fastmem2_size, p->z3fastmem2_size, max_z3fastmem, max_z3fastmem); p->z3fastmem2_size = max_z3fastmem; err = 1; } if ((p->z3fastmem2_size & (p->z3fastmem2_size - 1)) != 0 || (p->z3fastmem2_size != 0 && p->z3fastmem2_size < 0x100000)) { error_log (_T("Unsupported Zorro III fastmem2 size %x (%x)."), p->z3fastmem2_size, p->z3fastmem2_size); p->z3fastmem2_size = 0; err = 1; } p->z3fastmem_start &= ~0xffff; if (p->z3fastmem_start < 0x1000000) p->z3fastmem_start = 0x1000000; if (p->z3chipmem_size > max_z3fastmem) { error_log (_T("Zorro III fake chipmem size %d (0x%x) larger than max reserved %d (0x%x)."), p->z3chipmem_size, p->z3chipmem_size, max_z3fastmem, max_z3fastmem); p->z3chipmem_size = max_z3fastmem; err = 1; } if ((p->z3chipmem_size & (p->z3chipmem_size - 1)) != 0 || (p->z3chipmem_size != 0 && p->z3chipmem_size < 0x100000)) { error_log (_T("Unsupported Zorro III fake chipmem size %d (0x%x)."), p->z3chipmem_size, p->z3chipmem_size); p->z3chipmem_size = 0; err = 1; } if (p->address_space_24 && (p->z3fastmem_size != 0 || p->z3fastmem2_size != 0 || p->z3chipmem_size != 0)) { p->z3fastmem_size = p->z3fastmem2_size = p->z3chipmem_size = 0; error_log (_T("Can't use a Z3 graphics card or 32-bit memory when using a 24 bit address space.")); } if (p->bogomem_size != 0 && p->bogomem_size != 0x80000 && p->bogomem_size != 0x100000 && p->bogomem_size != 0x180000 && p->bogomem_size != 0x1c0000) { error_log (_T("Unsupported bogomem size %d (0x%x)"), p->bogomem_size, p->bogomem_size); p->bogomem_size = 0; err = 1; } if (p->bogomem_size > 0x180000 && (p->cs_fatgaryrev >= 0 || p->cs_ide || p->cs_ramseyrev >= 0)) { p->bogomem_size = 0x180000; error_log (_T("Possible Gayle bogomem conflict fixed.")); } if (p->chipmem_size > 0x200000 && p->fastmem_size != 0) { error_log (_T("You can't use fastmem and more than 2MB chip at the same time.")); p->fastmem_size = 0; err = 1; } if (p->mbresmem_low_size > 0x04000000 || (p->mbresmem_low_size & 0xfffff)) { p->mbresmem_low_size = 0; error_log (_T("Unsupported A3000 MB RAM size")); } if (p->mbresmem_high_size > 0x08000000 || (p->mbresmem_high_size & 0xfffff)) { p->mbresmem_high_size = 0; error_log (_T("Unsupported Motherboard RAM size.")); } if (p->rtgmem_type >= GFXBOARD_HARDWARE) { if (p->rtgmem_size < gfxboard_get_vram_min (p->rtgmem_type)) p->rtgmem_size = gfxboard_get_vram_min (p->rtgmem_type); if (p->address_space_24 && gfxboard_is_z3 (p->rtgmem_type)) { p->rtgmem_type = GFXBOARD_UAE_Z2; p->rtgmem_size = 0; error_log (_T("Z3 RTG and 24-bit address space are not compatible.")); } } if (p->address_space_24 && p->rtgmem_size && p->rtgmem_type == GFXBOARD_UAE_Z3) { error_log (_T("Z3 RTG and 24bit address space are not compatible.")); p->rtgmem_type = GFXBOARD_UAE_Z2; } if (p->rtgmem_type == GFXBOARD_UAE_Z2 && (p->chipmem_size > 2 * 1024 * 1024 || getz2size (p) > 8 * 1024 * 1024 || getz2size (p) < 0)) { p->rtgmem_size = 0; error_log (_T("Too large Z2 RTG memory size.")); } #if 0 if (p->m68k_speed < -1 || p->m68k_speed > 20) { write_log (_T("Bad value for -w parameter: must be -1, 0, or within 1..20.\n")); p->m68k_speed = 4; err = 1; } #endif if (p->produce_sound < 0 || p->produce_sound > 3) { error_log (_T("Bad value for -S parameter: enable value must be within 0..3.")); p->produce_sound = 0; err = 1; } #ifdef JIT if (p->comptrustbyte < 0 || p->comptrustbyte > 3) { error_log (_T("Bad value for comptrustbyte parameter: value must be within 0..2.")); p->comptrustbyte = 1; err = 1; } if (p->comptrustword < 0 || p->comptrustword > 3) { error_log (_T("Bad value for comptrustword parameter: value must be within 0..2.")); p->comptrustword = 1; err = 1; } if (p->comptrustlong < 0 || p->comptrustlong > 3) { error_log (_T("Bad value for comptrustlong parameter: value must be within 0..2.")); p->comptrustlong = 1; err = 1; } if (p->comptrustnaddr < 0 || p->comptrustnaddr > 3) { error_log (_T("Bad value for comptrustnaddr parameter: value must be within 0..2.")); p->comptrustnaddr = 1; err = 1; } if (p->cachesize < 0 || p->cachesize > 16384) { error_log (_T("Bad value for cachesize parameter: value must be within 0..16384.")); p->cachesize = 0; err = 1; } #endif if ((p->z3fastmem_size || p->z3fastmem2_size || p->z3chipmem_size) && (p->address_space_24 || p->cpu_model < 68020)) { error_log (_T("Z3 fast memory can't be used with a 68000/68010 emulation. Turning off Z3 fast memory.")); p->z3fastmem_size = 0; p->z3fastmem2_size = 0; p->z3chipmem_size = 0; err = 1; } if (p->rtgmem_size > 0 && p->rtgmem_type == GFXBOARD_UAE_Z3 && (p->cpu_model < 68020 || p->address_space_24)) { error_log (_T("UAEGFX RTG can't be used with a 68000/68010 or 68EC020 emulation. Turning off RTG.")); p->rtgmem_size = 0; err = 1; } #if !defined (BSDSOCKET) if (p->socket_emu) { write_log (_T("Compile-time option of BSDSOCKET_SUPPORTED was not enabled. You can't use bsd-socket emulation.\n")); p->socket_emu = 0; err = 1; } #endif if (p->nr_floppies < 0 || p->nr_floppies > 4) { error_log (_T("Invalid number of floppies. Using 2.")); p->nr_floppies = 2; p->floppyslots[0].dfxtype = 0; p->floppyslots[1].dfxtype = 0; p->floppyslots[2].dfxtype = -1; p->floppyslots[3].dfxtype = -1; err = 1; } if (p->floppy_speed > 0 && p->floppy_speed < 10) { error_log (_T("Invalid floppy speed.")); p->floppy_speed = 100; } if (p->input_mouse_speed < 1 || p->input_mouse_speed > 1000) { error_log (_T("Invalid mouse speed.")); p->input_mouse_speed = 100; } if (p->collision_level < 0 || p->collision_level > 3) { error_log (_T("Invalid collision support level. Using 1.")); p->collision_level = 1; err = 1; } if (p->parallel_postscript_emulation) p->parallel_postscript_detection = 1; if (p->cs_compatible == 1) { p->cs_fatgaryrev = p->cs_ramseyrev = p->cs_mbdmac = -1; p->cs_ide = 0; if (p->cpu_model >= 68020) { p->cs_fatgaryrev = 0; p->cs_ide = -1; p->cs_ramseyrev = 0x0f; p->cs_mbdmac = 0; } } else if (p->cs_compatible == 0) { if (p->cs_ide == IDE_A4000) { if (p->cs_fatgaryrev < 0) p->cs_fatgaryrev = 0; if (p->cs_ramseyrev < 0) p->cs_ramseyrev = 0x0f; } } /* Can't fit genlock and A2024 or Graffiti at the same time, * also Graffiti uses genlock audio bit as an enable signal */ if (p->genlock && p->monitoremu) { error_log (_T("Genlock and A2024 or Graffiti can't be active simultaneously.")); p->genlock = false; } fixup_prefs_dimensions (p); #if !defined (JIT) p->cachesize = 0; #endif #ifdef CPU_68000_ONLY p->cpu_model = 68000; p->fpu_model = 0; #endif #ifndef CPUEMU_0 p->cpu_compatible = 1; p->address_space_24 = 1; #endif #if !defined (CPUEMU_11) && !defined (CPUEMU_12) p->cpu_compatible = 0; p->address_space_24 = 0; #endif #if !defined (CPUEMU_12) p->cpu_cycle_exact = p->blitter_cycle_exact = 0; #endif #ifndef AGA p->chipset_mask &= ~CSMASK_AGA; #endif #ifndef AUTOCONFIG p->z3fastmem_size = 0; p->fastmem_size = 0; p->rtgmem_size = 0; #endif #if !defined (BSDSOCKET) p->socket_emu = 0; #endif #if !defined (SCSIEMU) p->scsi = 0; #endif #if !defined (SANA2) p->sana2 = 0; #endif #if !defined (UAESERIAL) p->uaeserial = 0; #endif #if defined (CPUEMU_12) if (p->cpu_cycle_exact) { if (p->gfx_framerate > 1) { error_log (_T("Cycle-exact requires disabled frameskip.")); p->gfx_framerate = 1; } #ifdef JIT if (p->cachesize) { error_log (_T("Cycle-exact and JIT can't be active simultaneously.")); p->cachesize = 0; } #endif if (p->m68k_speed) { error_log (_T("Adjustable CPU speed is not available in cycle-exact mode.")); p->m68k_speed = 0; } } #endif if (p->maprom && !p->address_space_24) p->maprom = 0x0f000000; if (((p->maprom & 0xff000000) && p->address_space_24) || p->mbresmem_high_size == 0x08000000) { p->maprom = 0x00e00000; } if (p->tod_hack && p->cs_ciaatod == 0) p->cs_ciaatod = p->ntscmode ? 2 : 1; built_in_chipset_prefs (p); #ifdef SCSIEMU blkdev_fix_prefs (p); #endif target_fixup_options (p); }
void fixup_prefs (struct uae_prefs *p) { int err = 0; built_in_chipset_prefs (p); fixup_cpu (p); if (((p->chipmem_size & (p->chipmem_size - 1)) != 0 && p->chipmem_size != 0x180000) || p->chipmem_size < 0x20000 || p->chipmem_size > 0x800000) { write_log (L"Unsupported chipmem size %x!\n", p->chipmem_size); p->chipmem_size = 0x200000; err = 1; } if ((p->fastmem_size & (p->fastmem_size - 1)) != 0 || (p->fastmem_size != 0 && (p->fastmem_size < 0x100000 || p->fastmem_size > 0x800000))) { write_log (L"Unsupported fastmem size %x!\n", p->fastmem_size); err = 1; } if ((p->gfxmem_size & (p->gfxmem_size - 1)) != 0 || (p->gfxmem_size != 0 && (p->gfxmem_size < 0x100000 || p->gfxmem_size > max_z3fastmem / 2))) { write_log (L"Unsupported graphics card memory size %x (%x)!\n", p->gfxmem_size, max_z3fastmem / 2); if (p->gfxmem_size > max_z3fastmem / 2) p->gfxmem_size = max_z3fastmem / 2; else p->gfxmem_size = 0; err = 1; } if ((p->z3fastmem_size & (p->z3fastmem_size - 1)) != 0 || (p->z3fastmem_size != 0 && (p->z3fastmem_size < 0x100000 || p->z3fastmem_size > max_z3fastmem))) { write_log (L"Unsupported Zorro III fastmem size %x (%x)!\n", p->z3fastmem_size, max_z3fastmem); if (p->z3fastmem_size > max_z3fastmem) p->z3fastmem_size = max_z3fastmem; else p->z3fastmem_size = 0; err = 1; } if ((p->z3fastmem2_size & (p->z3fastmem2_size - 1)) != 0 || (p->z3fastmem2_size != 0 && (p->z3fastmem2_size < 0x100000 || p->z3fastmem2_size > max_z3fastmem))) { write_log (L"Unsupported Zorro III fastmem size %x (%x)!\n", p->z3fastmem2_size, max_z3fastmem); if (p->z3fastmem2_size > max_z3fastmem) p->z3fastmem2_size = max_z3fastmem; else p->z3fastmem2_size = 0; err = 1; } p->z3fastmem_start &= ~0xffff; if (p->z3fastmem_start < 0x1000000) p->z3fastmem_start = 0x1000000; if ((p->z3chipmem_size & (p->z3chipmem_size - 1)) != 0 || (p->z3chipmem_size != 0 && (p->z3chipmem_size < 0x100000 || p->z3chipmem_size > max_z3fastmem))) { write_log (L"Unsupported Zorro III fake chipmem size %x (%x)!\n", p->z3chipmem_size, max_z3fastmem); if (p->z3chipmem_size > max_z3fastmem) p->z3chipmem_size = max_z3fastmem; else p->z3chipmem_size = 0; err = 1; } if (p->address_space_24 && (p->gfxmem_size != 0 || p->z3fastmem_size != 0)) { p->z3fastmem_size = p->gfxmem_size = 0; write_log (L"Can't use a graphics card or Zorro III fastmem when using a 24 bit\n" L"address space - sorry.\n"); } if (p->bogomem_size != 0 && p->bogomem_size != 0x80000 && p->bogomem_size != 0x100000 && p->bogomem_size != 0x180000 && p->bogomem_size != 0x1c0000) { p->bogomem_size = 0; write_log (L"Unsupported bogomem size!\n"); err = 1; } if (p->bogomem_size > 0x180000 && (p->cs_fatgaryrev >= 0 || p->cs_ide || p->cs_ramseyrev >= 0)) { p->bogomem_size = 0x180000; write_log (L"Possible Gayle bogomem conflict fixed\n"); } if (p->chipmem_size > 0x200000 && p->fastmem_size != 0) { write_log (L"You can't use fastmem and more than 2MB chip at the same time!\n"); p->fastmem_size = 0; err = 1; } if (p->mbresmem_low_size > 0x04000000 || (p->mbresmem_low_size & 0xfffff)) { p->mbresmem_low_size = 0; write_log (L"Unsupported A3000 MB RAM size\n"); } if (p->mbresmem_high_size > 0x04000000 || (p->mbresmem_high_size & 0xfffff)) { p->mbresmem_high_size = 0; write_log (L"Unsupported Motherboard RAM size\n"); } #if 0 if (p->m68k_speed < -1 || p->m68k_speed > 20) { write_log (L"Bad value for -w parameter: must be -1, 0, or within 1..20.\n"); p->m68k_speed = 4; err = 1; } #endif if (p->produce_sound < 0 || p->produce_sound > 3) { write_log (L"Bad value for -S parameter: enable value must be within 0..3\n"); p->produce_sound = 0; err = 1; } if (p->comptrustbyte < 0 || p->comptrustbyte > 3) { write_log (L"Bad value for comptrustbyte parameter: value must be within 0..2\n"); p->comptrustbyte = 1; err = 1; } if (p->comptrustword < 0 || p->comptrustword > 3) { write_log (L"Bad value for comptrustword parameter: value must be within 0..2\n"); p->comptrustword = 1; err = 1; } if (p->comptrustlong < 0 || p->comptrustlong > 3) { write_log (L"Bad value for comptrustlong parameter: value must be within 0..2\n"); p->comptrustlong = 1; err = 1; } if (p->comptrustnaddr < 0 || p->comptrustnaddr > 3) { write_log (L"Bad value for comptrustnaddr parameter: value must be within 0..2\n"); p->comptrustnaddr = 1; err = 1; } if (p->cachesize < 0 || p->cachesize > 16384) { write_log (L"Bad value for cachesize parameter: value must be within 0..16384\n"); p->cachesize = 0; err = 1; } if (p->z3fastmem_size > 0 && (p->address_space_24 || p->cpu_model < 68020)) { write_log (L"Z3 fast memory can't be used with a 68000/68010 emulation. It\n" L"requires a 68020 emulation. Turning off Z3 fast memory.\n"); p->z3fastmem_size = 0; err = 1; } if (p->gfxmem_size > 0 && (p->cpu_model < 68020 || p->address_space_24)) { write_log (L"Picasso96 can't be used with a 68000/68010 or 68EC020 emulation. It\n" L"requires a 68020 emulation. Turning off Picasso96.\n"); p->gfxmem_size = 0; err = 1; } #if !defined (BSDSOCKET) if (p->socket_emu) { write_log (L"Compile-time option of BSDSOCKET_SUPPORTED was not enabled. You can't use bsd-socket emulation.\n"); p->socket_emu = 0; err = 1; } #endif if (p->nr_floppies < 0 || p->nr_floppies > 4) { write_log (L"Invalid number of floppies. Using 4.\n"); p->nr_floppies = 4; p->floppyslots[0].dfxtype = 0; p->floppyslots[1].dfxtype = 0; p->floppyslots[2].dfxtype = 0; p->floppyslots[3].dfxtype = 0; err = 1; } if (p->floppy_speed > 0 && p->floppy_speed < 10) { p->floppy_speed = 100; } if (p->input_mouse_speed < 1 || p->input_mouse_speed > 1000) { p->input_mouse_speed = 100; } if (p->collision_level < 0 || p->collision_level > 3) { write_log (L"Invalid collision support level. Using 1.\n"); p->collision_level = 1; err = 1; } if (p->parallel_postscript_emulation) p->parallel_postscript_detection = 1; if (p->cs_compatible == 1) { p->cs_fatgaryrev = p->cs_ramseyrev = p->cs_mbdmac = -1; p->cs_ide = 0; if (p->cpu_model >= 68020) { p->cs_fatgaryrev = 0; p->cs_ide = -1; p->cs_ramseyrev = 0x0f; p->cs_mbdmac = 0; } } else if (p->cs_compatible == 0) { if (p->cs_ide == IDE_A4000) { if (p->cs_fatgaryrev < 0) p->cs_fatgaryrev = 0; if (p->cs_ramseyrev < 0) p->cs_ramseyrev = 0x0f; } } fixup_prefs_dimensions (p); #if !defined (JIT) p->cachesize = 0; #endif #ifdef CPU_68000_ONLY p->cpu_model = 68000; p->fpu_model = 0; #endif #ifndef CPUEMU_0 p->cpu_compatible = 1; p->address_space_24 = 1; #endif #if !defined (CPUEMU_11) && !defined (CPUEMU_12) p->cpu_compatible = 0; p->address_space_24 = 0; #endif #if !defined (CPUEMU_12) p->cpu_cycle_exact = p->blitter_cycle_exact = 0; #endif #ifndef AGA p->chipset_mask &= ~CSMASK_AGA; #endif #ifndef AUTOCONFIG p->z3fastmem_size = 0; p->fastmem_size = 0; p->gfxmem_size = 0; #endif #if !defined (BSDSOCKET) p->socket_emu = 0; #endif #if !defined (SCSIEMU) p->scsi = 0; p->win32_aspi = 0; #endif #if !defined (SANA2) p->sana2 = 0; #endif #if !defined (UAESERIAL) p->uaeserial = 0; #endif #if defined (CPUEMU_12) if (p->cpu_cycle_exact) { p->gfx_framerate = 1; p->cachesize = 0; p->m68k_speed = 0; } #endif if (p->maprom && !p->address_space_24) p->maprom = 0x0f000000; if (p->tod_hack && p->cs_ciaatod == 0) p->cs_ciaatod = p->ntscmode ? 2 : 1; blkdev_fix_prefs (p); target_fixup_options (p); }