src/wd279x.c

Tue, 28 Dec 2010 21:47:43 +0000

author
Philip Pemberton <philpem@philpem.me.uk>
date
Tue, 28 Dec 2010 21:47:43 +0000
changeset 72
c66c98c7a768
parent 71
22452603e214
child 73
05ef5f3c5246
permissions
-rw-r--r--

Only print LED state if it has changed

philpem@48 1 #include <stdint.h>
philpem@48 2 #include <stdbool.h>
philpem@49 3 #include <malloc.h>
philpem@53 4 #include "musashi/m68k.h"
philpem@48 5 #include "wd279x.h"
philpem@48 6
philpem@71 7 #define NDEBUG
philpem@71 8 #include "utils.h"
philpem@71 9
philpem@48 10 /// WD2797 command constants
philpem@48 11 enum {
philpem@48 12 CMD_MASK = 0xF0, ///< Bit mask to detect command bits
philpem@48 13 CMD_RESTORE = 0x00, ///< Restore (recalibrate, seek to track 0)
philpem@48 14 CMD_SEEK = 0x10, ///< Seek to given track
philpem@48 15 CMD_STEP = 0x20, ///< Step
philpem@48 16 CMD_STEP_TU = 0x30, ///< Step and update track register
philpem@48 17 CMD_STEPIN = 0x40, ///< Step In
philpem@48 18 CMD_STEPIN_TU = 0x50, ///< Step In and update track register
philpem@48 19 CMD_STEPOUT = 0x60, ///< Step Out
philpem@48 20 CMD_STEPOUT_TU = 0x70, ///< Step Out and update track register
philpem@48 21 CMD_READ_SECTOR = 0x80, ///< Read Sector
philpem@48 22 CMD_READ_SECTOR_MULTI = 0x90, ///< Read Multiple Sectors
philpem@48 23 CMD_WRITE_SECTOR = 0xA0, ///< Write Sector
philpem@48 24 CMD_WRITE_SECTOR_MULTI = 0xB0, ///< Write Multiple Sectors
philpem@48 25 CMD_READ_ADDRESS = 0xC0, ///< Read Address (IDAM contents)
philpem@48 26 CMD_FORCE_INTERRUPT = 0xD0, ///< Force Interrupt
philpem@48 27 CMD_READ_TRACK = 0xE0, ///< Read Track
philpem@48 28 CMD_FORMAT_TRACK = 0xF0 ///< Format Track
philpem@48 29 };
philpem@48 30
philpem@48 31
philpem@49 32 void wd2797_init(WD2797_CTX *ctx)
philpem@48 33 {
philpem@48 34 // track, head and sector unknown
philpem@49 35 ctx->track = ctx->head = ctx->sector = 0;
philpem@48 36
philpem@49 37 // no IRQ pending
philpem@49 38 ctx->irql = ctx->irqe = false;
philpem@48 39
philpem@48 40 // no data available
philpem@49 41 ctx->data_pos = ctx->data_len = 0;
philpem@49 42 ctx->data = NULL;
philpem@49 43
philpem@49 44 // Status register clear, not busy
philpem@49 45 ctx->status = 0;
philpem@49 46
philpem@49 47 // Clear data register
philpem@49 48 ctx->data_reg = 0;
philpem@49 49
philpem@49 50 // Last step direction
philpem@49 51 ctx->last_step_dir = -1;
philpem@48 52
philpem@48 53 // No disc image loaded
philpem@48 54 ctx->disc_image = NULL;
philpem@49 55 ctx->geom_secsz = ctx->geom_spt = ctx->geom_heads = ctx->geom_tracks = 0;
philpem@48 56 }
philpem@48 57
philpem@48 58
philpem@49 59 void wd2797_reset(WD2797_CTX *ctx)
philpem@49 60 {
philpem@49 61 // track, head and sector unknown
philpem@49 62 ctx->track = ctx->head = ctx->sector = 0;
philpem@49 63
philpem@49 64 // no IRQ pending
philpem@49 65 ctx->irql = ctx->irqe = false;
philpem@49 66
philpem@49 67 // no data available
philpem@49 68 ctx->data_pos = ctx->data_len = 0;
philpem@49 69
philpem@49 70 // Status register clear, not busy
philpem@49 71 ctx->status = 0;
philpem@49 72
philpem@49 73 // Clear data register
philpem@49 74 ctx->data_reg = 0;
philpem@49 75
philpem@49 76 // Last step direction
philpem@49 77 ctx->last_step_dir = -1;
philpem@49 78 }
philpem@49 79
philpem@49 80
philpem@49 81 void wd2797_done(WD2797_CTX *ctx)
philpem@49 82 {
philpem@49 83 // Reset the WD2797
philpem@49 84 wd2797_reset(ctx);
philpem@49 85
philpem@49 86 // Free any allocated memory
philpem@49 87 if (ctx->data) {
philpem@49 88 free(ctx->data);
philpem@49 89 ctx->data = NULL;
philpem@49 90 }
philpem@49 91 }
philpem@49 92
philpem@49 93
philpem@49 94 bool wd2797_get_irq(WD2797_CTX *ctx)
philpem@48 95 {
philpem@48 96 // If an IRQ is pending, clear it and return true, otherwise return false
philpem@48 97 if (ctx->irqe) {
philpem@48 98 ctx->irqe = false;
philpem@48 99 return true;
philpem@48 100 } else {
philpem@48 101 return false;
philpem@48 102 }
philpem@48 103 }
philpem@48 104
philpem@48 105
philpem@49 106 bool wd2797_get_drq(WD2797_CTX *ctx)
philpem@48 107 {
philpem@48 108 return (ctx->data_pos < ctx->data_len);
philpem@48 109 }
philpem@48 110
philpem@48 111
philpem@49 112 WD2797_ERR wd2797_load(WD2797_CTX *ctx, FILE *fp, int secsz, int spt, int heads)
philpem@49 113 {
philpem@49 114 size_t filesize;
philpem@49 115
philpem@49 116 // Start by finding out how big the image file is
philpem@49 117 fseek(fp, 0, SEEK_END);
philpem@49 118 filesize = ftell(fp);
philpem@49 119 fseek(fp, 0, SEEK_SET);
philpem@49 120
philpem@49 121 // Now figure out how many tracks it contains
philpem@49 122 int tracks = filesize / secsz / spt / heads;
philpem@49 123 // Confirm...
philpem@49 124 if (tracks < 1) {
philpem@49 125 return WD2797_ERR_BAD_GEOM;
philpem@49 126 }
philpem@49 127
philpem@49 128 // Allocate enough memory to store one disc track
philpem@49 129 if (ctx->data) {
philpem@49 130 free(ctx->data);
philpem@49 131 }
philpem@49 132 ctx->data = malloc(secsz * spt);
philpem@49 133 if (!ctx->data)
philpem@49 134 return WD2797_ERR_NO_MEMORY;
philpem@49 135
philpem@49 136 // Load the image and the geometry data
philpem@49 137 ctx->disc_image = fp;
philpem@49 138 ctx->geom_tracks = tracks;
philpem@49 139 ctx->geom_secsz = secsz;
philpem@49 140 ctx->geom_heads = heads;
philpem@49 141 ctx->geom_spt = spt;
philpem@49 142
philpem@49 143 return WD2797_ERR_OK;
philpem@49 144 }
philpem@49 145
philpem@49 146
philpem@49 147 void wd2797_unload(WD2797_CTX *ctx)
philpem@49 148 {
philpem@49 149 // Free memory buffer
philpem@49 150 if (ctx->data) {
philpem@49 151 free(ctx->data);
philpem@49 152 ctx->data = NULL;
philpem@49 153 }
philpem@49 154
philpem@49 155 // Clear file pointer
philpem@49 156 ctx->disc_image = NULL;
philpem@49 157
philpem@49 158 // Clear the disc geometry
philpem@49 159 ctx->geom_tracks = ctx->geom_secsz = ctx->geom_spt = ctx->geom_heads = 0;
philpem@49 160 }
philpem@49 161
philpem@49 162
philpem@49 163 uint8_t wd2797_read_reg(WD2797_CTX *ctx, uint8_t addr)
philpem@48 164 {
philpem@48 165 uint8_t temp = 0;
philpem@48 166
philpem@48 167 switch (addr & 0x03) {
philpem@49 168 case WD2797_REG_STATUS: // Status register
philpem@48 169 // Read from status register clears IRQ
philpem@48 170 ctx->irql = false;
philpem@53 171 ctx->irqe = false;
philpem@48 172
philpem@48 173 // Get current status flags (set by last command)
philpem@48 174 // DRQ bit
philpem@53 175 if (ctx->cmd_has_drq) {
philpem@53 176 temp = ctx->status & ~0x03;
philpem@48 177 temp |= (ctx->data_pos < ctx->data_len) ? 0x02 : 0x00;
philpem@71 178 LOG("\tWDFDC rd sr, has drq, pos=%lu len=%lu, sr=0x%02X", ctx->data_pos, ctx->data_len, temp);
philpem@53 179 } else {
philpem@53 180 temp = ctx->status & ~0x01;
philpem@53 181 }
philpem@48 182 // FDC is busy if there is still data in the buffer
philpem@48 183 temp |= (ctx->data_pos < ctx->data_len) ? 0x01 : 0x00; // if data in buffer, then DMA hasn't copied it yet, and we're still busy!
philpem@49 184 // TODO: also if seek delay / read delay hasn't passed (but that's for later)
philpem@48 185 return temp;
philpem@48 186
philpem@49 187 case WD2797_REG_TRACK: // Track register
philpem@48 188 return ctx->track;
philpem@48 189
philpem@49 190 case WD2797_REG_SECTOR: // Sector register
philpem@48 191 return ctx->sector;
philpem@48 192
philpem@49 193 case WD2797_REG_DATA: // Data register
philpem@48 194 // If there's data in the buffer, return it. Otherwise return 0xFF.
philpem@48 195 if (ctx->data_pos < ctx->data_len) {
philpem@53 196 // set IRQ if this is the last data byte
philpem@53 197 if (ctx->data_pos == (ctx->data_len-1)) {
philpem@53 198 // Set IRQ only if IRQL has been cleared (no pending IRQs)
philpem@53 199 ctx->irqe = ctx->irql ? ctx->irqe : true;
philpem@53 200 ctx->irql = true;
philpem@53 201 }
philpem@48 202 // return data byte and increment pointer
philpem@48 203 return ctx->data[ctx->data_pos++];
philpem@48 204 } else {
philpem@53 205 // command finished
philpem@48 206 return 0xff;
philpem@48 207 }
philpem@48 208
philpem@48 209 default:
philpem@48 210 // shut up annoying compilers which don't recognise unreachable code when they see it
philpem@48 211 // (here's looking at you, gcc!)
philpem@48 212 return 0xff;
philpem@48 213 }
philpem@48 214 }
philpem@48 215
philpem@48 216
philpem@49 217 void wd2797_write_reg(WD2797_CTX *ctx, uint8_t addr, uint8_t val)
philpem@48 218 {
philpem@48 219 uint8_t cmd = val & CMD_MASK;
philpem@48 220 size_t lba;
philpem@48 221 bool is_type1 = false;
philpem@49 222 int temp;
philpem@48 223
philpem@53 224 m68k_end_timeslice();
philpem@53 225
philpem@48 226 switch (addr) {
philpem@49 227 case WD2797_REG_COMMAND: // Command register
philpem@48 228 // write to command register clears interrupt request
philpem@48 229 ctx->irql = false;
philpem@48 230
philpem@48 231 // Is the drive ready?
philpem@48 232 if (ctx->disc_image == NULL) {
philpem@48 233 // No disc image, thus the drive is busy.
philpem@48 234 ctx->status = 0x80;
philpem@48 235 return;
philpem@48 236 }
philpem@48 237
philpem@48 238 // Handle Type 1 commands
philpem@48 239 switch (cmd) {
philpem@48 240 case CMD_RESTORE:
philpem@48 241 // Restore. Set track to 0 and throw an IRQ.
philpem@48 242 is_type1 = true;
philpem@48 243 ctx->track = 0;
philpem@48 244 break;
philpem@48 245
philpem@48 246 case CMD_SEEK:
philpem@48 247 // Seek. Seek to the track specced in the Data Register.
philpem@48 248 is_type1 = true;
philpem@48 249 if (ctx->data_reg < ctx->geom_tracks) {
philpem@48 250 ctx->track = ctx->data_reg;
philpem@48 251 } else {
philpem@48 252 // Seek error. :(
philpem@48 253 ctx->status = 0x10;
philpem@48 254 }
philpem@48 255
philpem@48 256 case CMD_STEP:
philpem@48 257 // TODO! deal with trk0!
philpem@48 258 // Need to keep a copy of the track register; when it hits 0, set the TRK0 flag.
philpem@48 259 is_type1 = true;
philpem@48 260 break;
philpem@48 261
philpem@48 262 case CMD_STEPIN:
philpem@48 263 case CMD_STEPOUT:
philpem@48 264 // TODO! deal with trk0!
philpem@48 265 // Need to keep a copy of the track register; when it hits 0, set the TRK0 flag.
philpem@48 266 if (cmd == CMD_STEPIN) {
philpem@48 267 ctx->last_step_dir = 1;
philpem@48 268 } else {
philpem@48 269 ctx->last_step_dir = -1;
philpem@48 270 }
philpem@48 271 is_type1 = true;
philpem@48 272 break;
philpem@48 273
philpem@48 274 case CMD_STEP_TU:
philpem@48 275 case CMD_STEPIN_TU:
philpem@48 276 case CMD_STEPOUT_TU:
philpem@48 277 // if this is a Step In or Step Out cmd, set the step-direction
philpem@48 278 if (cmd == CMD_STEPIN_TU) {
philpem@48 279 ctx->last_step_dir = 1;
philpem@48 280 } else if (cmd == CMD_STEPOUT_TU) {
philpem@48 281 ctx->last_step_dir = -1;
philpem@48 282 }
philpem@48 283
philpem@48 284 // Seek one step in the last direction used.
philpem@48 285 ctx->track += ctx->last_step_dir;
philpem@48 286 if (ctx->track < 0) ctx->track = 0;
philpem@48 287 if (ctx->track >= ctx->geom_tracks) {
philpem@48 288 // Seek past end of disc... that'll be a Seek Error then.
philpem@48 289 ctx->status = 0x10;
philpem@48 290 ctx->track = ctx->geom_tracks - 1;
philpem@48 291 }
philpem@48 292 is_type1 = true;
philpem@48 293 break;
philpem@48 294
philpem@48 295 default:
philpem@48 296 break;
philpem@48 297 }
philpem@48 298
philpem@48 299 if (is_type1) {
philpem@48 300 // Terminate any sector reads or writes
philpem@48 301 ctx->data_len = ctx->data_pos = 0;
philpem@48 302
philpem@48 303 // No DRQ bit for these commands.
philpem@48 304 ctx->cmd_has_drq = false;
philpem@48 305
philpem@48 306 // Type1 status byte...
philpem@48 307 ctx->status = 0;
philpem@48 308 // S7 = Not Ready. Command executed, therefore the drive was ready... :)
philpem@48 309 // S6 = Write Protect. TODO: add this
philpem@48 310 // S5 = Head Loaded. For certain emulation-related reasons, the heads are always loaded...
philpem@48 311 ctx->status |= 0x20;
philpem@48 312 // S4 = Seek Error. Not bloody likely if we got down here...!
philpem@48 313 // S3 = CRC Error. Not gonna happen on a disc image!
philpem@48 314 // S2 = Track 0
philpem@48 315 ctx->status |= (ctx->track == 0) ? 0x04 : 0x00;
philpem@48 316 // S1 = Index Pulse. TODO -- need periodics to emulate this
philpem@48 317 // S0 = Busy. We just exec'd the command, thus we're not busy.
philpem@48 318 // TODO: Set a timer for seeks, and ONLY clear BUSY when that timer expires. Need periodics for that.
philpem@48 319
philpem@48 320 // Set IRQ only if IRQL has been cleared (no pending IRQs)
philpem@53 321 ctx->irqe = ctx->irql ? ctx->irqe : true;
philpem@48 322 ctx->irql = true;
philpem@48 323 return;
philpem@48 324 }
philpem@48 325
philpem@48 326 // That's the Type 1 (seek) commands sorted. Now for the others.
philpem@48 327
philpem@53 328 // All these commands return the DRQ bit...
philpem@53 329 ctx->cmd_has_drq = true;
philpem@53 330
philpem@48 331 // If drive isn't ready, then set status B7 and exit
philpem@48 332 if (ctx->disc_image == NULL) {
philpem@48 333 ctx->status = 0x80;
philpem@48 334 return;
philpem@48 335 }
philpem@48 336
philpem@48 337 // If this is a Write command, check write protect status too
philpem@48 338 // TODO!
philpem@48 339 if (false) {
philpem@48 340 // Write protected disc...
philpem@48 341 if ((cmd == CMD_WRITE_SECTOR) || (cmd == CMD_WRITE_SECTOR_MULTI) || (cmd == CMD_FORMAT_TRACK)) {
philpem@48 342 // Set Write Protect bit and bail.
philpem@48 343 ctx->status = 0x40;
philpem@48 344
philpem@48 345 // Set IRQ only if IRQL has been cleared (no pending IRQs)
philpem@53 346 ctx->irqe = ctx->irql ? ctx->irqe : true;
philpem@48 347 ctx->irql = true;
philpem@48 348
philpem@48 349 return;
philpem@48 350 }
philpem@48 351 }
philpem@48 352
philpem@48 353 // Disc is ready to go. Parse the command word.
philpem@48 354 switch (cmd) {
philpem@48 355 case CMD_READ_ADDRESS:
philpem@48 356 // Read Address
philpem@54 357 ctx->head = (val & 0x02) ? 1 : 0;
philpem@48 358
philpem@48 359 // reset data pointers
philpem@48 360 ctx->data_pos = ctx->data_len = 0;
philpem@48 361
philpem@48 362 // load data buffer
philpem@48 363 ctx->data[ctx->data_len++] = ctx->track;
philpem@48 364 ctx->data[ctx->data_len++] = ctx->head;
philpem@48 365 ctx->data[ctx->data_len++] = ctx->sector;
philpem@48 366 switch (ctx->geom_secsz) {
philpem@48 367 case 128: ctx->data[ctx->data_len++] = 0; break;
philpem@48 368 case 256: ctx->data[ctx->data_len++] = 1; break;
philpem@48 369 case 512: ctx->data[ctx->data_len++] = 2; break;
philpem@48 370 case 1024: ctx->data[ctx->data_len++] = 3; break;
philpem@48 371 default: ctx->data[ctx->data_len++] = 0xFF; break; // TODO: deal with invalid values better
philpem@48 372 }
philpem@48 373 ctx->data[ctx->data_len++] = 0; // TODO: IDAM CRC!
philpem@48 374 ctx->data[ctx->data_len++] = 0;
philpem@48 375
philpem@53 376 ctx->status = 0;
philpem@48 377 // B6, B5 = 0
philpem@48 378 // B4 = Record Not Found. We're not going to see this... FIXME-not emulated
philpem@48 379 // B3 = CRC Error. Not possible.
philpem@48 380 // B2 = Lost Data. Caused if DRQ isn't serviced in time. FIXME-not emulated
philpem@48 381 // B1 = DRQ. Data request.
philpem@48 382 ctx->status |= (ctx->data_pos < ctx->data_len) ? 0x02 : 0x00;
philpem@48 383 break;
philpem@48 384
philpem@48 385 case CMD_READ_SECTOR:
philpem@48 386 case CMD_READ_SECTOR_MULTI:
philpem@54 387 ctx->head = (val & 0x02) ? 1 : 0;
philpem@71 388 LOG("WD279X: READ SECTOR cmd=%02X chs=%d:%d:%d", cmd, ctx->track, ctx->head, ctx->sector);
philpem@48 389 // Read Sector or Read Sector Multiple
philpem@57 390
philpem@57 391 // Check to see if the cyl, hd and sec are valid
philpem@57 392 if ((ctx->track > (ctx->geom_tracks-1)) || (ctx->head > (ctx->geom_heads-1)) || (ctx->sector > ctx->geom_spt) || (ctx->sector == 0)) {
philpem@71 393 LOG("*** WD2797 ALERT: CHS parameter limit exceeded! CHS=%d:%d:%d, maxCHS=%d:%d:%d",
philpem@57 394 ctx->track, ctx->head, ctx->sector,
philpem@57 395 ctx->geom_tracks-1, ctx->geom_heads-1, ctx->geom_spt);
philpem@57 396 // CHS parameters exceed limits
philpem@57 397 ctx->status = 0x10; // Record Not Found
philpem@57 398 break;
philpem@57 399 // Set IRQ only if IRQL has been cleared (no pending IRQs)
philpem@57 400 ctx->irqe = ctx->irql ? ctx->irqe : true;
philpem@57 401 ctx->irql = true;
philpem@57 402 }
philpem@57 403
philpem@48 404 // reset data pointers
philpem@48 405 ctx->data_pos = ctx->data_len = 0;
philpem@48 406
philpem@49 407 // Calculate number of sectors to read from disc
philpem@49 408 if (cmd == CMD_READ_SECTOR_MULTI)
philpem@49 409 temp = ctx->geom_spt;
philpem@49 410 else
philpem@49 411 temp = 1;
philpem@48 412
philpem@49 413 for (int i=0; i<temp; i++) {
philpem@49 414 // Calculate the LBA address of the required sector
philpem@57 415 // lba = ((((ctx->track * ctx->geom_heads) + ctx->head) * ctx->geom_spt) + ((ctx->sector + i - 1) % ctx->geom_spt)) * ctx->geom_secsz;
philpem@57 416 // LBA = (C * nHeads * nSectors) + (H * nSectors) + S - 1
philpem@57 417 lba = (((ctx->track * ctx->geom_heads * ctx->geom_spt) + (ctx->head * ctx->geom_spt) + ctx->sector) + i) - 1;
philpem@57 418 // convert LBA to byte address
philpem@57 419 lba *= ctx->geom_secsz;
philpem@71 420 LOG("\tREAD lba = %lu", lba);
philpem@49 421
philpem@49 422 // Read the sector from the file
philpem@49 423 fseek(ctx->disc_image, lba, SEEK_SET);
philpem@71 424 // TODO: check fread return value! if < secsz, BAIL! (call it a crc error or secnotfound maybe? also log to stderr)
philpem@49 425 ctx->data_len += fread(&ctx->data[ctx->data_len], 1, ctx->geom_secsz, ctx->disc_image);
philpem@71 426 LOG("\tREAD len=%lu, pos=%lu, ssz=%d", ctx->data_len, ctx->data_pos, ctx->geom_secsz);
philpem@49 427 }
philpem@48 428
philpem@53 429 ctx->status = 0;
philpem@48 430 // B6 = 0
philpem@48 431 // B5 = Record Type -- 1 = deleted, 0 = normal. We can't emulate anything but normal data blocks.
philpem@57 432 // B4 = Record Not Found. Basically, the CHS parameters are bullcrap.
philpem@48 433 // B3 = CRC Error. Not possible.
philpem@48 434 // B2 = Lost Data. Caused if DRQ isn't serviced in time. FIXME-not emulated
philpem@48 435 // B1 = DRQ. Data request.
philpem@48 436 ctx->status |= (ctx->data_pos < ctx->data_len) ? 0x02 : 0x00;
philpem@48 437 break;
philpem@48 438
philpem@48 439 case CMD_READ_TRACK:
philpem@48 440 // Read Track
philpem@49 441 // TODO! implement this
philpem@54 442 ctx->head = (val & 0x02) ? 1 : 0;
philpem@53 443 ctx->status = 0;
philpem@48 444 // B6, B5, B4, B3 = 0
philpem@48 445 // B2 = Lost Data. Caused if DRQ isn't serviced in time. FIXME-not emulated
philpem@48 446 // B1 = DRQ. Data request.
philpem@48 447 ctx->status |= (ctx->data_pos < ctx->data_len) ? 0x02 : 0x00;
philpem@48 448 break;
philpem@48 449
philpem@48 450 case CMD_WRITE_SECTOR:
philpem@48 451 case CMD_WRITE_SECTOR_MULTI:
philpem@48 452 // Write Sector or Write Sector Multiple
philpem@48 453
philpem@54 454 ctx->head = (val & 0x02) ? 1 : 0;
philpem@48 455 // reset data pointers
philpem@48 456 ctx->data_pos = ctx->data_len = 0;
philpem@48 457
philpem@48 458 // TODO: set "write pending" flag, and write LBA, and go from there.
philpem@48 459
philpem@53 460 ctx->status = 0;
philpem@48 461 // B6 = Write Protect. FIXME -- emulate this!
philpem@48 462 // B5 = 0
philpem@48 463 // B4 = Record Not Found. We're not going to see this... FIXME-not emulated
philpem@48 464 // B3 = CRC Error. Not possible.
philpem@48 465 // B2 = Lost Data. Caused if DRQ isn't serviced in time. FIXME-not emulated
philpem@48 466 // B1 = DRQ. Data request.
philpem@48 467 ctx->status |= (ctx->data_pos < ctx->data_len) ? 0x02 : 0x00;
philpem@48 468 break;
philpem@48 469
philpem@48 470 case CMD_FORMAT_TRACK:
philpem@48 471 // Write Track (aka Format Track)
philpem@54 472 ctx->head = (val & 0x02) ? 1 : 0;
philpem@53 473 ctx->status = 0;
philpem@48 474 // B6 = Write Protect. FIXME -- emulate this!
philpem@48 475 // B5, B4, B3 = 0
philpem@48 476 // B2 = Lost Data. Caused if DRQ isn't serviced in time. FIXME-not emulated
philpem@48 477 // B1 = DRQ. Data request.
philpem@48 478 ctx->status |= (ctx->data_pos < ctx->data_len) ? 0x02 : 0x00;
philpem@48 479 break;
philpem@48 480
philpem@48 481 case CMD_FORCE_INTERRUPT:
philpem@48 482 // Force Interrupt...
philpem@49 483 // Terminates current operation and sends an interrupt
philpem@49 484 // TODO!
philpem@53 485 ctx->status = 0;
philpem@49 486 ctx->data_pos = ctx->data_len = 0;
philpem@49 487 // Set IRQ only if IRQL has been cleared (no pending IRQs)
philpem@53 488 ctx->irqe = ctx->irql ? ctx->irqe : true;
philpem@49 489 ctx->irql = true;
philpem@48 490 break;
philpem@48 491 }
philpem@48 492 break;
philpem@48 493
philpem@49 494 case WD2797_REG_TRACK: // Track register
philpem@48 495 ctx->track = val;
philpem@48 496 break;
philpem@48 497
philpem@49 498 case WD2797_REG_SECTOR: // Sector register
philpem@48 499 ctx->sector = val;
philpem@48 500 break;
philpem@48 501
philpem@49 502 case WD2797_REG_DATA: // Data register
philpem@48 503 // Save the value written into the data register
philpem@48 504 ctx->data_reg = val;
philpem@48 505
philpem@48 506 // If we're processing a write command, and there's space in the
philpem@48 507 // buffer, allow the write.
philpem@48 508 if (ctx->data_pos < ctx->data_len) {
philpem@53 509 // set IRQ if this is the last data byte
philpem@53 510 if (ctx->data_pos == (ctx->data_len-1)) {
philpem@53 511 // Set IRQ only if IRQL has been cleared (no pending IRQs)
philpem@53 512 ctx->irqe = ctx->irql ? ctx->irqe : true;
philpem@53 513 ctx->irql = true;
philpem@53 514 }
philpem@53 515
philpem@48 516 // store data byte and increment pointer
philpem@48 517 ctx->data[ctx->data_pos++] = val;
philpem@48 518 }
philpem@48 519 break;
philpem@48 520 }
philpem@48 521 }
philpem@48 522