]> git.sesse.net Git - pistorm/blob - platforms/amiga/pistorm-dev/pistorm-dev.c
6f25da409413d4c7e937d5a05e085832ba2c791d
[pistorm] / platforms / amiga / pistorm-dev / pistorm-dev.c
1 // SPDX-License-Identifier: MIT
2
3 #include <stdio.h>
4 #include <stdlib.h>
5 #include <string.h>
6 #include <time.h>
7
8 #include "pistorm-dev.h"
9 #include "pistorm-dev-enums.h"
10 #include "platforms/platforms.h"
11 #include "gpio/ps_protocol.h"
12 #include "platforms/amiga/rtg/rtg.h"
13 #include "platforms/amiga/piscsi/piscsi.h"
14 #include "platforms/amiga/net/pi-net.h"
15
16 #include <linux/reboot.h>
17 #include <sys/reboot.h>
18
19 #define DEBUG_PISTORM_DEVICE
20
21 #ifdef DEBUG_PISTORM_DEVICE
22 #define DEBUG printf
23
24 #define PIDEV_SWREV 0x0105
25
26 static const char *op_type_names[4] = {
27     "BYTE",
28     "WORD",
29     "LONGWORD",
30     "MEM",
31 };
32 #else
33 #define DEBUG(...)
34 #endif
35
36 extern uint32_t pistorm_dev_base;
37 extern uint32_t do_reset;
38
39 extern void adjust_ranges_amiga(struct emulator_config *cfg);
40 extern uint8_t rtg_enabled, rtg_on, pinet_enabled, piscsi_enabled, load_new_config, end_signal;
41 extern struct emulator_config *cfg;
42
43 char cfg_filename[256] = "default.cfg";
44 char tmp_string[256];
45
46 static uint8_t pi_byte[32];
47 static uint16_t pi_word[32];
48 static uint32_t pi_longword[32];
49 static uint32_t pi_string[32];
50 static uint32_t pi_ptr[32];
51
52 static uint32_t pi_dbg_val[32];
53 static uint32_t pi_dbg_string[32];
54
55 static uint32_t pi_cmd_result = 0, shutdown_confirm = 0xFFFFFFFF;
56
57 int32_t grab_amiga_string(uint32_t addr, uint8_t *dest, uint32_t str_max_len) {
58     int32_t r = get_mapped_item_by_address(cfg, addr);
59     uint32_t index = 0;
60
61     if (r == -1) {
62         DEBUG("[GRAB_AMIGA_STRING] No mapped range found for address $%.8X. Grabbing string data over the bus.\n", addr);
63         do {
64             dest[index] = (unsigned char)m68k_read_memory_8(addr + index);
65             index++;
66         } while (dest[index - 1] != 0x00 && index < str_max_len);
67     }
68     else {
69         uint8_t *src = cfg->map_data[r] + (addr - cfg->map_offset[r]);
70         do {
71             dest[index] = src[index];
72             index++;
73         } while (dest[index - 1] != 0x00 && index < str_max_len);
74     }
75     if (index == str_max_len) {
76         memset(dest, 0x00, str_max_len + 1);
77         return -1;
78     }
79     DEBUG("[GRAB_AMIGA_STRING] Grabbed string: %s\n", dest);
80     return (int32_t)strlen((const char*)dest);
81 }
82
83 int32_t amiga_transfer_file(uint32_t addr, char *filename) {
84     FILE *in = fopen(filename, "rb");
85     if (in == NULL) {
86         DEBUG("[AMIGA_TRANSFER_FILE] Failed to open file %s for reading.\n", filename);
87         return -1;
88     }
89     fseek(in, 0, SEEK_END);
90
91     int32_t r = get_mapped_item_by_address(cfg, addr);
92     uint32_t filesize = ftell(in);
93
94     fseek(in, 0, SEEK_SET);
95     if (r == -1) {
96         DEBUG("[GRAB_AMIGA_STRING] No mapped range found for address $%.8X. Transferring file data over the bus.\n", addr);
97         uint8_t tmp_read = 0;
98
99         for (uint32_t i = 0; i < filesize; i++) {
100             tmp_read = (uint8_t)fgetc(in);
101             m68k_write_memory_8(addr + i, tmp_read);
102         }
103     } else {
104         uint8_t *dst = cfg->map_data[r] + (addr - cfg->map_offset[r]);
105         fread(dst, filesize, 1, in);
106     }
107     fclose(in);
108     DEBUG("[AMIGA_TRANSFER_FILE] Copied %d bytes to address $%.8X.\n", filesize, addr);
109
110     return 0;
111 }
112
113 char *get_pistorm_devcfg_filename() {
114     return cfg_filename;
115 }
116
117 void set_pistorm_devcfg_filename(char *filename) {
118     strcpy(cfg_filename, filename);
119 }
120
121 void handle_pistorm_dev_write(uint32_t addr_, uint32_t val, uint8_t type) {
122     uint32_t addr = (addr_ & 0xFFFF);
123
124     switch((addr)) {
125         case PI_DBG_MSG:
126             // Output debug message based on value written and data in val/str registers.
127             break;
128         case PI_DBG_VAL1: case PI_DBG_VAL2: case PI_DBG_VAL3: case PI_DBG_VAL4:
129         case PI_DBG_VAL5: case PI_DBG_VAL6: case PI_DBG_VAL7: case PI_DBG_VAL8:
130             DEBUG("[PISTORM-DEV] Set DEBUG VALUE %d to %d ($%.8X)\n", (addr - PI_DBG_VAL1) / 4, val, val);
131             pi_dbg_val[(addr - PI_DBG_VAL1) / 4] = val;
132             break;
133         case PI_DBG_STR1: case PI_DBG_STR2: case PI_DBG_STR3: case PI_DBG_STR4:
134             DEBUG("[PISTORM-DEV] Set DEBUG STRING POINTER %d to $%.8X\n", (addr - PI_DBG_STR1) / 4, val);
135             pi_dbg_string[(addr - PI_DBG_STR1) / 4] = val;
136             break;
137
138         case PI_BYTE1: case PI_BYTE2: case PI_BYTE3: case PI_BYTE4:
139         case PI_BYTE5: case PI_BYTE6: case PI_BYTE7: case PI_BYTE8:
140             DEBUG("[PISTORM-DEV] Set BYTE %d to %d ($%.2X)\n", addr - PI_BYTE1, (val & 0xFF), (val & 0xFF));
141             pi_byte[addr - PI_BYTE1] = (val & 0xFF);
142             break;
143         case PI_WORD1: case PI_WORD2: case PI_WORD3: case PI_WORD4:
144             //DEBUG("[PISTORM-DEV] Set WORD %d to %d ($%.4X)\n", (addr - PI_WORD1) / 2, (val & 0xFFFF), (val & 0xFFFF));
145             pi_word[(addr - PI_WORD1) / 2] = (val & 0xFFFF);
146             break;
147         case PI_WORD5: case PI_WORD6: case PI_WORD7: case PI_WORD8:
148         case PI_WORD9: case PI_WORD10: case PI_WORD11: case PI_WORD12:
149             //DEBUG("[PISTORM-DEV] Set WORD %d to %d ($%.4X)\n", (addr - PI_WORD5) / 2, (val & 0xFFFF), (val & 0xFFFF));
150             pi_word[(addr - PI_WORD5) / 2] = (val & 0xFFFF);
151             break;
152         case PI_LONGWORD1: case PI_LONGWORD2: case PI_LONGWORD3: case PI_LONGWORD4:
153             //DEBUG("[PISTORM-DEV] Set LONGWORD %d to %d ($%.8X)\n", (addr - PI_LONGWORD1) / 4, val, val);
154             pi_longword[(addr - PI_LONGWORD1) / 4] = val;
155             break;
156         case PI_STR1: case PI_STR2: case PI_STR3: case PI_STR4:
157             DEBUG("[PISTORM-DEV] Set STRING POINTER %d to $%.8X\n", (addr - PI_STR1) / 4, val);
158             pi_string[(addr - PI_STR1) / 4] = val;
159             break;
160         case PI_PTR1: case PI_PTR2: case PI_PTR3: case PI_PTR4:
161             //DEBUG("[PISTORM-DEV] Set DATA POINTER %d to $%.8X\n", (addr - PI_PTR1) / 4, val);
162             pi_ptr[(addr - PI_PTR1) / 4] = val;
163             break;
164
165         case PI_CMD_TRANSFERFILE:
166             DEBUG("[PISTORM-DEV] Write to TRANSFERFILE.\n");
167             if (pi_string[0] == 0 || grab_amiga_string(pi_string[0], (uint8_t *)tmp_string, 255) == -1)  {
168                 printf("[PISTORM-DEV] No or invalid filename for TRANSFERFILE. Aborting.\n");
169                 pi_cmd_result = PI_RES_INVALIDVALUE;
170             } else if (pi_ptr[0] == 0) {
171                 printf("[PISTORM-DEV] Null pointer specified for TRANSFERFILE destination. Aborting.\n");
172                 pi_cmd_result = PI_RES_INVALIDVALUE;
173             } else {
174                 if (amiga_transfer_file(pi_ptr[0], tmp_string) == -1) {
175                     pi_cmd_result = PI_RES_FAILED;
176                 } else {
177                     pi_cmd_result = PI_RES_OK;
178                 }
179             }
180             pi_string[0] = 0;
181             pi_ptr[0] = 0;
182             break;
183         case PI_CMD_MEMCPY:
184             //DEBUG("[PISTORM-DEV} Write to MEMCPY: %d (%.8X)\n", val, val);
185             if (pi_ptr[0] == 0 || pi_ptr[1] == 0) {
186                 printf("[PISTORM-DEV] MEMCPY from/to null pointer not allowed. Aborting.\n");
187                 pi_cmd_result = PI_RES_INVALIDVALUE;
188             } else if (val == 0) {
189                 printf("[PISTORM-DEV] MEMCPY called with size 0. Aborting.\n");
190                 pi_cmd_result = PI_RES_INVALIDVALUE;
191             } else {
192                 int32_t src = get_mapped_item_by_address(cfg, pi_ptr[0]);
193                 int32_t dst = get_mapped_item_by_address(cfg, pi_ptr[1]);
194                 if (dst != -1 && src != -1) {
195                     //printf("doing super memcpy\n");
196                     uint8_t *src_ptr = &cfg->map_data[src][(pi_ptr[0] - cfg->map_offset[src])];
197                     uint8_t *dst_ptr = &cfg->map_data[dst][(pi_ptr[1] - cfg->map_offset[dst])];
198                     memcpy(dst_ptr, src_ptr, val);
199                 } else {
200                     uint8_t tmp = 0;
201                     for (uint32_t i = 0; i < val; i++) {
202                         if (src == -1) tmp = (unsigned char)m68k_read_memory_8(pi_ptr[0] + i);
203                         else tmp = cfg->map_data[src][pi_ptr[0] - cfg->map_offset[src] + i];
204                         
205                         if (dst == -1) m68k_write_memory_8(pi_ptr[1] + i, tmp);
206                         else cfg->map_data[dst][pi_ptr[1] - cfg->map_offset[dst] + i] = tmp;
207                     }
208                 }
209                 //DEBUG("[PISTORM-DEV] Copied %d bytes from $%.8X to $%.8X\n", val, pi_ptr[0], pi_ptr[1]);
210             }
211             break;
212         case PI_CMD_MEMSET:
213             //DEBUG("[PISTORM-DEV} Write to MEMSET: %d (%.8X)\n", val, val);
214             if (pi_ptr[0] == 0) {
215                 printf("[PISTORM-DEV] MEMSET with null pointer not allowed. Aborting.\n");
216                 pi_cmd_result = PI_RES_INVALIDVALUE;
217             } else if (val == 0) {
218                 printf("[PISTORM-DEV] MEMSET called with size 0. Aborting.\n");
219                 pi_cmd_result = PI_RES_INVALIDVALUE;
220             } else {
221                 int32_t dst = get_mapped_item_by_address(cfg, pi_ptr[0]);
222                 if (dst != -1) {
223                     uint8_t *dst_ptr = &cfg->map_data[dst][(pi_ptr[0] - cfg->map_offset[dst])];
224                     memset(dst_ptr, pi_byte[0], val);
225                 } else {
226                     for (uint32_t i = 0; i < val; i++) {
227                         m68k_write_memory_8(pi_ptr[0] + i, pi_byte[0]);
228                     }
229                 }
230             }
231             break;
232         case PI_CMD_COPYRECT:
233         case PI_CMD_COPYRECT_EX:
234             if (pi_ptr[0] == 0 || pi_ptr[1] == 0) {
235                 printf("[PISTORM-DEV] COPYRECT/EX from/to null pointer not allowed. Aborting.\n");
236                 pi_cmd_result = PI_RES_INVALIDVALUE;
237             } else if (pi_word[2] == 0 || pi_word[3] == 0) {
238                 printf("[PISTORM-DEV] COPYRECT/EX called with a width/height of 0. Aborting.\n");
239                 pi_cmd_result = PI_RES_INVALIDVALUE;
240             } else {
241                 int32_t src = get_mapped_item_by_address(cfg, pi_ptr[0]);
242                 int32_t dst = get_mapped_item_by_address(cfg, pi_ptr[1]);
243
244                 if (dst != -1 && src != -1) {
245                     uint8_t *src_ptr = &cfg->map_data[src][(pi_ptr[0] - cfg->map_offset[src])];
246                     uint8_t *dst_ptr = &cfg->map_data[dst][(pi_ptr[1] - cfg->map_offset[dst])];
247
248                     if (addr == PI_CMD_COPYRECT_EX) {
249                         // Adjust pointers in the case of available src/dst coordinates.
250                         src_ptr += pi_word[4] + (pi_word[5] * pi_word[0]);
251                         dst_ptr += pi_word[6] + (pi_word[7] * pi_word[1]);
252                     }
253
254                     for (int i = 0; i < pi_word[3]; i++) {
255                         memcpy(dst_ptr, src_ptr, pi_word[2]);
256
257                         src_ptr += pi_word[0];
258                         dst_ptr += pi_word[1];
259                     }
260                 } else {
261                     printf("!!! doing manual copyrect\n");
262
263                     if (addr != PI_CMD_COPYRECT_EX) {
264                         // Clear out the src/dst coordinates in case something else set them previously.
265                         pi_word[4] = pi_word[5] = pi_word[6] = pi_word[7] = 0;
266                     }
267
268                     uint32_t src_offset = 0, dst_offset = 0;
269                     uint8_t tmp = 0;
270
271                     if (addr == PI_CMD_COPYRECT_EX) {
272                         src_offset += pi_word[4] + (pi_word[5] * pi_word[0]);
273                         dst_offset += pi_word[6] + (pi_word[7] * pi_word[1]);
274                     }
275
276                     for (uint32_t y = 0; y < pi_word[3]; y++) {
277                         for (uint32_t x = 0; x < pi_word[2]; x++) {
278                             if (src == -1) tmp = (unsigned char)m68k_read_memory_8(pi_ptr[0] + src_offset + x);
279                             else tmp = cfg->map_data[src][(pi_ptr[0] + src_offset + x) - cfg->map_offset[src]];
280                             
281                             if (dst == -1) m68k_write_memory_8(pi_ptr[1] + dst_offset + x, tmp);
282                             else cfg->map_data[dst][(pi_ptr[1] + dst_offset + x) - cfg->map_offset[dst]] = tmp;
283                         }
284                         src_offset += pi_word[0];
285                         dst_offset += pi_word[1];
286                     }
287                 }
288             }
289             break;
290
291         case PI_CMD_SHOWFPS: rtg_show_fps((uint8_t)val); break;
292         case PI_CMD_PALETTEDEBUG: rtg_palette_debug((uint8_t)val); break;
293         case PI_CMD_RTGSTATUS:
294             DEBUG("[PISTORM-DEV] Write to RTGSTATUS: %d\n", val);
295             if (val == 1 && !rtg_enabled) {
296                 init_rtg_data(cfg);
297                 rtg_enabled = 1;
298                 pi_cmd_result = PI_RES_OK;
299             } else if (val == 0 && rtg_enabled) {
300                 if (!rtg_on) {
301                     shutdown_rtg();
302                     rtg_enabled = 0;
303                     pi_cmd_result = PI_RES_OK;
304                 } else {
305                     // Refuse to disable RTG if it's currently in use.
306                     pi_cmd_result = PI_RES_FAILED;
307                 }
308             } else {
309                 pi_cmd_result = PI_RES_NOCHANGE;
310             }
311             adjust_ranges_amiga(cfg);
312             break;
313         case PI_CMD_NETSTATUS:
314             DEBUG("[PISTORM-DEV] Write to NETSTATUS: %d\n", val);
315             if (val == 1 && !pinet_enabled) {
316                 pinet_init(NULL);
317                 pinet_enabled = 1;
318                 pi_cmd_result = PI_RES_OK;
319             } else if (val == 0 && pinet_enabled) {
320                 pinet_shutdown();
321                 pinet_enabled = 0;
322                 pi_cmd_result = PI_RES_OK;
323             } else {
324                 pi_cmd_result = PI_RES_NOCHANGE;
325             }
326             adjust_ranges_amiga(cfg);
327             break;
328         case PI_CMD_PISCSI_CTRL:
329             DEBUG("[PISTORM-DEV] Write to PISCSI_CTRL: ");
330             switch(val) {
331                 case PISCSI_CTRL_DISABLE:
332                     DEBUG("DISABLE\n");
333                     if (piscsi_enabled) {
334                         piscsi_shutdown();
335                         piscsi_enabled = 0;
336                         // Probably not OK... depends on if you booted from floppy, I guess.
337                         pi_cmd_result = PI_RES_OK;
338                     } else {
339                         pi_cmd_result = PI_RES_NOCHANGE;
340                     }
341                     break;
342                 case PISCSI_CTRL_ENABLE:
343                     DEBUG("ENABLE\n");
344                     if (!piscsi_enabled) {
345                         piscsi_init();
346                         piscsi_enabled = 1;
347                         piscsi_refresh_drives();
348                         pi_cmd_result = PI_RES_OK;
349                     } else {
350                         pi_cmd_result = PI_RES_NOCHANGE;
351                     }
352                     break;
353                 case PISCSI_CTRL_MAP:
354                     DEBUG("MAP\n");
355                     if (pi_string[0] == 0 || grab_amiga_string(pi_string[0], (uint8_t *)tmp_string, 255) == -1)  {
356                         printf("[PISTORM-DEV] Failed to grab string for PISCSI drive filename. Aborting.\n");
357                         pi_cmd_result = PI_RES_FAILED;
358                     } else {
359                         FILE *tmp = fopen(tmp_string, "rb");
360                         if (tmp == NULL) {
361                             printf("[PISTORM-DEV] Failed to open file %s for PISCSI drive mapping. Aborting.\n", tmp_string);
362                             pi_cmd_result = PI_RES_FILENOTFOUND;
363                         } else {
364                             fclose(tmp);
365                             printf("[PISTORM-DEV] Attempting to map file %s as PISCSI drive %d...\n", tmp_string, pi_word[0]);
366                             piscsi_unmap_drive(pi_word[0]);
367                             piscsi_map_drive(tmp_string, pi_word[0]);
368                             pi_cmd_result = PI_RES_OK;
369                         }
370                     }
371                     pi_string[0] = 0;
372                     break;
373                 case PISCSI_CTRL_UNMAP:
374                     DEBUG("UNMAP\n");
375                     if (pi_word[0] > 7) {
376                         printf("[PISTORM-DEV] Invalid drive ID %d for PISCSI unmap command.", pi_word[0]);
377                         pi_cmd_result = PI_RES_INVALIDVALUE;
378                     } else {
379                         if (piscsi_get_dev(pi_word[0])->fd != -1) {
380                             piscsi_unmap_drive(pi_word[0]);
381                             pi_cmd_result = PI_RES_OK;
382                         } else {
383                             pi_cmd_result = PI_RES_NOCHANGE;
384                         }
385                     }
386                     break;
387                 case PISCSI_CTRL_EJECT:
388                     DEBUG("EJECT (NYI)\n");
389                     pi_cmd_result = PI_RES_NOCHANGE;
390                     break;
391                 case PISCSI_CTRL_INSERT:
392                     DEBUG("INSERT (NYI)\n");
393                     pi_cmd_result = PI_RES_NOCHANGE;
394                     break;
395                 default:
396                     DEBUG("UNKNOWN/UNHANDLED. Aborting.\n");
397                     pi_cmd_result = PI_RES_INVALIDVALUE;
398                     break;
399             }
400             adjust_ranges_amiga(cfg);
401             break;
402         
403         case PI_CMD_KICKROM:
404             DEBUG("[PISTORM-DEV] Write to KICKROM.\n");
405             if (pi_string[0] == 0 || grab_amiga_string(pi_string[0], (uint8_t *)tmp_string, 255) == -1)  {
406                 printf("[PISTORM-DEV] Failed to grab string KICKROM filename. Aborting.\n");
407                 pi_cmd_result = PI_RES_FAILED;
408             } else {
409                 FILE *tmp = fopen(tmp_string, "rb");
410                 if (tmp == NULL) {
411                     printf("[PISTORM-DEV] Failed to open file %s for KICKROM mapping. Aborting.\n", tmp_string);
412                     pi_cmd_result = PI_RES_FILENOTFOUND;
413                 } else {
414                     fclose(tmp);
415                     if (get_named_mapped_item(cfg, "kickstart") != -1) {
416                         uint32_t index = get_named_mapped_item(cfg, "kickstart");
417                         free(cfg->map_data[index]);
418                         free(cfg->map_id[index]);
419                         cfg->map_type[index] = MAPTYPE_NONE;
420                         // Dirty hack, I am sleepy and lazy.
421                         add_mapping(cfg, MAPTYPE_ROM, cfg->map_offset[index], cfg->map_size[index], 0, tmp_string, "kickstart");
422                         pi_cmd_result = PI_RES_OK;
423                         do_reset = 1;
424                     } else {
425                         printf ("[PISTORM-DEV] Could not find mapped range 'kickstart', cannot remap KICKROM.\n");
426                         pi_cmd_result = PI_RES_FAILED;
427                     }
428                 }
429             }
430             adjust_ranges_amiga(cfg);
431             pi_string[0] = 0;
432             break;
433         case PI_CMD_EXTROM:
434             DEBUG("[PISTORM-DEV] Write to EXTROM.\n");
435             if (pi_string[0] == 0 || grab_amiga_string(pi_string[0], (uint8_t *)tmp_string, 255) == -1)  {
436                 printf("[PISTORM-DEV] Failed to grab string EXTROM filename. Aborting.\n");
437                 pi_cmd_result = PI_RES_FAILED;
438             } else {
439                 FILE *tmp = fopen(tmp_string, "rb");
440                 if (tmp == NULL) {
441                     printf("[PISTORM-DEV] Failed to open file %s for EXTROM mapping. Aborting.\n", tmp_string);
442                     pi_cmd_result = PI_RES_FILENOTFOUND;
443                 } else {
444                     fclose(tmp);
445                     if (get_named_mapped_item(cfg, "extended") != -1) {
446                         uint32_t index = get_named_mapped_item(cfg, "extended");
447                         free(cfg->map_data[index]);
448                         free(cfg->map_id[index]);
449                         cfg->map_type[index] = MAPTYPE_NONE;
450                         // Dirty hack, I am tired and lazy.
451                         add_mapping(cfg, MAPTYPE_ROM, cfg->map_offset[index], cfg->map_size[index], 0, tmp_string, "extended");
452                         pi_cmd_result = PI_RES_OK;
453                         do_reset = 1;
454                     } else {
455                         printf ("[PISTORM-DEV] Could not find mapped range 'extrom', cannot remap EXTROM.\n");
456                         pi_cmd_result = PI_RES_FAILED;
457                     }
458                 }
459             }
460             adjust_ranges_amiga(cfg);
461             pi_string[0] = 0;
462             break;
463
464         case PI_CMD_RESET:
465             DEBUG("[PISTORM-DEV] System reset called, code %d\n", (val & 0xFFFF));
466             do_reset = 1;
467             break;
468         case PI_CMD_SHUTDOWN:
469             DEBUG("[PISTORM-DEV] Shutdown requested. Confirm by replying with return value to CONFIRMSHUTDOWN.\n");
470             shutdown_confirm = rand() % 0xFFFF;
471             pi_cmd_result = shutdown_confirm;
472             break;
473         case PI_CMD_CONFIRMSHUTDOWN:
474             if (val != shutdown_confirm) {
475                 DEBUG("[PISTORM-DEV] Attempted shutdown with wrong shutdown confirm value. Not shutting down.\n");
476                 shutdown_confirm = 0xFFFFFFFF;
477                 pi_cmd_result = PI_RES_FAILED;
478             } else {
479                 printf("[PISTORM-DEV] Shutting down the PiStorm. Good night, fight well, until we meet again.\n");
480                 reboot(LINUX_REBOOT_CMD_POWER_OFF);
481                 pi_cmd_result = PI_RES_OK;
482                 end_signal = 1;
483             }
484             break;
485         case PI_CMD_SWITCHCONFIG:
486             DEBUG("[PISTORM-DEV] Config switch called, command: ");
487             switch (val) {
488                 case PICFG_LOAD:
489                     DEBUG("LOAD\n");
490                     if (pi_string[0] == 0 || grab_amiga_string(pi_string[0], (uint8_t *)cfg_filename, 255) == -1) {
491                         printf("[PISTORM-DEV] Failed to grab string for CONFIG filename. Aborting.\n");
492                         pi_cmd_result = PI_RES_FAILED;
493                     } else {
494                         FILE *tmp = fopen(cfg_filename, "rb");
495                         if (tmp == NULL) {
496                             printf("[PISTORM-DEV] Failed to open CONFIG file %s for reading. Aborting.\n", cfg_filename);
497                             pi_cmd_result = PI_RES_FILENOTFOUND;
498                         } else {
499                             fclose(tmp);
500                             printf("[PISTORM-DEV] Attempting to load config file %s...\n", cfg_filename);
501                             load_new_config = val + 1;
502                             pi_cmd_result = PI_RES_OK;
503                         }
504                     }
505                     pi_string[0] = 0;
506                     break;
507                 case PICFG_RELOAD:
508                     DEBUG("RELOAD\n");
509                     printf("[PISTORM-DEV] Reloading current config file (%s)...\n", cfg_filename);
510                     load_new_config = val + 1;
511                     break;
512                 case PICFG_DEFAULT:
513                     DEBUG("DEFAULT\n");
514                     printf("[PISTORM-DEV] Loading default.cfg...\n");
515                     load_new_config = val + 1;
516                     break;
517                 default:
518                     DEBUG("UNKNOWN/UNHANDLED. Command ignored.\n");
519                     pi_cmd_result = PI_RES_INVALIDVALUE;
520                     break;
521             }
522             break;
523         default:
524             DEBUG("[PISTORM-DEV] WARN: Unhandled %s register write to %.4X: %d\n", op_type_names[type], addr - pistorm_dev_base, val);
525             pi_cmd_result = PI_RES_INVALIDCMD;
526             break;
527     }
528 }
529  
530 uint32_t handle_pistorm_dev_read(uint32_t addr_, uint8_t type) {
531     uint32_t addr = (addr_ & 0xFFFF);
532
533     switch((addr)) {
534         case PI_CMD_FILESIZE:
535             DEBUG("[PISTORM-DEV] %s read from FILESIZE.\n", op_type_names[type]);
536             if (pi_string[0] == 0 || grab_amiga_string(pi_string[0], (uint8_t *)tmp_string, 255) == -1)  {
537                 DEBUG("[PISTORM-DEV] Failed to grab string for FILESIZE command. Aborting.\n");
538                 pi_cmd_result = PI_RES_FAILED;
539                 pi_longword[0] = 0;
540                 return 0;
541             } else {
542                 FILE *tmp = fopen(tmp_string, "rb");
543                 if (tmp == NULL) {
544                     DEBUG("[PISTORM-DEV] Failed to open file %s for FILESIZE command. Aborting.\n", tmp_string);
545                     pi_longword[0] = 0;
546                     pi_cmd_result = PI_RES_FILENOTFOUND;
547                 } else {
548                     fseek(tmp, 0, SEEK_END);
549                     pi_longword[0] = ftell(tmp);
550                     DEBUG("[PISTORM-DEV] Returning file size for file %s: %d bytes.\n", tmp_string, pi_longword[0]);
551                     fclose(tmp);
552                     pi_cmd_result = PI_RES_OK;
553                 }
554             }
555             pi_string[0] = 0;
556             return pi_longword[0];
557             break;
558
559         case PI_CMD_HWREV:
560             // Probably replace this with some read from the CPLD to get a simple hardware revision.
561             DEBUG("[PISTORM-DEV] %s Read from HWREV\n", op_type_names[type]);
562             return 0x0101; // 1.1
563             break;
564         case PI_CMD_SWREV:
565             DEBUG("[PISTORM-DEV] %s Read from SWREV\n", op_type_names[type]);
566             return PIDEV_SWREV;
567             break;
568         case PI_CMD_RTGSTATUS:
569             DEBUG("[PISTORM-DEV] %s Read from RTGSTATUS\n", op_type_names[type]);
570             return (rtg_on << 1) | rtg_enabled;
571             break;
572         case PI_CMD_NETSTATUS:
573             DEBUG("[PISTORM-DEV] %s Read from NETSTATUS\n", op_type_names[type]);
574             return pinet_enabled;
575             break;
576         case PI_CMD_PISCSI_CTRL:
577             DEBUG("[PISTORM-DEV] %s Read from PISCSI_CTRL\n", op_type_names[type]);
578             return piscsi_enabled;
579             break;
580         case PI_CMD_GET_FB:
581             //DEBUG("[PISTORM-DEV] %s read from GET_FB: %.8X\n", op_type_names[type], rtg_get_fb());
582             return rtg_get_fb();
583
584         case PI_DBG_VAL1: case PI_DBG_VAL2: case PI_DBG_VAL3: case PI_DBG_VAL4:
585         case PI_DBG_VAL5: case PI_DBG_VAL6: case PI_DBG_VAL7: case PI_DBG_VAL8:
586             DEBUG("[PISTORM-DEV] Read DEBUG VALUE %d (%d / $%.8X)\n", (addr - PI_DBG_VAL1) / 4, pi_dbg_val[(addr - PI_DBG_VAL1) / 4], pi_dbg_val[(addr - PI_DBG_VAL1) / 4]);
587             return pi_dbg_val[(addr - PI_DBG_VAL1) / 4];
588             break;
589
590         case PI_BYTE1: case PI_BYTE2: case PI_BYTE3: case PI_BYTE4:
591         case PI_BYTE5: case PI_BYTE6: case PI_BYTE7: case PI_BYTE8:
592             DEBUG("[PISTORM-DEV] Read BYTE %d (%d / $%.2X)\n", addr - PI_BYTE1, pi_byte[addr - PI_BYTE1], pi_byte[addr - PI_BYTE1]);
593             return pi_byte[addr - PI_BYTE1];
594             break;
595         case PI_WORD1: case PI_WORD2: case PI_WORD3: case PI_WORD4:
596             DEBUG("[PISTORM-DEV] Read WORD %d (%d / $%.4X)\n", (addr - PI_WORD1) / 2, pi_word[(addr - PI_WORD1) / 2], pi_word[(addr - PI_WORD1) / 2]);
597             return pi_word[(addr - PI_WORD1) / 2];
598             break;
599         case PI_WORD5: case PI_WORD6: case PI_WORD7: case PI_WORD8: 
600         case PI_WORD9: case PI_WORD10: case PI_WORD11: case PI_WORD12: 
601             DEBUG("[PISTORM-DEV] Read WORD %d (%d / $%.4X)\n", (addr - PI_WORD5) / 2, pi_word[(addr - PI_WORD5) / 2], pi_word[(addr - PI_WORD5) / 2]);
602             return pi_word[(addr - PI_WORD5) / 2];
603             break;
604         case PI_LONGWORD1: case PI_LONGWORD2: case PI_LONGWORD3: case PI_LONGWORD4:
605             DEBUG("[PISTORM-DEV] Read LONGWORD %d (%d / $%.8X)\n", (addr - PI_LONGWORD1) / 4, pi_longword[(addr - PI_LONGWORD1) / 4], pi_longword[(addr - PI_LONGWORD1) / 4]);
606             return pi_longword[(addr - PI_LONGWORD1) / 4];
607             break;
608
609         case PI_CMDRESULT:
610             //DEBUG("[PISTORM-DEV] %s Read from CMDRESULT: %d\n", op_type_names[type], pi_cmd_result);
611             return pi_cmd_result;
612             break;
613
614         default:
615             DEBUG("[PISTORM-DEV] WARN: Unhandled %s register read from %.4X\n", op_type_names[type], addr - pistorm_dev_base);
616             break;
617     }
618     return 0;
619 }