all repos — mgba @ 787b2bd1a3d14473beea51257cc0a99a609800bd

mGBA Game Boy Advance Emulator

src/gba/gba-bios.c (view raw)

  1/* Copyright (c) 2013-2014 Jeffrey Pfau
  2 *
  3 * This Source Code Form is subject to the terms of the Mozilla Public
  4 * License, v. 2.0. If a copy of the MPL was not distributed with this
  5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  6#include "gba-bios.h"
  7
  8#include "gba.h"
  9#include "gba-io.h"
 10#include "gba-memory.h"
 11#include "isa-inlines.h"
 12
 13const uint32_t GBA_BIOS_CHECKSUM = 0xBAAE187F;
 14const uint32_t GBA_DS_BIOS_CHECKSUM = 0xBAAE1880;
 15
 16static void _unLz77(struct GBA* gba, int width);
 17static void _unHuffman(struct GBA* gba);
 18static void _unRl(struct GBA* gba, int width);
 19static void _unFilter(struct GBA* gba, int inwidth, int outwidth);
 20
 21static void _SoftReset(struct GBA* gba) {
 22	struct ARMCore* cpu = gba->cpu;
 23	ARMSetPrivilegeMode(cpu, MODE_IRQ);
 24	cpu->spsr.packed = 0;
 25	cpu->gprs[ARM_LR] = 0;
 26	cpu->gprs[ARM_SP] = SP_BASE_IRQ;
 27	ARMSetPrivilegeMode(cpu, MODE_SUPERVISOR);
 28	cpu->spsr.packed = 0;
 29	cpu->gprs[ARM_LR] = 0;
 30	cpu->gprs[ARM_SP] = SP_BASE_SUPERVISOR;
 31	ARMSetPrivilegeMode(cpu, MODE_SYSTEM);
 32	cpu->gprs[ARM_LR] = 0;
 33	cpu->gprs[ARM_SP] = SP_BASE_SYSTEM;
 34	int8_t flag = ((int8_t*) gba->memory.iwram)[0x7FFA];
 35	memset(((int8_t*) gba->memory.iwram) + SIZE_WORKING_IRAM - 0x200, 0, 0x200);
 36	if (flag) {
 37		cpu->gprs[ARM_PC] = BASE_WORKING_RAM;
 38	} else {
 39		cpu->gprs[ARM_PC] = BASE_CART0;
 40	}
 41	_ARMSetMode(cpu, MODE_ARM);
 42	int currentCycles = 0;
 43	ARM_WRITE_PC;
 44}
 45
 46static void _RegisterRamReset(struct GBA* gba) {
 47	uint32_t registers = gba->cpu->gprs[0];
 48	struct ARMCore* cpu = gba->cpu;
 49	cpu->memory.store16(cpu, BASE_IO | REG_DISPCNT, 0x0080, 0);
 50	if (registers & 0x01) {
 51		memset(gba->memory.wram, 0, SIZE_WORKING_RAM);
 52	}
 53	if (registers & 0x02) {
 54		memset(gba->memory.iwram, 0, SIZE_WORKING_IRAM - 0x200);
 55	}
 56	if (registers & 0x04) {
 57		memset(gba->video.palette, 0, SIZE_PALETTE_RAM);
 58	}
 59	if (registers & 0x08) {
 60		memset(gba->video.renderer->vram, 0, SIZE_VRAM);
 61	}
 62	if (registers & 0x10) {
 63		memset(gba->video.oam.raw, 0, SIZE_OAM);
 64	}
 65	if (registers & 0x20) {
 66		GBALog(gba, GBA_LOG_STUB, "RegisterRamReset on SIO unimplemented");
 67	}
 68	if (registers & 0x40) {
 69		GBALog(gba, GBA_LOG_STUB, "RegisterRamReset on Audio unimplemented");
 70	}
 71	if (registers & 0x80) {
 72		GBALog(gba, GBA_LOG_STUB, "RegisterRamReset on IO unimplemented");
 73	}
 74}
 75
 76static void _BgAffineSet(struct GBA* gba) {
 77	struct ARMCore* cpu = gba->cpu;
 78	int i = cpu->gprs[2];
 79	float ox, oy;
 80	float cx, cy;
 81	float sx, sy;
 82	float theta;
 83	int offset = cpu->gprs[0];
 84	int destination = cpu->gprs[1];
 85	float a, b, c, d;
 86	float rx, ry;
 87	while (i--) {
 88		// [ sx   0  0 ]   [ cos(theta)  -sin(theta)  0 ]   [ 1  0  cx - ox ]   [ A B rx ]
 89		// [  0  sy  0 ] * [ sin(theta)   cos(theta)  0 ] * [ 0  1  cy - oy ] = [ C D ry ]
 90		// [  0   0  1 ]   [     0            0       1 ]   [ 0  0     1    ]   [ 0 0  1 ]
 91		ox = cpu->memory.load32(cpu, offset, 0) / 256.f;
 92		oy = cpu->memory.load32(cpu, offset + 4, 0) / 256.f;
 93		cx = cpu->memory.load16(cpu, offset + 8, 0);
 94		cy = cpu->memory.load16(cpu, offset + 10, 0);
 95		sx = cpu->memory.load16(cpu, offset + 12, 0) / 256.f;
 96		sy = cpu->memory.load16(cpu, offset + 14, 0) / 256.f;
 97		theta = (cpu->memory.load16(cpu, offset + 16, 0) >> 8) / 128.f * M_PI;
 98		offset += 20;
 99		// Rotation
100		a = d = cosf(theta);
101		b = c = sinf(theta);
102		// Scale
103		a *= sx;
104		b *= -sx;
105		c *= sy;
106		d *= sy;
107		// Translate
108		rx = ox - (a * cx + b * cy);
109		ry = oy - (c * cx + d * cy);
110		cpu->memory.store16(cpu, destination, a * 256, 0);
111		cpu->memory.store16(cpu, destination + 2, b * 256, 0);
112		cpu->memory.store16(cpu, destination + 4, c * 256, 0);
113		cpu->memory.store16(cpu, destination + 6, d * 256, 0);
114		cpu->memory.store32(cpu, destination + 8, rx * 256, 0);
115		cpu->memory.store32(cpu, destination + 12, ry * 256, 0);
116		destination += 16;
117	}
118}
119
120static void _ObjAffineSet(struct GBA* gba) {
121	struct ARMCore* cpu = gba->cpu;
122	int i = cpu->gprs[2];
123	float sx, sy;
124	float theta;
125	int offset = cpu->gprs[0];
126	int destination = cpu->gprs[1];
127	int diff = cpu->gprs[3];
128	float a, b, c, d;
129	while (i--) {
130		// [ sx   0 ]   [ cos(theta)  -sin(theta) ]   [ A B ]
131		// [  0  sy ] * [ sin(theta)   cos(theta) ] = [ C D ]
132		sx = cpu->memory.load16(cpu, offset, 0) / 256.f;
133		sy = cpu->memory.load16(cpu, offset + 2, 0) / 256.f;
134		theta = (cpu->memory.load16(cpu, offset + 4, 0) >> 8) / 128.f * M_PI;
135		offset += 8;
136		// Rotation
137		a = d = cosf(theta);
138		b = c = sinf(theta);
139		// Scale
140		a *= sx;
141		b *= -sx;
142		c *= sy;
143		d *= sy;
144		cpu->memory.store16(cpu, destination, a * 256, 0);
145		cpu->memory.store16(cpu, destination + diff, b * 256, 0);
146		cpu->memory.store16(cpu, destination + diff * 2, c * 256, 0);
147		cpu->memory.store16(cpu, destination + diff * 3, d * 256, 0);
148		destination += diff * 4;
149	}
150}
151
152static void _MidiKey2Freq(struct GBA* gba) {
153	struct ARMCore* cpu = gba->cpu;
154	uint32_t key = cpu->memory.load32(cpu, cpu->gprs[0] + 4, 0);
155	cpu->gprs[0] = key / powf(2, (180.f - cpu->gprs[1] - cpu->gprs[2] / 256.f) / 12.f);
156}
157
158static void _Div(struct GBA* gba, int32_t num, int32_t denom) {
159	struct ARMCore* cpu = gba->cpu;
160	if (denom != 0) {
161		div_t result = div(num, denom);
162		cpu->gprs[0] = result.quot;
163		cpu->gprs[1] = result.rem;
164		cpu->gprs[3] = abs(result.quot);
165	} else {
166		GBALog(gba, GBA_LOG_GAME_ERROR, "Attempting to divide %i by zero!", num);
167		// If abs(num) > 1, this should hang, but that would be painful to
168		// emulate in HLE, and no game will get into a state where it hangs...
169		cpu->gprs[0] = (num < 0) ? -1 : 1;
170		cpu->gprs[1] = num;
171		cpu->gprs[3] = 1;
172	}
173}
174
175void GBASwi16(struct ARMCore* cpu, int immediate) {
176	struct GBA* gba = (struct GBA*) cpu->master;
177	GBALog(gba, GBA_LOG_SWI, "SWI: %02X r0: %08X r1: %08X r2: %08X r3: %08X",
178		immediate, cpu->gprs[0], cpu->gprs[1], cpu->gprs[2], cpu->gprs[3]);
179
180	if (gba->memory.fullBios) {
181		ARMRaiseSWI(cpu);
182		return;
183	}
184	switch (immediate) {
185	case 0x0:
186		_SoftReset(gba);
187		break;
188	case 0x1:
189		_RegisterRamReset(gba);
190		break;
191	case 0x2:
192		GBAHalt(gba);
193		break;
194	case 0x05:
195		// VBlankIntrWait
196		// Fall through:
197	case 0x04:
198		// IntrWait
199		ARMRaiseSWI(cpu);
200		break;
201	case 0x6:
202		_Div(gba, cpu->gprs[0], cpu->gprs[1]);
203		break;
204	case 0x7:
205		_Div(gba, cpu->gprs[1], cpu->gprs[0]);
206		break;
207	case 0x8:
208		cpu->gprs[0] = sqrt(cpu->gprs[0]);
209		break;
210	case 0xA:
211		cpu->gprs[0] = atan2f(cpu->gprs[1] / 16384.f, cpu->gprs[0] / 16384.f) / (2 * M_PI) * 0x10000;
212		break;
213	case 0xB:
214	case 0xC:
215		ARMRaiseSWI(cpu);
216		break;
217	case 0xD:
218		cpu->gprs[0] = GBA_BIOS_CHECKSUM;
219		cpu->gprs[1] = 1;
220		cpu->gprs[3] = SIZE_BIOS;
221		break;
222	case 0xE:
223		_BgAffineSet(gba);
224		break;
225	case 0xF:
226		_ObjAffineSet(gba);
227		break;
228	case 0x11:
229	case 0x12:
230		if (cpu->gprs[0] < BASE_WORKING_RAM) {
231			GBALog(gba, GBA_LOG_GAME_ERROR, "Bad LZ77 source");
232		}
233		switch (cpu->gprs[1] >> BASE_OFFSET) {
234			default:
235				GBALog(gba, GBA_LOG_GAME_ERROR, "Bad LZ77 destination");
236			case REGION_WORKING_RAM:
237			case REGION_WORKING_IRAM:
238			case REGION_VRAM:
239				_unLz77(gba, immediate == 0x11 ? 1 : 2);
240				break;
241		}
242		break;
243	case 0x13:
244		if (cpu->gprs[0] < BASE_WORKING_RAM) {
245			GBALog(gba, GBA_LOG_GAME_ERROR, "Bad Huffman source");
246		}
247		switch (cpu->gprs[1] >> BASE_OFFSET) {
248			default:
249				GBALog(gba, GBA_LOG_GAME_ERROR, "Bad Huffman destination");
250			case REGION_WORKING_RAM:
251			case REGION_WORKING_IRAM:
252			case REGION_VRAM:
253				_unHuffman(gba);
254				break;
255		}
256		break;
257	case 0x14:
258	case 0x15:
259		if (cpu->gprs[0] < BASE_WORKING_RAM) {
260			GBALog(gba, GBA_LOG_GAME_ERROR, "Bad RL source");
261		}
262		switch (cpu->gprs[1] >> BASE_OFFSET) {
263			default:
264				GBALog(gba, GBA_LOG_GAME_ERROR, "Bad RL destination");
265			case REGION_WORKING_RAM:
266			case REGION_WORKING_IRAM:
267			case REGION_VRAM:
268				_unRl(gba, immediate == 0x14 ? 1 : 2);
269				break;
270		}
271		break;
272	case 0x16:
273	case 0x17:
274	case 0x18:
275		if (cpu->gprs[0] < BASE_WORKING_RAM) {
276			GBALog(gba, GBA_LOG_GAME_ERROR, "Bad UnFilter source");
277		}
278		switch (cpu->gprs[1] >> BASE_OFFSET) {
279			default:
280				GBALog(gba, GBA_LOG_GAME_ERROR, "Bad UnFilter destination");
281			case REGION_WORKING_RAM:
282			case REGION_WORKING_IRAM:
283			case REGION_VRAM:
284				_unFilter(gba, immediate == 0x18 ? 2 : 1, immediate == 0x16 ? 1 : 2);
285				break;
286		}
287		break;
288	case 0x1F:
289		_MidiKey2Freq(gba);
290		break;
291	default:
292		GBALog(gba, GBA_LOG_STUB, "Stub software interrupt: %02X", immediate);
293	}
294}
295
296void GBASwi32(struct ARMCore* cpu, int immediate) {
297	GBASwi16(cpu, immediate >> 16);
298}
299
300uint32_t GBAChecksum(uint32_t* memory, size_t size) {
301	size_t i;
302	uint32_t sum = 0;
303	for (i = 0; i < size; i += 4) {
304		sum += memory[i >> 2];
305	}
306	return sum;
307}
308
309static void _unLz77(struct GBA* gba, int width) {
310	struct ARMCore* cpu = gba->cpu;
311	uint32_t source = cpu->gprs[0];
312	uint32_t dest = cpu->gprs[1];
313	int remaining = (cpu->memory.load32(cpu, source, 0) & 0xFFFFFF00) >> 8;
314	// We assume the signature byte (0x10) is correct
315	int blockheader = 0; // Some compilers warn if this isn't set, even though it's trivially provably always set
316	source += 4;
317	int blocksRemaining = 0;
318	uint32_t disp;
319	int bytes;
320	int byte;
321	int halfword;
322	while (remaining > 0) {
323		if (blocksRemaining) {
324			if (blockheader & 0x80) {
325				// Compressed
326				int block = cpu->memory.load8(cpu, source + 1, 0) | (cpu->memory.load8(cpu, source, 0) << 8);
327				source += 2;
328				disp = dest - (block & 0x0FFF) - 1;
329				bytes = (block >> 12) + 3;
330				while (bytes-- && remaining) {
331					--remaining;
332					if (width == 2) {
333						byte = cpu->memory.load16(cpu, disp & ~1, 0);
334						if (dest & 1) {
335							byte >>= (disp & 1) * 8;
336							halfword |= byte << 8;
337							cpu->memory.store16(cpu, dest ^ 1, halfword, 0);
338						} else {
339							byte >>= (disp & 1) * 8;
340							halfword = byte & 0xFF;
341						}
342					} else {
343						byte = cpu->memory.load8(cpu, disp, 0);
344						cpu->memory.store8(cpu, dest, byte, 0);
345					}
346					++disp;
347					++dest;
348				}
349			} else {
350				// Uncompressed
351				byte = cpu->memory.load8(cpu, source, 0);
352				++source;
353				if (width == 2) {
354					if (dest & 1) {
355						halfword |= byte << 8;
356						cpu->memory.store16(cpu, dest ^ 1, halfword, 0);
357					} else {
358						halfword = byte;
359					}
360				} else {
361					cpu->memory.store8(cpu, dest, byte, 0);
362				}
363				++dest;
364				--remaining;
365			}
366			blockheader <<= 1;
367			--blocksRemaining;
368		} else {
369			blockheader = cpu->memory.load8(cpu, source, 0);
370			++source;
371			blocksRemaining = 8;
372		}
373	}
374	cpu->gprs[0] = source;
375	cpu->gprs[1] = dest;
376	cpu->gprs[3] = 0;
377}
378
379DECL_BITFIELD(HuffmanNode, uint8_t);
380DECL_BITS(HuffmanNode, Offset, 0, 6);
381DECL_BIT(HuffmanNode, RTerm, 6);
382DECL_BIT(HuffmanNode, LTerm, 7);
383
384static void _unHuffman(struct GBA* gba) {
385	struct ARMCore* cpu = gba->cpu;
386	uint32_t source = cpu->gprs[0] & 0xFFFFFFFC;
387	uint32_t dest = cpu->gprs[1];
388	uint32_t header = cpu->memory.load32(cpu, source, 0);
389	int remaining = header >> 8;
390	int bits = header & 0xF;
391	if (bits == 0) {
392		GBALog(gba, GBA_LOG_GAME_ERROR, "Invalid Huffman bits");
393		bits = 8;
394	}
395	if (32 % bits) {
396		GBALog(gba, GBA_LOG_STUB, "Unimplemented unaligned Huffman");
397		return;
398	}
399	int padding = (4 - remaining) & 0x3;
400	remaining &= 0xFFFFFFFC;
401	// We assume the signature byte (0x20) is correct
402	int treesize = (cpu->memory.load8(cpu, source + 4, 0) << 1) + 1;
403	int block = 0;
404	uint32_t treeBase = source + 5;
405	source += 5 + treesize;
406	uint32_t nPointer = treeBase;
407	HuffmanNode node;
408	int bitsRemaining;
409	int readBits;
410	int bitsSeen = 0;
411	node = cpu->memory.load8(cpu, nPointer, 0);
412	while (remaining > 0) {
413		uint32_t bitstream = cpu->memory.load32(cpu, source, 0);
414		source += 4;
415		for (bitsRemaining = 32; bitsRemaining > 0 && remaining > 0; --bitsRemaining, bitstream <<= 1) {
416			uint32_t next = (nPointer & ~1) + HuffmanNodeGetOffset(node) * 2 + 2;
417			if (bitstream & 0x80000000) {
418				// Go right
419				if (HuffmanNodeIsRTerm(node)) {
420					readBits = cpu->memory.load8(cpu, next + 1, 0);
421				} else {
422					nPointer = next + 1;
423					node = cpu->memory.load8(cpu, nPointer, 0);
424					continue;
425				}
426			} else {
427				// Go left
428				if (HuffmanNodeIsLTerm(node)) {
429					readBits = cpu->memory.load8(cpu, next, 0);
430				} else {
431					nPointer = next;
432					node = cpu->memory.load8(cpu, nPointer, 0);
433					continue;
434				}
435			}
436
437			block |= (readBits & ((1 << bits) - 1)) << bitsSeen;
438			bitsSeen += bits;
439			nPointer = treeBase;
440			node = cpu->memory.load8(cpu, nPointer, 0);
441			if (bitsSeen == 32) {
442				bitsSeen = 0;
443				cpu->memory.store32(cpu, dest, block, 0);
444				dest += 4;
445				remaining -= 4;
446				block = 0;
447			}
448		}
449
450	}
451	if (padding) {
452		cpu->memory.store32(cpu, dest, block, 0);
453	}
454	cpu->gprs[0] = source;
455	cpu->gprs[1] = dest;
456}
457
458static void _unRl(struct GBA* gba, int width) {
459	struct ARMCore* cpu = gba->cpu;
460	uint32_t source = cpu->gprs[0] & 0xFFFFFFFC;
461	int remaining = (cpu->memory.load32(cpu, source, 0) & 0xFFFFFF00) >> 8;
462	int padding = (4 - remaining) & 0x3;
463	// We assume the signature byte (0x30) is correct
464	int blockheader;
465	int block;
466	source += 4;
467	uint32_t dest = cpu->gprs[1];
468	int halfword = 0;
469	while (remaining > 0) {
470		blockheader = cpu->memory.load8(cpu, source, 0);
471		++source;
472		if (blockheader & 0x80) {
473			// Compressed
474			blockheader &= 0x7F;
475			blockheader += 3;
476			block = cpu->memory.load8(cpu, source, 0);
477			++source;
478			while (blockheader-- && remaining) {
479				--remaining;
480				if (width == 2) {
481					if (dest & 1) {
482						halfword |= block << 8;
483						cpu->memory.store16(cpu, dest ^ 1, halfword, 0);
484					} else {
485						halfword = block;
486					}
487				} else {
488					cpu->memory.store8(cpu, dest, block, 0);
489				}
490				++dest;
491			}
492		} else {
493			// Uncompressed
494			blockheader++;
495			while (blockheader-- && remaining) {
496				--remaining;
497				int byte = cpu->memory.load8(cpu, source, 0);
498				++source;
499				if (width == 2) {
500					if (dest & 1) {
501						halfword |= byte << 8;
502						cpu->memory.store16(cpu, dest ^ 1, halfword, 0);
503					} else {
504						halfword = byte;
505					}
506				} else {
507					cpu->memory.store8(cpu, dest, byte, 0);
508				}
509				++dest;
510			}
511		}
512	}
513	if (width == 2) {
514		if (dest & 1) {
515			--padding;
516			++dest;
517		}
518		for (; padding > 0; padding -= 2, dest += 2) {
519			cpu->memory.store16(cpu, dest, 0, 0);
520		}
521	} else {
522		while (padding--) {
523			cpu->memory.store8(cpu, dest, 0, 0);
524			++dest;
525		}
526	}
527	cpu->gprs[0] = source;
528	cpu->gprs[1] = dest;
529}
530
531static void _unFilter(struct GBA* gba, int inwidth, int outwidth) {
532	struct ARMCore* cpu = gba->cpu;
533	uint32_t source = cpu->gprs[0] & 0xFFFFFFFC;
534	uint32_t dest = cpu->gprs[1];
535	uint32_t header = cpu->memory.load32(cpu, source, 0);
536	int remaining = header >> 8;
537	// We assume the signature nybble (0x8) is correct
538	uint16_t halfword = 0;
539	uint16_t old = 0;
540	source += 4;
541	while (remaining > 0) {
542		uint16_t new;
543		if (inwidth == 1) {
544			new = cpu->memory.load8(cpu, source, 0);
545		} else {
546			new = cpu->memory.load16(cpu, source, 0);
547		}
548		new += old;
549		if (outwidth > inwidth) {
550			halfword >>= 8;
551			halfword |= (new << 8);
552			if (source & 1) {
553				cpu->memory.store16(cpu, dest, halfword, 0);
554				dest += outwidth;
555				remaining -= outwidth;
556			}
557		} else if (outwidth == 1) {
558			cpu->memory.store8(cpu, dest, new, 0);
559			dest += outwidth;
560			remaining -= outwidth;
561		} else {
562			cpu->memory.store16(cpu, dest, new, 0);
563			dest += outwidth;
564			remaining -= outwidth;
565		}
566		old = new;
567		source += inwidth;
568	}
569	cpu->gprs[0] = source;
570	cpu->gprs[1] = dest;
571}