Thu, 30 Dec 2010 00:41:48 +0000
fix fdc irq handling (but irqs still disabled for now until the arbiter is sorted out)
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include <stdint.h>
4 #include <stdbool.h>
5 #include <malloc.h>
6 #include <string.h>
8 #include "SDL.h"
10 #include "musashi/m68k.h"
11 #include "version.h"
12 #include "state.h"
13 #include "memory.h"
15 void FAIL(char *err)
16 {
17 state_done();
18 fprintf(stderr, "ERROR: %s\nExiting...\n", err);
19 exit(EXIT_FAILURE);
20 }
22 /**
23 * @brief Set the pixel at (x, y) to the given value
24 * @note The surface must be locked before calling this!
25 * @param surface SDL surface upon which to draw
26 * @param x X co-ordinate
27 * @param y Y co-ordinate
28 * @param pixel Pixel value (from SDL_MapRGB)
29 */
30 void putpixel(SDL_Surface *surface, int x, int y, Uint32 pixel)
31 {
32 int bpp = surface->format->BytesPerPixel;
33 /* Here p is the address to the pixel we want to set */
34 Uint8 *p = (Uint8 *)surface->pixels + y * surface->pitch + x * bpp;
36 switch (bpp) {
37 case 1:
38 *p = pixel;
39 break;
41 case 2:
42 *(Uint16 *)p = pixel;
43 break;
45 case 3:
46 if (SDL_BYTEORDER == SDL_BIG_ENDIAN) {
47 p[0] = (pixel >> 16) & 0xff;
48 p[1] = (pixel >> 8) & 0xff;
49 p[2] = pixel & 0xff;
50 }
51 else {
52 p[0] = pixel & 0xff;
53 p[1] = (pixel >> 8) & 0xff;
54 p[2] = (pixel >> 16) & 0xff;
55 }
56 break;
58 case 4:
59 *(Uint32 *)p = pixel;
60 break;
62 default:
63 break; /* shouldn't happen, but avoids warnings */
64 } // switch
65 }
68 /**
69 * @brief Refresh the screen.
70 * @param surface SDL surface upon which to draw.
71 */
72 void refreshScreen(SDL_Surface *s)
73 {
74 // Lock the screen surface (if necessary)
75 if (SDL_MUSTLOCK(s)) {
76 if (SDL_LockSurface(s) < 0) {
77 fprintf(stderr, "ERROR: Unable to lock screen!\n");
78 exit(EXIT_FAILURE);
79 }
80 }
82 // Map the foreground and background colours
83 Uint32 fg = SDL_MapRGB(s->format, 0x00, 0xFF, 0x00); // green foreground
84 // Uint32 fg = SDL_MapRGB(s->format, 0xFF, 0xC1, 0x06); // amber foreground
85 // Uint32 fg = SDL_MapRGB(s->format, 0xFF, 0xFF, 0xFF); // white foreground
86 Uint32 bg = SDL_MapRGB(s->format, 0x00, 0x00, 0x00); // black background
88 // Refresh the 3B1 screen area first. TODO: only do this if VRAM has actually changed!
89 uint32_t vram_address = 0;
90 for (int y=0; y<348; y++) {
91 for (int x=0; x<720; x+=16) { // 720 pixels, monochrome, packed into 16bit words
92 // Get the pixel
93 uint16_t val = RD16(state.vram, vram_address, sizeof(state.vram)-1);
94 vram_address += 2;
95 // Now copy it to the video buffer
96 for (int px=0; px<16; px++) {
97 if (val & 1)
98 putpixel(s, x+px, y, fg);
99 else
100 putpixel(s, x+px, y, bg);
101 val >>= 1;
102 }
103 }
104 }
106 // TODO: blit LEDs and status info
108 // Unlock the screen surface
109 if (SDL_MUSTLOCK(s)) {
110 SDL_UnlockSurface(s);
111 }
113 // Trigger a refresh -- TODO: partial refresh depending on whether we
114 // refreshed the screen area, status area, both, or none. Use SDL_UpdateRect() for this.
115 SDL_Flip(s);
116 }
118 /**
119 * @brief Handle events posted by SDL.
120 */
121 bool HandleSDLEvents(SDL_Surface *screen)
122 {
123 SDL_Event event;
124 while (SDL_PollEvent(&event))
125 {
126 switch (event.type) {
127 case SDL_QUIT:
128 // Quit button tagged. Exit.
129 return true;
130 case SDL_KEYDOWN:
131 switch (event.key.keysym.sym) {
132 case SDLK_F12:
133 if (event.key.keysym.mod & (KMOD_LALT | KMOD_RALT))
134 // ALT-F12 pressed; exit emulator
135 return true;
136 break;
137 default:
138 break;
139 }
140 break;
141 default:
142 break;
143 }
144 }
146 return false;
147 }
150 /****************************
151 * blessed be thy main()...
152 ****************************/
154 int main(void)
155 {
156 // copyright banner
157 printf("FreeBee: A Quick-and-Dirty AT&T 3B1 Emulator. Version %s, %s mode.\n", VER_FULLSTR, VER_BUILD_TYPE);
158 printf("Copyright (C) 2010 P. A. Pemberton. All rights reserved.\nLicensed under the Apache License Version 2.0.\n");
159 printf("Musashi M680x0 emulator engine developed by Karl Stenerud <kstenerud@gmail.com>\n");
160 printf("Built %s by %s@%s.\n", VER_COMPILE_DATETIME, VER_COMPILE_BY, VER_COMPILE_HOST);
161 printf("Compiler: %s\n", VER_COMPILER);
162 printf("CFLAGS: %s\n", VER_CFLAGS);
163 printf("\n");
165 // set up system state
166 // 512K of RAM
167 int i;
168 if ((i = state_init(512*1024, 512*1024)) != STATE_E_OK) {
169 fprintf(stderr, "ERROR: Emulator initialisation failed. Error code %d.\n", i);
170 return i;
171 }
173 // set up musashi and reset the CPU
174 m68k_set_cpu_type(M68K_CPU_TYPE_68010);
175 m68k_pulse_reset();
177 // Set up SDL
178 if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_TIMER) == -1) {
179 printf("Could not initialise SDL: %s.\n", SDL_GetError());
180 exit(EXIT_FAILURE);
181 }
183 // Make sure SDL cleans up after itself
184 atexit(SDL_Quit);
186 // Set up the video display
187 SDL_Surface *screen = NULL;
188 if ((screen = SDL_SetVideoMode(720, 384, 8, SDL_SWSURFACE | SDL_ANYFORMAT)) == NULL) {
189 printf("Could not find a suitable video mode: %s.\n", SDL_GetError());
190 exit(EXIT_FAILURE);
191 }
192 printf("Set %dx%d at %d bits-per-pixel mode\n\n", screen->w, screen->h, screen->format->BitsPerPixel);
193 SDL_WM_SetCaption("FreeBee 3B1 emulator", "FreeBee");
195 // Load a disc image
196 FILE *disc = fopen("discim", "rb");
197 if (!disc) {
198 fprintf(stderr, "ERROR loading disc image 'discim'.\n");
199 return -4;
200 }
201 wd2797_load(&state.fdc_ctx, disc, 512, 10, 2);
203 /***
204 * The 3B1 CPU runs at 10MHz, with DMA running at 1MHz and video refreshing at
205 * around 60Hz (???), with a 60Hz periodic interrupt.
206 */
207 const uint32_t TIMESLOT_FREQUENCY = 1000;//240; // Hz
208 const uint32_t MILLISECS_PER_TIMESLOT = 1e3 / TIMESLOT_FREQUENCY;
209 const uint32_t CLOCKS_PER_60HZ = (10e6 / 60);
210 uint32_t next_timeslot = SDL_GetTicks() + MILLISECS_PER_TIMESLOT;
211 uint32_t clock_cycles = 0;
212 bool exitEmu = false;
213 // bool lastirq_fdc = false;
214 for (;;) {
215 // Run the CPU for however many cycles we need to. CPU core clock is
216 // 10MHz, and we're running at 240Hz/timeslot. Thus: 10e6/240 or
217 // 41667 cycles per timeslot.
218 clock_cycles += m68k_execute(10e6/TIMESLOT_FREQUENCY);
220 // Run the DMA engine
221 if (state.dmaen) {
222 // DMA ready to go -- so do it.
223 size_t num = 0;
224 while (state.dma_count < 0x4000) {
225 uint16_t d = 0;
227 // num tells us how many words we've copied. If this is greater than the per-timeslot DMA maximum, bail out!
228 if (num > (1e6/TIMESLOT_FREQUENCY)) break;
230 // Evidently we have more words to copy. Copy them.
231 if (!wd2797_get_drq(&state.fdc_ctx)) {
232 // Bail out, no data available. Try again later.
233 // TODO: handle HDD controller too
234 break;
235 }
237 // Check memory access permissions
238 // TODO: enforce these!!!! use ACCESS_CHECK_* for guidance.
239 bool access_ok;
240 switch (checkMemoryAccess(state.dma_address, !state.dma_reading)) {
241 case MEM_PAGEFAULT:
242 // Page fault
243 state.genstat = 0x8BFF
244 | (state.dma_reading ? 0x4000 : 0)
245 | (state.pie ? 0x0400 : 0);
246 access_ok = false;
247 break;
249 case MEM_UIE:
250 // User access to memory above 4MB
251 // FIXME? Shouldn't be possible with DMA... assert this?
252 state.genstat = 0x9AFF
253 | (state.dma_reading ? 0x4000 : 0)
254 | (state.pie ? 0x0400 : 0);
255 access_ok = false;
256 break;
258 case MEM_KERNEL:
259 case MEM_PAGE_NO_WE:
260 // Kernel access or page not write enabled
261 access_ok = false;
262 break;
264 case MEM_ALLOWED:
265 access_ok = true;
266 break;
267 }
268 if (!access_ok) {
269 state.bsr0 = 0x3C00;
270 state.bsr0 |= (state.dma_address >> 16);
271 state.bsr1 = state.dma_address & 0xffff;
272 m68k_pulse_bus_error();
273 printf("BUS ERROR FROM DMA: genstat=%04X, bsr0=%04X, bsr1=%04X\n", state.genstat, state.bsr0, state.bsr1);
275 // TODO: FIXME: if we get a pagefault, it NEEDS to be tagged as 'peripheral sourced'... this is a HACK!
276 printf("REALLY BIG FSCKING HUGE ERROR: DMA Memory Access caused a FAULT!\n");
277 exit(-1);
278 }
280 // Map logical address to a physical RAM address
281 uint32_t newAddr = mapAddr(state.dma_address, !state.dma_reading);
283 if (!state.dma_reading) {
284 // Data available. Get it from the FDC. TODO: handle HDD too
285 d = wd2797_read_reg(&state.fdc_ctx, WD2797_REG_DATA);
286 d <<= 8;
287 d += wd2797_read_reg(&state.fdc_ctx, WD2797_REG_DATA);
289 if (newAddr <= 0x1FFFFF) {
290 WR16(state.base_ram, newAddr, state.base_ram_size - 1, d);
291 } else if (newAddr >= 0x200000) {
292 WR16(state.exp_ram, newAddr - 0x200000, state.exp_ram_size - 1, d);
293 }
294 m68k_write_memory_16(state.dma_address, d);
295 } else {
296 // Data write to FDC. TODO: handle HDD too.
298 // Get the data from RAM
299 if (newAddr <= 0x1fffff) {
300 d = RD16(state.base_ram, newAddr, state.base_ram_size - 1);
301 } else {
302 if (newAddr <= (state.exp_ram_size + 0x200000 - 1))
303 d = RD16(state.exp_ram, newAddr - 0x200000, state.exp_ram_size - 1);
304 else
305 d = 0xffff;
306 }
308 // Send the data to the FDD
309 wd2797_write_reg(&state.fdc_ctx, WD2797_REG_DATA, (d >> 8));
310 wd2797_write_reg(&state.fdc_ctx, WD2797_REG_DATA, (d & 0xff));
311 }
313 // Increment DMA address
314 state.dma_address+=2;
315 // Increment number of words transferred
316 num++; state.dma_count++;
317 }
319 // Turn off DMA engine if we finished this cycle
320 if (state.dma_count >= 0x4000) {
321 // FIXME? apparently this isn't required... or is it?
322 // state.dma_count = 0;
323 state.dmaen = false;
324 }
325 }
327 // Any interrupts? --> TODO: masking
328 /* if (!lastirq_fdc) {
329 if (wd2797_get_irq(&state.fdc_ctx)) {
330 lastirq_fdc = true;
331 m68k_set_irq(2);
332 } else {
333 lastirq_fdc = false;
334 }
335 } else {
336 lastirq_fdc = wd2797_get_irq(&state.fdc_ctx);
337 m68k_set_irq(0);
338 }
339 */
340 // Is it time to run the 60Hz periodic interrupt yet?
341 if (clock_cycles > CLOCKS_PER_60HZ) {
342 // Refresh the screen
343 refreshScreen(screen);
344 // TODO: trigger periodic interrupt (if enabled)
345 // decrement clock cycle counter, we've handled the intr.
346 clock_cycles -= CLOCKS_PER_60HZ;
347 }
349 // handle SDL events -- returns true if we need to exit
350 if (HandleSDLEvents(screen))
351 exitEmu = true;
353 // make sure frame rate is equal to real time
354 uint32_t now = SDL_GetTicks();
355 if (now < next_timeslot) {
356 // timeslot finished early -- eat up some time
357 SDL_Delay(next_timeslot - now);
358 } else {
359 // timeslot finished late -- skip ahead to gain time
360 // TODO: if this happens a lot, we should let the user know
361 // that their PC might not be fast enough...
362 next_timeslot = now;
363 }
364 // advance to the next timeslot
365 next_timeslot += MILLISECS_PER_TIMESLOT;
367 // if we've been asked to exit the emulator, then do so.
368 if (exitEmu) break;
369 }
371 // Release the disc image
372 wd2797_unload(&state.fdc_ctx);
373 fclose(disc);
375 return 0;
376 }