aboutsummaryrefslogtreecommitdiff
path: root/SrcShared/Hardware/EmBankRegs.cpp
blob: c03deb39f2e54eb8180efeb4f689778670574ff3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
/* -*- mode: C++; tab-width: 4 -*- */
/* ===================================================================== *\
	Copyright (c) 2000-2001 Palm, Inc. or its subsidiaries.
	All rights reserved.

	This file is part of the Palm OS Emulator.

	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 2 of the License, or
	(at your option) any later version.
\* ===================================================================== */

#include "EmCommon.h"
#include "EmBankRegs.h"

#include "DebugMgr.h"			// Debug::CheckStepSpy
#include "EmCPU.h"				// GetPC
#include "EmCPU68K.h"			// gCPU68K
#include "EmMemory.h"			// gMemAccessFlags, EmMemory::IsPCInRAM
#include "EmSession.h"			// GetDevice, ScheduleDeferredError
#include "ErrorHandling.h"		// Errors::ReportErrHardwareRegisters
#include "MetaMemory.h"			// MetaMemory::InRAMOSComponent
#include "Profiling.h"			// WAITSTATES_PLD


/*
	When emulating memory, UAE divides up the 4GB address space into
	65,536 banks, each of which is 64K long.  For more details, see the
	comments in EmMemory.cpp.

	For our purposes, we sometimes need to divide up each 64K bank in a
	similar fashion.  For instance, in order to support accesses to each
	of the Dragonball registers, we'd like to assign a handler to each
	byte, word, or long of memory in the bank that contains the
	Dragonball registers.

	This module supports that further subdivision.  EmBankRegs is a bank
	handler -- just like the RAM and ROM bank handlers -- in that it is
	responsible for memory accesses to one or more 64K banks of memory. 
	It divides up each 64K bank by making use of instances of EmRegs
	subclasses.

	EmRegs subclasses are the moral equivalent of EmBanks, except on a
	smaller scale.  They are responsible for byte, word, and long memory
	accesses to a small range of memory completely contained within a
	64K bank.

	Many such EmRegs instances can be created and installed into the
	EmBankRegs object.  EmBankRegs stores these EmRegs in a list. When
	in comes time for the EmBanks to register which 64K banks they are
	responsible for, EmBankRegs iterates over all the EmRegs objects
	registered with it, and takes responsibility for each 64K bank that
	contains the EmRegs object memory range (an EmRegs object can be
	queried as to the memory start and length it is responsible for).

	Later, when a memory access is made to any of the 64K banks
	EmBankRegs registered for, it again iterates over the EmRegs objects
	installed into it, looking for one that takes responsibility for the
	memory address being accessed.  When it finds one, it passes off the
	request to that object.  Otherwise, it signals a bus error.
*/


static EmAddressBank	gAddressBank =
{
	EmBankRegs::GetLong,
	EmBankRegs::GetWord,
	EmBankRegs::GetByte,
	EmBankRegs::SetLong,
	EmBankRegs::SetWord,
	EmBankRegs::SetByte,
	EmBankRegs::GetRealAddress,
	EmBankRegs::ValidAddress,
	NULL,
	NULL
};


EmRegsList		EmBankRegs::fgSubBanks;
EmRegsList		EmBankRegs::fgDisabledSubBanks;

static EmRegs*	gLastSubBank;
static uint64	gLastStart;
static uint32	gLastRange;

static void PrvSwitchBanks (EmRegsList& fromList, EmRegsList& toList, emuptr address);

#pragma mark -


/***********************************************************************
 *
 * FUNCTION:	EmBankRegs::Initialize
 *
 * DESCRIPTION: Standard initialization function.  Responsible for
 *				initializing this sub-system when a new session is
 *				created.  Will be followed by at least one call to
 *				Reset or Load.
 *
 * PARAMETERS:	None.
 *
 * RETURNED:	Nothing.
 *
 ***********************************************************************/

void EmBankRegs::Initialize (void)
{
	EmAssert (gSession);
	gSession->GetDevice ().CreateRegs ();

	EmRegsList::iterator	iter = fgSubBanks.begin ();
	while (iter != fgSubBanks.end ())
	{
		(*iter)->Initialize ();
		++iter;
	}

	// Install the handlers for each affected bank.

	EmBankRegs::SetBankHandlers ();
}


/***********************************************************************
 *
 * FUNCTION:	EmBankRegs::Reset
 *
 * DESCRIPTION: Standard reset function.  Sets the sub-system to a
 *				default state.	This occurs not only on a Reset (as
 *				from the menu item), but also when the sub-system
 *				is first initialized (Reset is called after Initialize)
 *				as well as when the system is re-loaded from an
 *				insufficient session file.
 *
 * PARAMETERS:	None.
 *
 * RETURNED:	Nothing.
 *
 ***********************************************************************/

void EmBankRegs::Reset (Bool hardwareReset)
{
	EmRegsList::iterator	iter = fgSubBanks.begin ();
	while (iter != fgSubBanks.end ())
	{
		(*iter)->Reset (hardwareReset);
		++iter;
	}
}


/***********************************************************************
 *
 * FUNCTION:	EmBankRegs::Save
 *
 * DESCRIPTION: Standard save function.  Saves any sub-system state to
 *				the given session file.
 *
 * PARAMETERS:	None.
 *
 * RETURNED:	Nothing.
 *
 ***********************************************************************/

void EmBankRegs::Save (SessionFile& f)
{
	EmRegsList::iterator	iter = fgSubBanks.begin ();
	while (iter != fgSubBanks.end ())
	{
		(*iter)->Save (f);
		++iter;
	}
}


/***********************************************************************
 *
 * FUNCTION:	EmBankRegs::Load
 *
 * DESCRIPTION: Standard load function.  Loads any sub-system state
 *				from the given session file.
 *
 * PARAMETERS:	None.
 *
 * RETURNED:	Nothing.
 *
 ***********************************************************************/

void EmBankRegs::Load (SessionFile& f)
{
	EmRegsList::iterator	iter = fgSubBanks.begin ();
	while (iter != fgSubBanks.end ())
	{
		(*iter)->Load (f);
		++iter;
	}

	gLastSubBank = NULL;
}


/***********************************************************************
 *
 * FUNCTION:	EmBankRegs::Dispose
 *
 * DESCRIPTION: Standard dispose function.	Completely release any
 *				resources acquired or allocated in Initialize and/or
 *				Load.
 *
 * PARAMETERS:	None.
 *
 * RETURNED:	Nothing.
 *
 ***********************************************************************/

void EmBankRegs::Dispose (void)
{
	EmRegsList::iterator	iter = fgSubBanks.begin ();
	while (iter != fgSubBanks.end ())
	{
		(*iter)->Dispose ();
		++iter;
	}

	while (fgSubBanks.size () > 0)
	{
		EmRegs*	bank = fgSubBanks[0];
		fgSubBanks.erase (fgSubBanks.begin ());
		delete bank;
	}

	gLastSubBank = NULL;
}


/***********************************************************************
 *
 * FUNCTION:    EmBankRegs::SetBankHandlers
 *
 * DESCRIPTION: Set the bank handlers UAE uses to dispatch memory
 *				access operations.
 *
 * PARAMETERS:  None
 *
 * RETURNED:    Nothing
 *
 ***********************************************************************/

void EmBankRegs::SetBankHandlers (void)
{
	EmRegsList::iterator	iter = fgSubBanks.begin ();
	while (iter != fgSubBanks.end ())
	{
		(*iter)->SetBankHandlers (gAddressBank);
		++iter;
	}
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::GetLong
// ---------------------------------------------------------------------------

uint32 EmBankRegs::GetLong (emuptr address)
{
#if (CHECK_FOR_ADDRESS_ERROR)
	if ((address & 1) != 0)
	{
		AddressError (address, sizeof (uint32), true);
	}
#endif

#if (PREVENT_USER_REGISTER_GET)
	if (gMemAccessFlags.fProtect_RegisterGet && EmMemory::IsPCInRAM () && !MetaMemory::InRAMOSComponent (gCPU->GetPC ()))
	{
		EmBankRegs::PreventedAccess (address, sizeof (uint32), true);
	}
#endif

#if (VALIDATE_REGISTER_GET)
	if (gMemAccessFlags.fValidate_RegisterGet && !ValidAddress (address, sizeof (uint32)))
	{
		EmBankRegs::InvalidAccess (address, sizeof (uint32), true);
	}
#endif

#if HAS_PROFILING
	CYCLE_GETLONG (WAITSTATES_PLD);
#endif

	EmRegs*	bank = EmBankRegs::GetSubBank (address, sizeof (uint32));

	if (bank)
	{
		return bank->GetLong (address);
	}

	EmBankRegs::InvalidAccess (address, sizeof (uint32), true);
	return ~0;
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::GetWord
// ---------------------------------------------------------------------------

uint32 EmBankRegs::GetWord (emuptr address)
{
#if (CHECK_FOR_ADDRESS_ERROR)
	if ((address & 1) != 0)
	{
		AddressError (address, sizeof (uint16), true);
	}
#endif

#if (PREVENT_USER_REGISTER_GET)
	if (gMemAccessFlags.fProtect_RegisterGet && EmMemory::IsPCInRAM () && !MetaMemory::InRAMOSComponent (gCPU->GetPC ()))
	{
		EmBankRegs::PreventedAccess (address, sizeof (uint16), true);
	}
#endif

#if (VALIDATE_REGISTER_GET)
	if (gMemAccessFlags.fValidate_RegisterGet && !ValidAddress (address, sizeof (uint16)))
	{
		EmBankRegs::InvalidAccess (address, sizeof (uint16), true);
	}
#endif

#if HAS_PROFILING
	CYCLE_GETWORD (WAITSTATES_PLD);
#endif

	EmRegs*	bank = EmBankRegs::GetSubBank (address, sizeof (uint16));

	if (bank)
	{
		return bank->GetWord (address);
	}

	EmBankRegs::InvalidAccess (address, sizeof (uint16), true);
	return ~0;
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::GetByte
// ---------------------------------------------------------------------------

uint32 EmBankRegs::GetByte (emuptr address)
{
#if (PREVENT_USER_REGISTER_GET)
	if (gMemAccessFlags.fProtect_RegisterGet && EmMemory::IsPCInRAM () && !MetaMemory::InRAMOSComponent (gCPU->GetPC ()))
	{
		EmBankRegs::PreventedAccess (address, sizeof (uint8), true);
	}
#endif

#if (VALIDATE_REGISTER_GET)
	if (gMemAccessFlags.fValidate_RegisterGet && !ValidAddress (address, sizeof (uint8)))
	{
		EmBankRegs::InvalidAccess (address, sizeof (uint8), true);
	}
#endif

#if HAS_PROFILING
	CYCLE_GETBYTE (WAITSTATES_PLD);
#endif

	EmRegs*	bank = EmBankRegs::GetSubBank (address, sizeof (uint8));

	if (bank)
	{
		return bank->GetByte (address);
	}

	EmBankRegs::InvalidAccess (address, sizeof (uint8), true);
	return ~0;
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::SetLong
// ---------------------------------------------------------------------------

void EmBankRegs::SetLong (emuptr address, uint32 value)
{
#if PROFILE_MEMORY
	gMemoryAccess[kPLDLongWrite]++;
	if (address & 2)
		gMemoryAccess[kPLDLongWrite2]++;
#endif

#if (CHECK_FOR_ADDRESS_ERROR)
	if ((address & 1) != 0)
	{
		AddressError (address, sizeof (uint32), false);
	}
#endif

#if (PREVENT_USER_REGISTER_SET)
	if (gMemAccessFlags.fProtect_RegisterSet && EmMemory::IsPCInRAM () && !MetaMemory::InRAMOSComponent (gCPU->GetPC ()))
	{
		EmBankRegs::PreventedAccess (address, sizeof (uint32), false);
	}
#endif

#if (VALIDATE_REGISTER_SET)
	if (gMemAccessFlags.fValidate_RegisterSet && !ValidAddress (address, sizeof (uint32)))
	{
		EmBankRegs::InvalidAccess (address, sizeof (uint32), false);
	}
#endif

#if HAS_PROFILING
	CYCLE_PUTLONG (WAITSTATES_PLD);
#endif

	EmRegs*	bank = EmBankRegs::GetSubBank (address, sizeof (uint32));

	if (bank)
	{
		bank->SetLong (address, value);

		// See if any interesting memory locations have changed.  If so,
		// CheckStepSpy will report it.

		Debug::CheckStepSpy (address, sizeof (uint32));

		return;
	}

	EmBankRegs::InvalidAccess (address, sizeof (uint32), false);
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::SetWord
// ---------------------------------------------------------------------------

void EmBankRegs::SetWord (emuptr address, uint32 value)
{
#if (CHECK_FOR_ADDRESS_ERROR)
	if ((address & 1) != 0)
	{
		AddressError (address, sizeof (uint16), false);
	}
#endif

#if (PREVENT_USER_REGISTER_SET)
	if (gMemAccessFlags.fProtect_RegisterSet && EmMemory::IsPCInRAM () && !MetaMemory::InRAMOSComponent (gCPU->GetPC ()))
	{
		EmBankRegs::PreventedAccess (address, sizeof (uint16), false);
	}
#endif

#if (VALIDATE_REGISTER_SET)
	if (gMemAccessFlags.fValidate_RegisterSet && !ValidAddress (address, sizeof (uint16)))
	{
		EmBankRegs::InvalidAccess (address, sizeof (uint16), false);
	}
#endif

#if HAS_PROFILING
	CYCLE_PUTWORD (WAITSTATES_PLD);
#endif

	EmRegs*	bank = EmBankRegs::GetSubBank (address, sizeof (uint16));

	if (bank)
	{
		bank->SetWord (address, value);

		// See if any interesting memory locations have changed.  If so,
		// CheckStepSpy will report it.

		Debug::CheckStepSpy (address, sizeof (uint16));

		return;
	}

	EmBankRegs::InvalidAccess (address, sizeof (uint16), false);
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::SetByte
// ---------------------------------------------------------------------------

void EmBankRegs::SetByte (emuptr address, uint32 value)
{
#if (PREVENT_USER_REGISTER_SET)
	if (gMemAccessFlags.fProtect_RegisterSet && EmMemory::IsPCInRAM () && !MetaMemory::InRAMOSComponent (gCPU->GetPC ()))
	{
		EmBankRegs::PreventedAccess (address, sizeof (uint8), false);
	}
#endif

#if (VALIDATE_REGISTER_SET)
	if (gMemAccessFlags.fValidate_RegisterSet && !ValidAddress (address, sizeof (uint8)))
	{
		EmBankRegs::InvalidAccess (address, sizeof (uint8), false);
	}
#endif

#if HAS_PROFILING
	CYCLE_PUTBYTE (WAITSTATES_PLD);
#endif

	EmRegs*	bank = EmBankRegs::GetSubBank (address, sizeof (uint8));

	if (bank)
	{
		bank->SetByte (address, value);

		// See if any interesting memory locations have changed.  If so,
		// CheckStepSpy will report it.

		Debug::CheckStepSpy (address, sizeof (uint8));

		return;
	}

	EmBankRegs::InvalidAccess (address, sizeof (uint8), false);
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::ValidAddress
// ---------------------------------------------------------------------------

int EmBankRegs::ValidAddress (emuptr address, uint32 size)
{
	EmRegs*	bank = EmBankRegs::GetSubBank (address, size);

	if (bank)
	{
		return true;
	}

	return false;
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::GetRealAddress
// ---------------------------------------------------------------------------

uint8* EmBankRegs::GetRealAddress (emuptr address)
{
	EmRegs*	bank = EmBankRegs::GetSubBank (address, 0);

	if (bank)
	{
		return bank->GetRealAddress (address);
	}

	return NULL;
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::AddSubBank
// ---------------------------------------------------------------------------

void EmBankRegs::AddSubBank (EmRegs* bank)
{
	fgSubBanks.push_back (bank);
	gLastSubBank = NULL;
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::EnableSubBank
// ---------------------------------------------------------------------------

void EmBankRegs::EnableSubBank (emuptr address)
{
	PrvSwitchBanks (fgDisabledSubBanks, fgSubBanks, address);
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::DisableSubBank
// ---------------------------------------------------------------------------

void EmBankRegs::DisableSubBank (emuptr address)
{
	PrvSwitchBanks (fgSubBanks, fgDisabledSubBanks, address);
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::GetSubBank
// ---------------------------------------------------------------------------

EmRegs* EmBankRegs::GetSubBank (emuptr address, long size)
{
	// Cast address to a 64-bit value in case address + size == 0x1 0000 0000.

	uint64	addrStart64	= address;
	uint64	addrEnd64	= addrStart64 + size;

	// This cache is a big win.  When emulating a Palm IIIc (which uses
	// three EmRegs-based objects: EmRegsEZPalmIIIc, EmRegsSED1375, and
	// EmRegsFrameBuffer) and doing a Gremlins run, the cache was hit
	// 2,356,670 times and missed 19456 times.  When doing the same run
	// on a Palm V, the cache was missed only the first time.

	if (gLastSubBank &&
		(addrStart64 >= gLastStart) &&
		(addrEnd64 <= gLastStart + gLastRange))
	{
		return gLastSubBank;
	}

	EmRegsList::iterator	iter = fgSubBanks.begin ();
	while (iter != fgSubBanks.end ())
	{
		uint64	start	= (*iter)->GetAddressStart ();
		uint32	range	= (*iter)->GetAddressRange ();

		if ((addrStart64 >= start) && (addrEnd64 <= start + range))
		{
			gLastSubBank = *iter;
			gLastStart = start;
			gLastRange = range;

			return *iter;
		}

		++iter;
	}

	return NULL;
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::AddressError
// ---------------------------------------------------------------------------

void EmBankRegs::AddressError (emuptr address, long size, Bool forRead)
{
	EmAssert (gCPU68K);
	gCPU68K->AddressError (address, size, forRead);
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::InvalidAccess
// ---------------------------------------------------------------------------

void EmBankRegs::InvalidAccess (emuptr address, long size, Bool forRead)
{
	EmAssert (gCPU68K);
	gCPU68K->BusError (address, size, forRead);
}


// ---------------------------------------------------------------------------
//		¥ EmBankRegs::PreventedAccess
// ---------------------------------------------------------------------------

void EmBankRegs::PreventedAccess (emuptr address, long size, Bool forRead)
{
	EmAssert (gSession);
	gSession->ScheduleDeferredError (new EmDeferredErrHardwareRegisters (address, size, forRead));
}


// ---------------------------------------------------------------------------
//		¥ PrvSwitchBanks
// ---------------------------------------------------------------------------

void PrvSwitchBanks (EmRegsList& fromList, EmRegsList& toList, emuptr address)
{
	EmRegsList::iterator	iter = fromList.begin ();
	while (iter != fromList.end ())
	{
		uint64	start	= (*iter)->GetAddressStart ();
		uint32	range	= (*iter)->GetAddressRange ();

		if ((address >= start) && (address <= start + range))
		{
			toList.push_back (*iter);
			fromList.erase (iter);
			return;
		}

		++iter;
	}
}