145 |
|
const char ROM_FILE_NAME[] = "ROM"; |
146 |
|
const char ROM_FILE_NAME2[] = "Mac OS ROM"; |
147 |
|
|
148 |
< |
const uint32 ROM_AREA_SIZE = 0x500000; // Size of ROM area |
149 |
< |
const uint32 ROM_END = ROM_BASE + ROM_SIZE; // End of ROM |
150 |
< |
|
151 |
< |
const uint32 KERNEL_DATA_BASE = 0x68ffe000; // Address of Kernel Data |
152 |
< |
const uint32 KERNEL_DATA2_BASE = 0x5fffe000; // Alternate address of Kernel Data |
153 |
< |
const uint32 KERNEL_AREA_SIZE = 0x2000; // Size of Kernel Data area |
154 |
< |
|
148 |
> |
const uint32 RAM_BASE = 0x20000000; // Base address of RAM |
149 |
|
const uint32 SIG_STACK_SIZE = 0x10000; // Size of signal stack |
150 |
|
|
151 |
|
|
158 |
– |
// 68k Emulator Data |
159 |
– |
struct EmulatorData { |
160 |
– |
uint32 v[0x400]; |
161 |
– |
}; |
162 |
– |
|
163 |
– |
|
164 |
– |
// Kernel Data |
165 |
– |
struct KernelData { |
166 |
– |
uint32 v[0x400]; |
167 |
– |
EmulatorData ed; |
168 |
– |
}; |
169 |
– |
|
170 |
– |
|
152 |
|
#if !EMULATED_PPC |
153 |
|
// Structure in which registers are saved in a signal handler; |
154 |
|
// sigcontext->regs points to it |
172 |
|
#endif |
173 |
|
uint32 RAMBase; // Base address of Mac RAM |
174 |
|
uint32 RAMSize; // Size of Mac RAM |
175 |
+ |
uint32 SheepStack1Base; // SheepShaver first alternate stack base |
176 |
+ |
uint32 SheepStack2Base; // SheepShaver second alternate stack base |
177 |
+ |
uint32 SheepThunksBase; // SheepShaver thunks base |
178 |
|
uint32 KernelDataAddr; // Address of Kernel Data |
179 |
|
uint32 BootGlobsAddr; // Address of BootGlobs structure at top of Mac RAM |
180 |
|
uint32 PVR; // Theoretical PVR |
187 |
|
Display *x_display = NULL; // X11 display handle |
188 |
|
|
189 |
|
static int zero_fd = 0; // FD of /dev/zero |
190 |
+ |
static bool sheep_area_mapped = false; // Flag: SheepShaver data area mmap()ed |
191 |
|
static bool lm_area_mapped = false; // Flag: Low Memory area mmap()ped |
192 |
|
static int kernel_area = -1; // SHM ID of Kernel Data area |
193 |
|
static bool rom_area_mapped = false; // Flag: Mac ROM mmap()ped |
194 |
|
static bool ram_area_mapped = false; // Flag: Mac RAM mmap()ped |
210 |
– |
static void *mmap_RAMBase = NULL; // Base address of mmap()ed RAM area |
195 |
|
static KernelData *kernel_data; // Pointer to Kernel Data |
196 |
|
static EmulatorData *emulator_data; |
197 |
|
|
206 |
|
static bool ready_for_signals = false; // Handler installed, signals can be sent |
207 |
|
static int64 num_segv = 0; // Number of handled SEGV signals |
208 |
|
|
225 |
– |
#if !EMULATED_PPC |
209 |
|
static struct sigaction sigusr2_action; // Interrupt signal (of emulator thread) |
210 |
+ |
#if !EMULATED_PPC |
211 |
|
static struct sigaction sigsegv_action; // Data access exception signal (of emulator thread) |
212 |
|
static struct sigaction sigill_action; // Illegal instruction signal (of emulator thread) |
213 |
|
static void *sig_stack = NULL; // Stack for signal handlers |
222 |
|
static void *emul_func(void *arg); |
223 |
|
static void *nvram_func(void *arg); |
224 |
|
static void *tick_func(void *arg); |
225 |
< |
#if !EMULATED_PPC |
225 |
> |
#if EMULATED_PPC |
226 |
> |
static void sigusr2_handler(int sig); |
227 |
> |
#else |
228 |
|
static void sigusr2_handler(int sig, sigcontext_struct *sc); |
229 |
|
static void sigsegv_handler(int sig, sigcontext_struct *sc); |
230 |
|
static void sigill_handler(int sig, sigcontext_struct *sc); |
279 |
|
|
280 |
|
// Initialize variables |
281 |
|
RAMBase = 0; |
296 |
– |
mmap_RAMBase = NULL; |
282 |
|
tzset(); |
283 |
|
|
284 |
|
// Print some info |
436 |
|
KernelDataAddr = (uint32)kernel_data; |
437 |
|
D(bug("Kernel Data at %p, Emulator Data at %p\n", kernel_data, emulator_data)); |
438 |
|
|
439 |
+ |
// Create area for SheepShaver data |
440 |
+ |
if (vm_acquire_fixed((char *)SHEEP_BASE, SHEEP_SIZE) < 0) { |
441 |
+ |
sprintf(str, GetString(STR_SHEEP_MEM_MMAP_ERR), strerror(errno)); |
442 |
+ |
ErrorAlert(str); |
443 |
+ |
goto quit; |
444 |
+ |
} |
445 |
+ |
SheepStack1Base = SHEEP_BASE + 0x10000; |
446 |
+ |
SheepStack2Base = SheepStack1Base + 0x10000; |
447 |
+ |
SheepThunksBase = SheepStack2Base + 0x1000; |
448 |
+ |
sheep_area_mapped = true; |
449 |
+ |
|
450 |
|
// Create area for Mac ROM |
451 |
|
if (vm_acquire_fixed((char *)ROM_BASE, ROM_AREA_SIZE) < 0) { |
452 |
|
sprintf(str, GetString(STR_ROM_MMAP_ERR), strerror(errno)); |
453 |
|
ErrorAlert(str); |
454 |
|
goto quit; |
455 |
|
} |
456 |
< |
#if !EMULATED_PPC |
456 |
> |
#if !EMULATED_PPC || defined(__powerpc__) |
457 |
|
if (vm_protect((char *)ROM_BASE, ROM_AREA_SIZE, VM_PAGE_READ | VM_PAGE_WRITE | VM_PAGE_EXECUTE) < 0) { |
458 |
|
sprintf(str, GetString(STR_ROM_MMAP_ERR), strerror(errno)); |
459 |
|
ErrorAlert(str); |
470 |
|
RAMSize = 8*1024*1024; |
471 |
|
} |
472 |
|
|
473 |
< |
mmap_RAMBase = (void *)0x20000000; |
478 |
< |
if (vm_acquire_fixed(mmap_RAMBase, RAMSize) < 0) { |
473 |
> |
if (vm_acquire_fixed((char *)RAM_BASE, RAMSize) < 0) { |
474 |
|
sprintf(str, GetString(STR_RAM_MMAP_ERR), strerror(errno)); |
475 |
|
ErrorAlert(str); |
476 |
|
goto quit; |
477 |
|
} |
478 |
|
#if !EMULATED_PPC |
479 |
< |
if (vm_protect(mmap_RAMBase, RAMSize, VM_PAGE_READ | VM_PAGE_WRITE | VM_PAGE_EXECUTE) < 0) { |
479 |
> |
if (vm_protect((char *)RAM_BASE, RAMSize, VM_PAGE_READ | VM_PAGE_WRITE | VM_PAGE_EXECUTE) < 0) { |
480 |
|
sprintf(str, GetString(STR_RAM_MMAP_ERR), strerror(errno)); |
481 |
|
ErrorAlert(str); |
482 |
|
goto quit; |
483 |
|
} |
484 |
|
#endif |
485 |
< |
RAMBase = (uint32)mmap_RAMBase; |
485 |
> |
RAMBase = RAM_BASE; |
486 |
|
ram_area_mapped = true; |
487 |
|
D(bug("RAM area at %08x\n", RAMBase)); |
488 |
|
|
632 |
|
WriteMacInt32(XLM_PVR, PVR); // Theoretical PVR |
633 |
|
WriteMacInt32(XLM_BUS_CLOCK, BusClockSpeed); // For DriverServicesLib patch |
634 |
|
WriteMacInt16(XLM_EXEC_RETURN_OPCODE, M68K_EXEC_RETURN); // For Execute68k() (RTS from the executed 68k code will jump here and end 68k mode) |
635 |
< |
#if !EMULATED_PPC |
635 |
> |
#if EMULATED_PPC |
636 |
> |
WriteMacInt32(XLM_ETHER_INIT, POWERPC_NATIVE_OP_FUNC(NATIVE_ETHER_INIT)); |
637 |
> |
WriteMacInt32(XLM_ETHER_TERM, POWERPC_NATIVE_OP_FUNC(NATIVE_ETHER_TERM)); |
638 |
> |
WriteMacInt32(XLM_ETHER_OPEN, POWERPC_NATIVE_OP_FUNC(NATIVE_ETHER_OPEN)); |
639 |
> |
WriteMacInt32(XLM_ETHER_CLOSE, POWERPC_NATIVE_OP_FUNC(NATIVE_ETHER_CLOSE)); |
640 |
> |
WriteMacInt32(XLM_ETHER_WPUT, POWERPC_NATIVE_OP_FUNC(NATIVE_ETHER_WPUT)); |
641 |
> |
WriteMacInt32(XLM_ETHER_RSRV, POWERPC_NATIVE_OP_FUNC(NATIVE_ETHER_RSRV)); |
642 |
> |
WriteMacInt32(XLM_VIDEO_DOIO, POWERPC_NATIVE_OP_FUNC(NATIVE_VIDEO_DO_DRIVER_IO)); |
643 |
> |
#else |
644 |
|
WriteMacInt32(XLM_TOC, (uint32)TOC); // TOC pointer of emulator |
645 |
|
WriteMacInt32(XLM_ETHER_INIT, (uint32)InitStreamModule); // DLPI ethernet driver functions |
646 |
|
WriteMacInt32(XLM_ETHER_TERM, (uint32)TerminateStreamModule); |
710 |
|
ErrorAlert(str); |
711 |
|
goto quit; |
712 |
|
} |
713 |
+ |
#endif |
714 |
|
|
715 |
|
// Install interrupt signal handler |
716 |
|
sigemptyset(&sigusr2_action.sa_mask); |
717 |
|
sigusr2_action.sa_handler = (__sighandler_t)sigusr2_handler; |
718 |
+ |
sigusr2_action.sa_flags = 0; |
719 |
+ |
#if !EMULATED_PPC |
720 |
|
sigusr2_action.sa_flags = SA_ONSTACK | SA_RESTART; |
721 |
+ |
#endif |
722 |
|
sigusr2_action.sa_restorer = NULL; |
723 |
|
if (sigaction(SIGUSR2, &sigusr2_action, NULL) < 0) { |
724 |
|
sprintf(str, GetString(STR_SIGUSR2_INSTALL_ERR), strerror(errno)); |
725 |
|
ErrorAlert(str); |
726 |
|
goto quit; |
727 |
|
} |
721 |
– |
#endif |
728 |
|
|
729 |
|
// Get my thread ID and execute MacOS thread function |
730 |
|
emul_thread = pthread_self(); |
801 |
|
|
802 |
|
// Delete RAM area |
803 |
|
if (ram_area_mapped) |
804 |
< |
vm_release(mmap_RAMBase, RAMSize); |
804 |
> |
vm_release((char *)RAM_BASE, RAMSize); |
805 |
|
|
806 |
|
// Delete ROM area |
807 |
|
if (rom_area_mapped) |
912 |
|
uint16 proc[2] = {trap, M68K_RTS}; |
913 |
|
Execute68k((uint32)proc, r); |
914 |
|
} |
909 |
– |
#endif |
915 |
|
|
916 |
|
|
917 |
|
/* |
925 |
|
M68kRegisters r; |
926 |
|
Execute68k((uint32)&desc, &r); |
927 |
|
} |
928 |
+ |
#endif |
929 |
|
|
930 |
|
|
931 |
|
/* |
1001 |
|
|
1002 |
|
void PatchAfterStartup(void) |
1003 |
|
{ |
1004 |
+ |
#if EMULATED_PPC |
1005 |
+ |
ExecuteNative(NATIVE_VIDEO_INSTALL_ACCEL); |
1006 |
+ |
#else |
1007 |
|
ExecutePPC(VideoInstallAccel); |
1008 |
+ |
#endif |
1009 |
|
InstallExtFS(); |
1010 |
|
} |
1011 |
|
|
1116 |
|
* Mutexes |
1117 |
|
*/ |
1118 |
|
|
1119 |
+ |
#ifdef HAVE_PTHREADS |
1120 |
+ |
|
1121 |
+ |
struct B2_mutex { |
1122 |
+ |
B2_mutex() { |
1123 |
+ |
pthread_mutexattr_t attr; |
1124 |
+ |
pthread_mutexattr_init(&attr); |
1125 |
+ |
// Initialize the mutex for priority inheritance -- |
1126 |
+ |
// required for accurate timing. |
1127 |
+ |
#ifdef HAVE_PTHREAD_MUTEXATTR_SETPROTOCOL |
1128 |
+ |
pthread_mutexattr_setprotocol(&attr, PTHREAD_PRIO_INHERIT); |
1129 |
+ |
#endif |
1130 |
+ |
#if defined(HAVE_PTHREAD_MUTEXATTR_SETTYPE) && defined(PTHREAD_MUTEX_NORMAL) |
1131 |
+ |
pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_NORMAL); |
1132 |
+ |
#endif |
1133 |
+ |
#ifdef HAVE_PTHREAD_MUTEXATTR_SETPSHARED |
1134 |
+ |
pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_PRIVATE); |
1135 |
+ |
#endif |
1136 |
+ |
pthread_mutex_init(&m, &attr); |
1137 |
+ |
pthread_mutexattr_destroy(&attr); |
1138 |
+ |
} |
1139 |
+ |
~B2_mutex() { |
1140 |
+ |
pthread_mutex_trylock(&m); // Make sure it's locked before |
1141 |
+ |
pthread_mutex_unlock(&m); // unlocking it. |
1142 |
+ |
pthread_mutex_destroy(&m); |
1143 |
+ |
} |
1144 |
+ |
pthread_mutex_t m; |
1145 |
+ |
}; |
1146 |
+ |
|
1147 |
+ |
B2_mutex *B2_create_mutex(void) |
1148 |
+ |
{ |
1149 |
+ |
return new B2_mutex; |
1150 |
+ |
} |
1151 |
+ |
|
1152 |
+ |
void B2_lock_mutex(B2_mutex *mutex) |
1153 |
+ |
{ |
1154 |
+ |
pthread_mutex_lock(&mutex->m); |
1155 |
+ |
} |
1156 |
+ |
|
1157 |
+ |
void B2_unlock_mutex(B2_mutex *mutex) |
1158 |
+ |
{ |
1159 |
+ |
pthread_mutex_unlock(&mutex->m); |
1160 |
+ |
} |
1161 |
+ |
|
1162 |
+ |
void B2_delete_mutex(B2_mutex *mutex) |
1163 |
+ |
{ |
1164 |
+ |
delete mutex; |
1165 |
+ |
} |
1166 |
+ |
|
1167 |
+ |
#else |
1168 |
+ |
|
1169 |
|
struct B2_mutex { |
1170 |
|
int dummy; |
1171 |
|
}; |
1188 |
|
delete mutex; |
1189 |
|
} |
1190 |
|
|
1191 |
+ |
#endif |
1192 |
+ |
|
1193 |
|
|
1194 |
|
/* |
1195 |
|
* Trigger signal USR2 from another thread |
1196 |
|
*/ |
1197 |
|
|
1198 |
+ |
#if !EMULATED_PPC || ASYNC_IRQ |
1199 |
|
void TriggerInterrupt(void) |
1200 |
|
{ |
1138 |
– |
#if EMULATED_PPC |
1139 |
– |
WriteMacInt32(0x16a, ReadMacInt32(0x16a) + 1); |
1140 |
– |
#else |
1141 |
– |
#if 0 |
1142 |
– |
WriteMacInt32(0x16a, ReadMacInt32(0x16a) + 1); |
1143 |
– |
#else |
1201 |
|
if (ready_for_signals) |
1202 |
|
pthread_kill(emul_thread, SIGUSR2); |
1146 |
– |
#endif |
1147 |
– |
#endif |
1203 |
|
} |
1204 |
+ |
#endif |
1205 |
|
|
1206 |
|
|
1207 |
|
/* |
1241 |
|
} |
1242 |
|
|
1243 |
|
|
1188 |
– |
#if !EMULATED_PPC |
1244 |
|
/* |
1245 |
|
* USR2 handler |
1246 |
|
*/ |
1247 |
|
|
1248 |
+ |
#if EMULATED_PPC |
1249 |
+ |
static void sigusr2_handler(int sig) |
1250 |
+ |
{ |
1251 |
+ |
#if ASYNC_IRQ |
1252 |
+ |
extern void HandleInterrupt(void); |
1253 |
+ |
HandleInterrupt(); |
1254 |
+ |
#endif |
1255 |
+ |
} |
1256 |
+ |
#else |
1257 |
|
static void sigusr2_handler(int sig, sigcontext_struct *sc) |
1258 |
|
{ |
1259 |
|
pt_regs *r = sc->regs; |
1335 |
|
} |
1336 |
|
break; |
1337 |
|
#endif |
1274 |
– |
|
1338 |
|
} |
1339 |
|
} |
1340 |
+ |
#endif |
1341 |
|
|
1342 |
|
|
1343 |
|
/* |
1344 |
|
* SIGSEGV handler |
1345 |
|
*/ |
1346 |
|
|
1347 |
+ |
#if !EMULATED_PPC |
1348 |
|
static void sigsegv_handler(int sig, sigcontext_struct *sc) |
1349 |
|
{ |
1350 |
|
pt_regs *r = sc->regs; |