fdc.c 56.2 KB
Newer Older
B
bellard 已提交
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
/*
 * QEMU Floppy disk emulator
 * 
 * Copyright (c) 2003 Jocelyn Mayer
 * 
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
#include "vl.h"

/********************************************************/
/* debug Floppy devices */
//#define DEBUG_FLOPPY

#ifdef DEBUG_FLOPPY
#define FLOPPY_DPRINTF(fmt, args...) \
do { printf("FLOPPY: " fmt , ##args); } while (0)
#else
#define FLOPPY_DPRINTF(fmt, args...)
#endif

#define FLOPPY_ERROR(fmt, args...) \
do { printf("FLOPPY ERROR: %s: " fmt, __func__ , ##args); } while (0)

/********************************************************/
/* Floppy drive emulation                               */

/* Will always be a fixed parameter for us */
#define FD_SECTOR_LEN 512
#define FD_SECTOR_SC  2   /* Sector size code */

/* Floppy disk drive emulation */
typedef enum fdisk_type_t {
    FDRIVE_DISK_288   = 0x01, /* 2.88 MB disk           */
    FDRIVE_DISK_144   = 0x02, /* 1.44 MB disk           */
    FDRIVE_DISK_720   = 0x03, /* 720 kB disk            */
52 53
    FDRIVE_DISK_USER  = 0x04, /* User defined geometry  */
    FDRIVE_DISK_NONE  = 0x05, /* No disk                */
B
bellard 已提交
54 55 56 57 58 59 60 61 62
} fdisk_type_t;

typedef enum fdrive_type_t {
    FDRIVE_DRV_144  = 0x00,   /* 1.44 MB 3"5 drive      */
    FDRIVE_DRV_288  = 0x01,   /* 2.88 MB 3"5 drive      */
    FDRIVE_DRV_120  = 0x02,   /* 1.2  MB 5"25 drive     */
    FDRIVE_DRV_NONE = 0x03,   /* No drive connected     */
} fdrive_type_t;

63 64 65 66 67 68 69 70 71
typedef enum fdrive_flags_t {
    FDRIVE_MOTOR_ON   = 0x01, /* motor on/off           */
    FDRIVE_REVALIDATE = 0x02, /* Revalidated            */
} fdrive_flags_t;

typedef enum fdisk_flags_t {
    FDISK_DBL_SIDES  = 0x01,
} fdisk_flags_t;

B
bellard 已提交
72 73 74 75
typedef struct fdrive_t {
    BlockDriverState *bs;
    /* Drive status */
    fdrive_type_t drive;
76
    fdrive_flags_t drflags;
B
bellard 已提交
77 78 79 80 81 82 83 84 85 86
    uint8_t perpendicular;    /* 2.88 MB access mode    */
    /* Position */
    uint8_t head;
    uint8_t track;
    uint8_t sect;
    /* Last operation status */
    uint8_t dir;              /* Direction              */
    uint8_t rw;               /* Read/write             */
    /* Media */
    fdisk_type_t disk;        /* Disk type              */
87
    fdisk_flags_t flags;
B
bellard 已提交
88 89
    uint8_t last_sect;        /* Nb sector per track    */
    uint8_t max_track;        /* Nb of tracks           */
90
    uint16_t bps;             /* Bytes per sector       */
B
bellard 已提交
91 92 93
    uint8_t ro;               /* Is read-only           */
} fdrive_t;

94
static void fd_init (fdrive_t *drv, BlockDriverState *bs)
B
bellard 已提交
95 96
{
    /* Drive */
97 98 99 100 101
    drv->bs = bs;
    if (bs)
        drv->drive = FDRIVE_DRV_144;
    else
        drv->drive = FDRIVE_DRV_NONE;
102
    drv->drflags = 0;
B
bellard 已提交
103 104 105
    drv->perpendicular = 0;
    /* Disk */
    drv->disk = FDRIVE_DISK_NONE;
106
    drv->last_sect = 0;
B
bellard 已提交
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
    drv->max_track = 0;
}

static int _fd_sector (uint8_t head, uint8_t track,
                        uint8_t sect, uint8_t last_sect)
{
    return (((track * 2) + head) * last_sect) + sect - 1;
}

/* Returns current position, in sectors, for given drive */
static int fd_sector (fdrive_t *drv)
{
    return _fd_sector(drv->head, drv->track, drv->sect, drv->last_sect);
}

static int fd_seek (fdrive_t *drv, uint8_t head, uint8_t track, uint8_t sect,
                    int enable_seek)
{
    uint32_t sector;
126 127 128 129 130 131 132 133
    int ret;

    if (track > drv->max_track ||
	(head != 0 && (drv->flags & FDISK_DBL_SIDES) == 0)) {
        FLOPPY_ERROR("try to read %d %02x %02x (max=%d %d %02x %02x)\n",
                     head, track, sect, 1,
		     (drv->flags & FDISK_DBL_SIDES) == 0 ? 0 : 1,
		     drv->max_track, drv->last_sect);
B
bellard 已提交
134 135 136
        return 2;
    }
    if (sect > drv->last_sect) {
137 138 139 140
        FLOPPY_ERROR("try to read %d %02x %02x (max=%d %d %02x %02x)\n",
                     head, track, sect, 1,
		     (drv->flags & FDISK_DBL_SIDES) == 0 ? 0 : 1,
		     drv->max_track, drv->last_sect);
B
bellard 已提交
141 142 143
        return 3;
    }
    sector = _fd_sector(head, track, sect, drv->last_sect);
144
    ret = 0;
B
bellard 已提交
145 146 147 148 149 150 151 152 153
    if (sector != fd_sector(drv)) {
#if 0
        if (!enable_seek) {
            FLOPPY_ERROR("no implicit seek %d %02x %02x (max=%d %02x %02x)\n",
                         head, track, sect, 1, drv->max_track, drv->last_sect);
            return 4;
        }
#endif
        drv->head = head;
154 155
	if (drv->track != track)
	    ret = 1;
B
bellard 已提交
156 157 158 159
        drv->track = track;
        drv->sect = sect;
    }

160
    return ret;
B
bellard 已提交
161 162 163 164 165 166 167 168 169 170 171 172 173 174
}

/* Set drive back to track 0 */
static void fd_recalibrate (fdrive_t *drv)
{
    FLOPPY_DPRINTF("recalibrate\n");
    drv->head = 0;
    drv->track = 0;
    drv->sect = 1;
    drv->dir = 1;
    drv->rw = 0;
}

/* Revalidate a disk drive after a disk change */
175
static void fd_revalidate (fdrive_t *drv)
B
bellard 已提交
176 177
{
    int64_t nb_sectors;
178
    int nb_heads, max_track, last_sect, ro;
B
bellard 已提交
179 180

    FLOPPY_DPRINTF("revalidate\n");
181 182
    drv->drflags &= ~FDRIVE_REVALIDATE;

183 184 185
    /* if no drive present, cannot do more */
    if (!drv->bs)
        return;
186

187
    if (bdrv_is_inserted(drv->bs)) {
188 189 190 191 192 193 194 195 196 197 198 199 200 201
	ro = bdrv_is_read_only(drv->bs);
	bdrv_get_geometry_hint(drv->bs, &max_track, &nb_heads, &last_sect);
	if (nb_heads != 0 && max_track != 0 && last_sect != 0) {
	    drv->disk = FDRIVE_DISK_USER;
	    printf("User defined disk (%d %d %d)",
		   nb_heads - 1, max_track, last_sect);
	    if (nb_heads == 1) {
		drv->flags &= ~FDISK_DBL_SIDES;
	    } else {
		drv->flags |= FDISK_DBL_SIDES;
	    }
	    drv->max_track = max_track;
	    drv->last_sect = last_sect;
	} else {
B
bellard 已提交
202
        bdrv_get_geometry(drv->bs, &nb_sectors);
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
	    switch (nb_sectors) {
            /* 2.88 MB 3"1/2 drive disks */
	    case 7680:
		printf("3.84 Mb 3\"1/2 disk (1 80 48)");
		drv->drive = FDRIVE_DRV_288;
		drv->disk = FDRIVE_DISK_288;
		drv->last_sect = 48;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 7040:
		printf("3.52 Mb 3\"1/2 disk (1 80 44)");
		drv->drive = FDRIVE_DRV_288;
		drv->disk = FDRIVE_DISK_288;
		drv->last_sect = 44;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 6400:
		printf("3.2 Mb 3\"1/2 disk (1 80 40)");
		drv->drive = FDRIVE_DRV_288;
		drv->disk = FDRIVE_DISK_288;
		drv->last_sect = 40;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 6240:
		printf("3.12 Mb 3\"1/2 disk (1 80 39)");
		drv->drive = FDRIVE_DRV_288;
		drv->disk = FDRIVE_DISK_288;
		drv->last_sect = 39;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 5760:
		printf("2.88 Mb 3\"1/2 disk (1 80 36)");
		drv->drive = FDRIVE_DRV_288;
B
bellard 已提交
240 241 242
            drv->disk = FDRIVE_DISK_288;
            drv->last_sect = 36;
            drv->max_track = 80;
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
		drv->flags |= FDISK_DBL_SIDES;
		break;

            /* 1.44 MB 3"1/2 drive disks */
	    case 3840:
		printf("1.92 Mb 3\"1/2 disk (1 80 24)");
		drv->drive = FDRIVE_DRV_144;
		drv->disk = FDRIVE_DISK_144;
		drv->last_sect = 24;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 3680:
		printf("1.84 Mb 3\"1/2 disk (1 80 23)");
		drv->drive = FDRIVE_DRV_144;
		drv->disk = FDRIVE_DISK_144;
		drv->last_sect = 23;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 3520:
		printf("1.76 Mb 3\"1/2 disk (1 80 22)");
		drv->drive = FDRIVE_DRV_144;
		drv->disk = FDRIVE_DISK_144;
		drv->last_sect = 22;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 3486:
		printf("1.74 Mb 3\"1/2 disk (1 83 21)");
		drv->drive = FDRIVE_DRV_144;
		drv->disk = FDRIVE_DISK_144;
		drv->last_sect = 21;
		drv->max_track = 83;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 3444:
		printf("1.72 Mb 3\"1/2 disk (1 82 21)");
		drv->drive = FDRIVE_DRV_144;
		drv->disk = FDRIVE_DISK_144;
		drv->last_sect = 21;
		drv->max_track = 82;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 3360:
		printf("1.68 Mb 3\"1/2 disk (1 80 21)");
		drv->drive = FDRIVE_DRV_144;
		drv->disk = FDRIVE_DISK_144;
		drv->last_sect = 21;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 3200:
		printf("1.6 Mb 3\"1/2 disk (1 80 20)");
		drv->drive = FDRIVE_DRV_144;
		drv->disk = FDRIVE_DISK_144;
		drv->last_sect = 20;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 2880:
	    default:
		printf("1.44 Mb 3\"1/2 disk (1 80 18)");
		drv->drive = FDRIVE_DRV_144;
B
bellard 已提交
307 308 309
            drv->disk = FDRIVE_DISK_144;
            drv->last_sect = 18;
            drv->max_track = 80;
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
		drv->flags |= FDISK_DBL_SIDES;
		break;

            /* 720 kB 3"1/2 drive disks */
	    case 2240:
		printf("1.12 Mb 3\"1/2 disk (1 80 14)");
		drv->drive = FDRIVE_DRV_144;
		drv->disk = FDRIVE_DISK_720;
		drv->last_sect = 14;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 2080:
		printf("1.04 Mb 3\"1/2 disk (1 80 13)");
		drv->drive = FDRIVE_DRV_144;
		drv->disk = FDRIVE_DISK_720;
		drv->last_sect = 13;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 1660:
		printf("830 kb 3\"1/2 disk (1 83 10)");
		drv->drive = FDRIVE_DRV_144;
		drv->disk = FDRIVE_DISK_720;
		drv->last_sect = 10;
		drv->max_track = 83;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 1640:
		printf("820 kb 3\"1/2 disk (1 82 10)");
		drv->drive = FDRIVE_DRV_144;
		drv->disk = FDRIVE_DISK_720;
		drv->last_sect = 10;
		drv->max_track = 82;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 1600:
		printf("800 kb 3\"1/2 disk (1 80 10)");
		drv->drive = FDRIVE_DRV_144;
		drv->disk = FDRIVE_DISK_720;
		drv->last_sect = 10;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 1440:
		printf("720 kb 3\"1/2 disk (1 80 9)");
		drv->drive = FDRIVE_DRV_144;
B
bellard 已提交
357 358 359
            drv->disk = FDRIVE_DISK_720;
            drv->last_sect = 9;
            drv->max_track = 80;
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
		drv->flags |= FDISK_DBL_SIDES;
		break;

	    /* 1.2 MB 5"1/4 drive disks */
	    case 2988:
		printf("1.49 Mb 5\"1/4 disk (1 83 18)");
		drv->drive = FDRIVE_DRV_120;
		drv->disk = FDRIVE_DISK_144; /* ? */
		drv->last_sect = 18;
		drv->max_track = 83;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 2952:
		printf("1.48 Mb 5\"1/4 disk (1 82 18)");
		drv->drive = FDRIVE_DRV_120;
		drv->disk = FDRIVE_DISK_144; /* ? */
		drv->last_sect = 18;
		drv->max_track = 82;
		drv->flags |= FDISK_DBL_SIDES;
		break;
	    case 2400:
		printf("1.2 Mb 5\"1/4 disk (1 80 15)");
		drv->drive = FDRIVE_DRV_120;
		drv->disk = FDRIVE_DISK_144; /* ? */
		drv->last_sect = 15;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;

	    case 1760:
		printf("880 kb 5\"1/4 disk (1 80 11)");
		drv->drive = FDRIVE_DRV_120;
		drv->disk = FDRIVE_DISK_144; /* ? */
		drv->last_sect = 11;
		drv->max_track = 80;
		drv->flags |= FDISK_DBL_SIDES;
		break;

	    /* 360 kB 5"1/4 drive disks */
	    case 840:
		/* 420 kB 5"1/4 disk */
		printf("420 kb 5\"1/4 disk (1 42 10)");
		drv->drive = FDRIVE_DRV_120;
		drv->disk = FDRIVE_DISK_144; /* ? */
		drv->last_sect = 10;
		drv->max_track = 42;
		drv->flags |= FDISK_DBL_SIDES;
	    case 820:
		/* 410 kB 5"1/4 disk */
		printf("410 kb 5\"1/4 disk (1 41 10)");
		drv->drive = FDRIVE_DRV_120;
		drv->disk = FDRIVE_DISK_144; /* ? */
		drv->last_sect = 10;
		drv->max_track = 41;
		drv->flags |= FDISK_DBL_SIDES;
	    case 720:
		/* 360 kB 5"1/4 disk */
		printf("360 kb 5\"1/4 disk (1 40 9)");
		drv->drive = FDRIVE_DRV_120;
		drv->disk = FDRIVE_DISK_144; /* ? */
		drv->last_sect = 9;
		drv->max_track = 40;
		drv->flags |= FDISK_DBL_SIDES;
		break;
B
bellard 已提交
424
        }
425 426 427
	    printf(" %s\n", ro == 0 ? "rw" : "ro");
	}
	drv->ro = ro;
B
bellard 已提交
428
    } else {
429
	printf("No disk in drive\n");
B
bellard 已提交
430
        drv->disk = FDRIVE_DISK_NONE;
431 432 433
        drv->last_sect = 0;
	drv->max_track = 0;
	drv->flags &= ~FDISK_DBL_SIDES;
B
bellard 已提交
434
    }
435
    drv->drflags |= FDRIVE_REVALIDATE;
436 437
}

B
bellard 已提交
438 439 440
/* Motor control */
static void fd_start (fdrive_t *drv)
{
441
    drv->drflags |= FDRIVE_MOTOR_ON;
B
bellard 已提交
442 443 444 445
}

static void fd_stop (fdrive_t *drv)
{
446
    drv->drflags &= ~FDRIVE_MOTOR_ON;
B
bellard 已提交
447 448 449 450 451 452 453 454 455 456 457 458
}

/* Re-initialise a drives (motor off, repositioned) */
static void fd_reset (fdrive_t *drv)
{
    fd_stop(drv);
    fd_recalibrate(drv);
}

/********************************************************/
/* Intel 82078 floppy disk controler emulation          */

459 460
static void fdctrl_reset (fdctrl_t *fdctrl, int do_irq);
static void fdctrl_reset_fifo (fdctrl_t *fdctrl);
461
static int fdctrl_transfer_handler (void *opaque, target_ulong addr, int size);
462 463 464 465 466 467 468 469 470 471 472 473
static void fdctrl_raise_irq (fdctrl_t *fdctrl, uint8_t status);

static uint32_t fdctrl_read_statusB (fdctrl_t *fdctrl);
static uint32_t fdctrl_read_dor (fdctrl_t *fdctrl);
static void fdctrl_write_dor (fdctrl_t *fdctrl, uint32_t value);
static uint32_t fdctrl_read_tape (fdctrl_t *fdctrl);
static void fdctrl_write_tape (fdctrl_t *fdctrl, uint32_t value);
static uint32_t fdctrl_read_main_status (fdctrl_t *fdctrl);
static void fdctrl_write_rate (fdctrl_t *fdctrl, uint32_t value);
static uint32_t fdctrl_read_data (fdctrl_t *fdctrl);
static void fdctrl_write_data (fdctrl_t *fdctrl, uint32_t value);
static uint32_t fdctrl_read_dir (fdctrl_t *fdctrl);
B
bellard 已提交
474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497

enum {
    FD_CTRL_ACTIVE = 0x01,
    FD_CTRL_RESET  = 0x02,
    FD_CTRL_SLEEP  = 0x04,
    FD_CTRL_BUSY   = 0x08,
    FD_CTRL_INTR   = 0x10,
};

enum {
    FD_DIR_WRITE   = 0,
    FD_DIR_READ    = 1,
    FD_DIR_SCANE   = 2,
    FD_DIR_SCANL   = 3,
    FD_DIR_SCANH   = 4,
};

enum {
    FD_STATE_CMD    = 0x00,
    FD_STATE_STATUS = 0x01,
    FD_STATE_DATA   = 0x02,
    FD_STATE_STATE  = 0x03,
    FD_STATE_MULTI  = 0x10,
    FD_STATE_SEEK   = 0x20,
498
    FD_STATE_FORMAT = 0x40,
B
bellard 已提交
499 500 501
};

#define FD_STATE(state) ((state) & FD_STATE_STATE)
502 503
#define FD_SET_STATE(state, new_state) \
do { (state) = ((state) & ~FD_STATE_STATE) | (new_state); } while (0)
B
bellard 已提交
504 505
#define FD_MULTI_TRACK(state) ((state) & FD_STATE_MULTI)
#define FD_DID_SEEK(state) ((state) & FD_STATE_SEEK)
506
#define FD_FORMAT_CMD(state) ((state) & FD_STATE_FORMAT)
B
bellard 已提交
507

508 509
struct fdctrl_t {
    fdctrl_t *fdctrl;
B
bellard 已提交
510 511 512 513 514
    /* Controler's identification */
    uint8_t version;
    /* HW */
    int irq_lvl;
    int dma_chann;
515
    uint32_t io_base;
B
bellard 已提交
516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
    /* Controler state */
    uint8_t state;
    uint8_t dma_en;
    uint8_t cur_drv;
    uint8_t bootsel;
    /* Command FIFO */
    uint8_t fifo[FD_SECTOR_LEN];
    uint32_t data_pos;
    uint32_t data_len;
    uint8_t data_state;
    uint8_t data_dir;
    uint8_t int_status;
    /* States kept only to be returned back */
    /* Timers state */
    uint8_t timer0;
    uint8_t timer1;
    /* precompensation */
    uint8_t precomp_trk;
    uint8_t config;
    uint8_t lock;
    /* Power down config (also with status regB access mode */
    uint8_t pwrd;
    /* Floppy drives */
    fdrive_t drives[2];
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
};

static uint32_t fdctrl_read (void *opaque, uint32_t reg)
{
    fdctrl_t *fdctrl = opaque;
    uint32_t retval;

    if (reg == fdctrl->io_base + 0x01)
	retval = fdctrl_read_statusB(fdctrl);
    else if (reg == fdctrl->io_base + 0x02)
	retval = fdctrl_read_dor(fdctrl);
    else if (reg == fdctrl->io_base + 0x03)
        retval = fdctrl_read_tape(fdctrl);
    else if (reg == fdctrl->io_base + 0x04)
        retval = fdctrl_read_main_status(fdctrl);
    else if (reg == fdctrl->io_base + 0x05)
        retval = fdctrl_read_data(fdctrl);
    else if (reg == fdctrl->io_base + 0x07)
        retval = fdctrl_read_dir(fdctrl);
    else 
	retval = (uint32_t)(-1);

    return retval;
}

static void fdctrl_write (void *opaque, uint32_t reg, uint32_t value)
{
    fdctrl_t *fdctrl = opaque;

    if (reg == fdctrl->io_base + 0x02)
	fdctrl_write_dor(fdctrl, value);
    else if (reg == fdctrl->io_base + 0x03)
        fdctrl_write_tape(fdctrl, value);
    else if (reg == fdctrl->io_base + 0x04)
        fdctrl_write_rate(fdctrl, value);
    else if (reg == fdctrl->io_base + 0x05)
        fdctrl_write_data(fdctrl, value);
}

static void fd_change_cb (void *opaque)
{
    fdrive_t *drv = opaque;
B
bellard 已提交
582

583 584 585 586 587 588 589 590 591
    FLOPPY_DPRINTF("disk change\n");
    /* TODO: use command-line parameters to force geometry */
    fd_revalidate(drv);
#if 0
    fd_recalibrate(drv);
    fdctrl_reset_fifo(drv->fdctrl);
    fdctrl_raise_irq(drv->fdctrl, 0x20);
#endif
}
B
bellard 已提交
592

593 594 595
fdctrl_t *fdctrl_init (int irq_lvl, int dma_chann, int mem_mapped, 
                       uint32_t io_base,
                       BlockDriverState **fds)
B
bellard 已提交
596
{
597
    fdctrl_t *fdctrl;
B
bellard 已提交
598 599 600 601
//    int io_mem;
    int i;

    FLOPPY_DPRINTF("init controler\n");
602 603 604 605 606 607 608 609 610 611 612
    fdctrl = qemu_mallocz(sizeof(fdctrl_t));
    if (!fdctrl)
        return NULL;
    fdctrl->version = 0x90; /* Intel 82078 controler */
    fdctrl->irq_lvl = irq_lvl;
    fdctrl->dma_chann = dma_chann;
    fdctrl->io_base = io_base;
    fdctrl->config = 0x40; /* Implicit seek, polling & FIFO enabled */
    if (fdctrl->dma_chann != -1) {
        fdctrl->dma_en = 1;
        DMA_register_channel(dma_chann, &fdctrl_transfer_handler, fdctrl);
B
bellard 已提交
613
    } else {
614
        fdctrl->dma_en = 0;
B
bellard 已提交
615
    }
616 617 618 619 620 621
    for (i = 0; i < 2; i++) {
        fd_init(&fdctrl->drives[i], fds[i]);
        if (fds[i]) {
            bdrv_set_change_cb(fds[i],
                               &fd_change_cb, &fdctrl->drives[i]);
        }
622
    }
623 624
    fdctrl_reset(fdctrl, 0);
    fdctrl->state = FD_CTRL_ACTIVE;
B
bellard 已提交
625 626 627 628 629 630 631
    if (mem_mapped) {
        FLOPPY_ERROR("memory mapped floppy not supported by now !\n");
#if 0
        io_mem = cpu_register_io_memory(0, fdctrl_mem_read, fdctrl_mem_write);
        cpu_register_physical_memory(base, 0x08, io_mem);
#endif
    } else {
632 633 634 635
        register_ioport_read(io_base + 0x01, 5, 1, &fdctrl_read, fdctrl);
        register_ioport_read(io_base + 0x07, 1, 1, &fdctrl_read, fdctrl);
        register_ioport_write(io_base + 0x01, 5, 1, &fdctrl_write, fdctrl);
        register_ioport_write(io_base + 0x07, 1, 1, &fdctrl_write, fdctrl);
B
bellard 已提交
636
    }
637
    for (i = 0; i < MAX_FD; i++) {
638
        fd_revalidate(&fdctrl->drives[i]);
B
bellard 已提交
639
    }
640
    return fdctrl;
641
}
B
bellard 已提交
642

643 644
/* XXX: may change if moved to bdrv */
int fdctrl_get_drive_type(fdctrl_t *fdctrl, int drive_num)
645
{
646
    return fdctrl->drives[drive_num].drive;
B
bellard 已提交
647 648 649
}

/* Change IRQ state */
650
static void fdctrl_reset_irq (fdctrl_t *fdctrl)
B
bellard 已提交
651
{
652 653 654
    if (fdctrl->state & FD_CTRL_INTR) {
        pic_set_irq(fdctrl->irq_lvl, 0);
        fdctrl->state &= ~(FD_CTRL_INTR | FD_CTRL_SLEEP | FD_CTRL_BUSY);
B
bellard 已提交
655 656 657
    }
}

658
static void fdctrl_raise_irq (fdctrl_t *fdctrl, uint8_t status)
B
bellard 已提交
659
{
660 661 662
    if (~(fdctrl->state & FD_CTRL_INTR)) {
        pic_set_irq(fdctrl->irq_lvl, 1);
        fdctrl->state |= FD_CTRL_INTR;
B
bellard 已提交
663 664
    }
    FLOPPY_DPRINTF("Set interrupt status to 0x%02x\n", status);
665
    fdctrl->int_status = status;
B
bellard 已提交
666 667 668
}

/* Reset controler */
669
static void fdctrl_reset (fdctrl_t *fdctrl, int do_irq)
B
bellard 已提交
670 671 672 673
{
    int i;

    FLOPPY_DPRINTF("reset controler\n");
674
    fdctrl_reset_irq(fdctrl);
B
bellard 已提交
675
    /* Initialise controler */
676
    fdctrl->cur_drv = 0;
B
bellard 已提交
677
    /* FIFO state */
678 679 680 681
    fdctrl->data_pos = 0;
    fdctrl->data_len = 0;
    fdctrl->data_state = FD_STATE_CMD;
    fdctrl->data_dir = FD_DIR_WRITE;
B
bellard 已提交
682
    for (i = 0; i < MAX_FD; i++)
683 684
        fd_reset(&fdctrl->drives[i]);
    fdctrl_reset_fifo(fdctrl);
B
bellard 已提交
685
    if (do_irq)
686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701
        fdctrl_raise_irq(fdctrl, 0x20);
}

static inline fdrive_t *drv0 (fdctrl_t *fdctrl)
{
    return &fdctrl->drives[fdctrl->bootsel];
}

static inline fdrive_t *drv1 (fdctrl_t *fdctrl)
{
    return &fdctrl->drives[1 - fdctrl->bootsel];
}

static fdrive_t *get_cur_drv (fdctrl_t *fdctrl)
{
    return fdctrl->cur_drv == 0 ? drv0(fdctrl) : drv1(fdctrl);
B
bellard 已提交
702 703 704
}

/* Status B register : 0x01 (read-only) */
705
static uint32_t fdctrl_read_statusB (fdctrl_t *fdctrl)
B
bellard 已提交
706
{
707
    fdctrl_reset_irq(fdctrl);
B
bellard 已提交
708 709 710 711 712 713
    FLOPPY_DPRINTF("status register: 0x00\n");

    return 0;
}

/* Digital output register : 0x02 */
714
static uint32_t fdctrl_read_dor (fdctrl_t *fdctrl)
B
bellard 已提交
715 716 717 718
{
    uint32_t retval = 0;

    /* Drive motors state indicators */
719 720 721 722
    if (drv0(fdctrl)->drflags & FDRIVE_MOTOR_ON)
	retval |= 1 << 5;
    if (drv1(fdctrl)->drflags & FDRIVE_MOTOR_ON)
	retval |= 1 << 4;
B
bellard 已提交
723
    /* DMA enable */
724
    retval |= fdctrl->dma_en << 3;
B
bellard 已提交
725
    /* Reset indicator */
726
    retval |= (fdctrl->state & FD_CTRL_RESET) == 0 ? 0x04 : 0;
B
bellard 已提交
727
    /* Selected drive */
728
    retval |= fdctrl->cur_drv;
B
bellard 已提交
729 730 731 732 733
    FLOPPY_DPRINTF("digital output register: 0x%02x\n", retval);

    return retval;
}

734
static void fdctrl_write_dor (fdctrl_t *fdctrl, uint32_t value)
B
bellard 已提交
735
{
736
    fdctrl_reset_irq(fdctrl);
B
bellard 已提交
737
    /* Reset mode */
738
    if (fdctrl->state & FD_CTRL_RESET) {
B
bellard 已提交
739 740 741 742 743 744 745 746
        if (!(value & 0x04)) {
            FLOPPY_DPRINTF("Floppy controler in RESET state !\n");
            return;
        }
    }
    FLOPPY_DPRINTF("digital output register set to 0x%02x\n", value);
    /* Drive motors state indicators */
    if (value & 0x20)
747
        fd_start(drv1(fdctrl));
B
bellard 已提交
748
    else
749
        fd_stop(drv1(fdctrl));
B
bellard 已提交
750
    if (value & 0x10)
751
        fd_start(drv0(fdctrl));
B
bellard 已提交
752
    else
753
        fd_stop(drv0(fdctrl));
B
bellard 已提交
754 755
    /* DMA enable */
#if 0
756 757
    if (fdctrl->dma_chann != -1)
        fdctrl->dma_en = 1 - ((value >> 3) & 1);
B
bellard 已提交
758 759 760
#endif
    /* Reset */
    if (!(value & 0x04)) {
761
        if (!(fdctrl->state & FD_CTRL_RESET)) {
B
bellard 已提交
762
            FLOPPY_DPRINTF("controler enter RESET state\n");
763 764
            fdctrl->state |= FD_CTRL_RESET;
            fdctrl_reset(fdctrl, 1);
B
bellard 已提交
765 766
        }
    } else {
767
        if (fdctrl->state & FD_CTRL_RESET) {
B
bellard 已提交
768
            FLOPPY_DPRINTF("controler out of RESET state\n");
769
            fdctrl->state &= ~(FD_CTRL_RESET | FD_CTRL_SLEEP);
B
bellard 已提交
770 771 772
        }
    }
    /* Selected drive */
773
    fdctrl->cur_drv = value & 1;
B
bellard 已提交
774 775 776
}

/* Tape drive register : 0x03 */
777
static uint32_t fdctrl_read_tape (fdctrl_t *fdctrl)
B
bellard 已提交
778 779 780
{
    uint32_t retval = 0;

781
    fdctrl_reset_irq(fdctrl);
B
bellard 已提交
782
    /* Disk boot selection indicator */
783
    retval |= fdctrl->bootsel << 2;
B
bellard 已提交
784 785 786 787 788 789
    /* Tape indicators: never allowed */
    FLOPPY_DPRINTF("tape drive register: 0x%02x\n", retval);

    return retval;
}

790
static void fdctrl_write_tape (fdctrl_t *fdctrl, uint32_t value)
B
bellard 已提交
791
{
792
    fdctrl_reset_irq(fdctrl);
B
bellard 已提交
793
    /* Reset mode */
794
    if (fdctrl->state & FD_CTRL_RESET) {
B
bellard 已提交
795 796 797 798 799
        FLOPPY_DPRINTF("Floppy controler in RESET state !\n");
        return;
    }
    FLOPPY_DPRINTF("tape drive register set to 0x%02x\n", value);
    /* Disk boot selection indicator */
800
    fdctrl->bootsel = (value >> 2) & 1;
B
bellard 已提交
801 802 803 804
    /* Tape indicators: never allow */
}

/* Main status register : 0x04 (read) */
805
static uint32_t fdctrl_read_main_status (fdctrl_t *fdctrl)
B
bellard 已提交
806 807 808
{
    uint32_t retval = 0;

809 810 811
    fdctrl_reset_irq(fdctrl);
    fdctrl->state &= ~(FD_CTRL_SLEEP | FD_CTRL_RESET);
    if (!(fdctrl->state & FD_CTRL_BUSY)) {
B
bellard 已提交
812 813 814
        /* Data transfer allowed */
        retval |= 0x80;
        /* Data transfer direction indicator */
815
        if (fdctrl->data_dir == FD_DIR_READ)
B
bellard 已提交
816 817 818 819
            retval |= 0x40;
    }
    /* Should handle 0x20 for SPECIFY command */
    /* Command busy indicator */
820 821
    if (FD_STATE(fdctrl->data_state) == FD_STATE_DATA ||
        FD_STATE(fdctrl->data_state) == FD_STATE_STATUS)
B
bellard 已提交
822 823 824 825 826 827 828
        retval |= 0x10;
    FLOPPY_DPRINTF("main status register: 0x%02x\n", retval);

    return retval;
}

/* Data select rate register : 0x04 (write) */
829
static void fdctrl_write_rate (fdctrl_t *fdctrl, uint32_t value)
B
bellard 已提交
830
{
831
    fdctrl_reset_irq(fdctrl);
B
bellard 已提交
832
    /* Reset mode */
833
    if (fdctrl->state & FD_CTRL_RESET) {
B
bellard 已提交
834 835 836 837 838 839
            FLOPPY_DPRINTF("Floppy controler in RESET state !\n");
            return;
        }
    FLOPPY_DPRINTF("select rate register set to 0x%02x\n", value);
    /* Reset: autoclear */
    if (value & 0x80) {
840 841 842
        fdctrl->state |= FD_CTRL_RESET;
        fdctrl_reset(fdctrl, 1);
        fdctrl->state &= ~FD_CTRL_RESET;
B
bellard 已提交
843 844
    }
    if (value & 0x40) {
845 846
        fdctrl->state |= FD_CTRL_SLEEP;
        fdctrl_reset(fdctrl, 1);
B
bellard 已提交
847 848 849 850 851
    }
//        fdctrl.precomp = (value >> 2) & 0x07;
}

/* Digital input register : 0x07 (read-only) */
852
static uint32_t fdctrl_read_dir (fdctrl_t *fdctrl)
B
bellard 已提交
853 854 855
{
    uint32_t retval = 0;

856 857 858
    fdctrl_reset_irq(fdctrl);
    if (drv0(fdctrl)->drflags & FDRIVE_REVALIDATE ||
	drv1(fdctrl)->drflags & FDRIVE_REVALIDATE)
B
bellard 已提交
859 860
        retval |= 0x80;
    if (retval != 0)
861 862 863
        FLOPPY_DPRINTF("Floppy digital input register: 0x%02x\n", retval);
    drv0(fdctrl)->drflags &= ~FDRIVE_REVALIDATE;
    drv1(fdctrl)->drflags &= ~FDRIVE_REVALIDATE;
B
bellard 已提交
864 865 866 867 868

    return retval;
}

/* FIFO state control */
869
static void fdctrl_reset_fifo (fdctrl_t *fdctrl)
B
bellard 已提交
870
{
871 872 873
    fdctrl->data_dir = FD_DIR_WRITE;
    fdctrl->data_pos = 0;
    FD_SET_STATE(fdctrl->data_state, FD_STATE_CMD);
B
bellard 已提交
874 875 876
}

/* Set FIFO status for the host to read */
877
static void fdctrl_set_fifo (fdctrl_t *fdctrl, int fifo_len, int do_irq)
B
bellard 已提交
878
{
879 880 881 882
    fdctrl->data_dir = FD_DIR_READ;
    fdctrl->data_len = fifo_len;
    fdctrl->data_pos = 0;
    FD_SET_STATE(fdctrl->data_state, FD_STATE_STATUS);
B
bellard 已提交
883
    if (do_irq)
884
        fdctrl_raise_irq(fdctrl, 0x00);
B
bellard 已提交
885 886 887
}

/* Set an error: unimplemented/unknown command */
888
static void fdctrl_unimplemented (fdctrl_t *fdctrl)
B
bellard 已提交
889 890
{
#if 0
891 892 893 894 895 896 897
    fdrive_t *cur_drv;

    cur_drv = get_cur_drv(fdctrl);
    fdctrl->fifo[0] = 0x60 | (cur_drv->head << 1) | fdctrl->cur_drv;
    fdctrl->fifo[1] = 0x00;
    fdctrl->fifo[2] = 0x00;
    fdctrl_set_fifo(fdctrl, 3, 1);
B
bellard 已提交
898
#else
899 900 901
    //    fdctrl_reset_fifo(fdctrl);
    fdctrl->fifo[0] = 0x80;
    fdctrl_set_fifo(fdctrl, 1, 0);
B
bellard 已提交
902 903 904 905
#endif
}

/* Callback for transfer end (stop or abort) */
906 907
static void fdctrl_stop_transfer (fdctrl_t *fdctrl, uint8_t status0,
				  uint8_t status1, uint8_t status2)
B
bellard 已提交
908
{
909
    fdrive_t *cur_drv;
B
bellard 已提交
910

911
    cur_drv = get_cur_drv(fdctrl);
B
bellard 已提交
912 913
    FLOPPY_DPRINTF("transfer status: %02x %02x %02x (%02x)\n",
                   status0, status1, status2,
914 915 916 917 918 919 920 921 922 923 924 925
                   status0 | (cur_drv->head << 1) | fdctrl->cur_drv);
    fdctrl->fifo[0] = status0 | (cur_drv->head << 1) | fdctrl->cur_drv;
    fdctrl->fifo[1] = status1;
    fdctrl->fifo[2] = status2;
    fdctrl->fifo[3] = cur_drv->track;
    fdctrl->fifo[4] = cur_drv->head;
    fdctrl->fifo[5] = cur_drv->sect;
    fdctrl->fifo[6] = FD_SECTOR_SC;
    fdctrl->data_dir = FD_DIR_READ;
    if (fdctrl->state & FD_CTRL_BUSY)
        DMA_release_DREQ(fdctrl->dma_chann);
    fdctrl_set_fifo(fdctrl, 7, 1);
B
bellard 已提交
926 927 928
}

/* Prepare a data transfer (either DMA or FIFO) */
929
static void fdctrl_start_transfer (fdctrl_t *fdctrl, int direction)
B
bellard 已提交
930
{
931
    fdrive_t *cur_drv;
B
bellard 已提交
932 933 934
    uint8_t kh, kt, ks;
    int did_seek;

935 936 937 938 939
    fdctrl->cur_drv = fdctrl->fifo[1] & 1;
    cur_drv = get_cur_drv(fdctrl);
    kt = fdctrl->fifo[2];
    kh = fdctrl->fifo[3];
    ks = fdctrl->fifo[4];
B
bellard 已提交
940
    FLOPPY_DPRINTF("Start tranfert at %d %d %02x %02x (%d)\n",
941
                   fdctrl->cur_drv, kh, kt, ks,
B
bellard 已提交
942 943
                   _fd_sector(kh, kt, ks, cur_drv->last_sect));
    did_seek = 0;
944
    switch (fd_seek(cur_drv, kh, kt, ks, fdctrl->config & 0x40)) {
B
bellard 已提交
945 946
    case 2:
        /* sect too big */
947 948 949 950
        fdctrl_stop_transfer(fdctrl, 0x40, 0x00, 0x00);
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
951 952 953
        return;
    case 3:
        /* track too big */
954 955 956 957
        fdctrl_stop_transfer(fdctrl, 0x40, 0x80, 0x00);
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
958 959 960
        return;
    case 4:
        /* No seek enabled */
961 962 963 964
        fdctrl_stop_transfer(fdctrl, 0x40, 0x00, 0x00);
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
965 966 967 968 969 970 971 972
        return;
    case 1:
        did_seek = 1;
        break;
    default:
        break;
    }
    /* Set the FIFO state */
973 974 975 976 977 978 979
    fdctrl->data_dir = direction;
    fdctrl->data_pos = 0;
    FD_SET_STATE(fdctrl->data_state, FD_STATE_DATA); /* FIFO ready for data */
    if (fdctrl->fifo[0] & 0x80)
        fdctrl->data_state |= FD_STATE_MULTI;
    else
        fdctrl->data_state &= ~FD_STATE_MULTI;
B
bellard 已提交
980
    if (did_seek)
981 982 983 984 985 986 987 988 989 990 991 992 993 994
        fdctrl->data_state |= FD_STATE_SEEK;
    else
        fdctrl->data_state &= ~FD_STATE_SEEK;
    if (fdctrl->fifo[5] == 00) {
        fdctrl->data_len = fdctrl->fifo[8];
    } else {
	int tmp;
        fdctrl->data_len = 128 << fdctrl->fifo[5];
        tmp = (cur_drv->last_sect - ks + 1);
        if (fdctrl->fifo[0] & 0x80)
            tmp += cur_drv->last_sect;
	fdctrl->data_len *= tmp;
    }
    if (fdctrl->dma_en) {
B
bellard 已提交
995 996
        int dma_mode;
        /* DMA transfer are enabled. Check if DMA channel is well programmed */
997
        dma_mode = DMA_get_channel_mode(fdctrl->dma_chann);
B
bellard 已提交
998
        dma_mode = (dma_mode >> 2) & 3;
999 1000 1001 1002
        FLOPPY_DPRINTF("dma_mode=%d direction=%d (%d - %d)\n",
		       dma_mode, direction,
                       (128 << fdctrl->fifo[5]) *
		       (cur_drv->last_sect - ks + 1), fdctrl->data_len);
B
bellard 已提交
1003 1004 1005 1006 1007
        if (((direction == FD_DIR_SCANE || direction == FD_DIR_SCANL ||
              direction == FD_DIR_SCANH) && dma_mode == 0) ||
            (direction == FD_DIR_WRITE && dma_mode == 2) ||
            (direction == FD_DIR_READ && dma_mode == 1)) {
            /* No access is allowed until DMA transfer has completed */
1008
            fdctrl->state |= FD_CTRL_BUSY;
B
bellard 已提交
1009 1010 1011
            /* Now, we just have to wait for the DMA controler to
             * recall us...
             */
1012 1013
            DMA_hold_DREQ(fdctrl->dma_chann);
            DMA_schedule(fdctrl->dma_chann);
B
bellard 已提交
1014
            return;
1015 1016
        } else {
	    FLOPPY_ERROR("dma_mode=%d direction=%d\n", dma_mode, direction);
B
bellard 已提交
1017 1018 1019 1020
        }
    }
    FLOPPY_DPRINTF("start non-DMA transfer\n");
    /* IO based transfer: calculate len */
1021
    fdctrl_raise_irq(fdctrl, 0x00);
B
bellard 已提交
1022 1023 1024 1025 1026

    return;
}

/* Prepare a transfer of deleted data */
1027
static void fdctrl_start_transfer_del (fdctrl_t *fdctrl, int direction)
B
bellard 已提交
1028 1029 1030 1031
{
    /* We don't handle deleted data,
     * so we don't return *ANYTHING*
     */
1032
    fdctrl_stop_transfer(fdctrl, 0x60, 0x00, 0x00);
B
bellard 已提交
1033 1034 1035
}

/* handlers for DMA transfers */
1036
static int fdctrl_transfer_handler (void *opaque, target_ulong addr, int size)
B
bellard 已提交
1037
{
1038 1039 1040
    fdctrl_t *fdctrl;
    fdrive_t *cur_drv;
    int len, start_pos, rel_pos;
B
bellard 已提交
1041 1042
    uint8_t status0 = 0x00, status1 = 0x00, status2 = 0x00;

1043 1044 1045
    fdctrl = opaque;
    fdctrl_reset_irq(fdctrl);
    if (!(fdctrl->state & FD_CTRL_BUSY)) {
B
bellard 已提交
1046 1047 1048
        FLOPPY_DPRINTF("Not in DMA transfer mode !\n");
        return 0;
    }
1049 1050 1051
    cur_drv = get_cur_drv(fdctrl);
    if (fdctrl->data_dir == FD_DIR_SCANE || fdctrl->data_dir == FD_DIR_SCANL ||
        fdctrl->data_dir == FD_DIR_SCANH)
B
bellard 已提交
1052
        status2 = 0x04;
1053 1054
    if (size > fdctrl->data_len)
	size = fdctrl->data_len;
1055
            if (cur_drv->bs == NULL) {
1056 1057 1058 1059 1060
	if (fdctrl->data_dir == FD_DIR_WRITE)
	    fdctrl_stop_transfer(fdctrl, 0x60, 0x00, 0x00);
	else
	    fdctrl_stop_transfer(fdctrl, 0x40, 0x00, 0x00);
	len = 0;
1061 1062
                goto transfer_error;
            }
1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077
    rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
    for (start_pos = fdctrl->data_pos; fdctrl->data_pos < size;) {
        len = size - fdctrl->data_pos;
        if (len + rel_pos > FD_SECTOR_LEN)
            len = FD_SECTOR_LEN - rel_pos;
        FLOPPY_DPRINTF("copy %d bytes (%d %d %d) %d pos %d %02x %02x "
                       "(%d-0x%08x 0x%08x)\n", len, size, fdctrl->data_pos,
                       fdctrl->data_len, fdctrl->cur_drv, cur_drv->head,
                       cur_drv->track, cur_drv->sect, fd_sector(cur_drv),
                       fd_sector(cur_drv) * 512, addr);
        if (fdctrl->data_dir != FD_DIR_WRITE ||
	    len < FD_SECTOR_LEN || rel_pos != 0) {
            /* READ & SCAN commands and realign to a sector for WRITE */
            if (bdrv_read(cur_drv->bs, fd_sector(cur_drv),
			  fdctrl->fifo, 1) < 0) {
B
bellard 已提交
1078 1079 1080
                FLOPPY_DPRINTF("Floppy: error getting sector %d\n",
                               fd_sector(cur_drv));
                /* Sure, image size is too small... */
1081
                memset(fdctrl->fifo, 0, FD_SECTOR_LEN);
B
bellard 已提交
1082 1083
            }
                }
1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098
	switch (fdctrl->data_dir) {
	case FD_DIR_READ:
	    /* READ commands */
	    cpu_physical_memory_write(addr + fdctrl->data_pos,
				      fdctrl->fifo + rel_pos, len);
	    break;
	case FD_DIR_WRITE:
            /* WRITE commands */
            cpu_physical_memory_read(addr + fdctrl->data_pos,
				     fdctrl->fifo + rel_pos, len);
            if (bdrv_write(cur_drv->bs, fd_sector(cur_drv),
			   fdctrl->fifo, 1) < 0) {
                FLOPPY_ERROR("writting sector %d\n", fd_sector(cur_drv));
                fdctrl_stop_transfer(fdctrl, 0x60, 0x00, 0x00);
                goto transfer_error;
1099
                }
1100 1101 1102 1103 1104 1105 1106 1107 1108
	    break;
	default:
	    /* SCAN commands */
            {
		uint8_t tmpbuf[FD_SECTOR_LEN];
                int ret;
                cpu_physical_memory_read(addr + fdctrl->data_pos,
                                         tmpbuf, len);
                ret = memcmp(tmpbuf, fdctrl->fifo + rel_pos, len);
B
bellard 已提交
1109 1110 1111 1112
                if (ret == 0) {
                    status2 = 0x08;
                    goto end_transfer;
                }
1113 1114
                if ((ret < 0 && fdctrl->data_dir == FD_DIR_SCANL) ||
                    (ret > 0 && fdctrl->data_dir == FD_DIR_SCANH)) {
B
bellard 已提交
1115 1116 1117 1118
                    status2 = 0x00;
                    goto end_transfer;
                }
            }
1119
	    break;
B
bellard 已提交
1120
        }
1121 1122 1123
	fdctrl->data_pos += len;
	rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
        if (rel_pos == 0) {
B
bellard 已提交
1124
            /* Seek to next sector */
1125 1126 1127 1128 1129 1130 1131 1132 1133 1134
	    cur_drv->sect++;
	    FLOPPY_DPRINTF("seek to next sector (%d %02x %02x => %d) (%d)\n",
			   cur_drv->head, cur_drv->track, cur_drv->sect,
			   fd_sector(cur_drv),
			   fdctrl->data_pos - size);
            if (cur_drv->sect > cur_drv->last_sect) {
		cur_drv->sect = 1;
		if (FD_MULTI_TRACK(fdctrl->data_state)) {
		    if (cur_drv->head == 0 &&
			(cur_drv->flags & FDISK_DBL_SIDES) != 0) {	
B
bellard 已提交
1135 1136 1137
                    cur_drv->head = 1;
                } else {
                    cur_drv->head = 0;
1138 1139 1140
			cur_drv->track++;
			if ((cur_drv->flags & FDISK_DBL_SIDES) == 0)
			    break;
B
bellard 已提交
1141 1142
                }
            } else {
1143 1144 1145 1146 1147 1148
		    cur_drv->track++;
		    break;
		}
		FLOPPY_DPRINTF("seek to next track (%d %02x %02x => %d)\n",
			       cur_drv->head, cur_drv->track,
			       cur_drv->sect, fd_sector(cur_drv));
B
bellard 已提交
1149 1150 1151 1152
            }
        }
    }
end_transfer:
1153 1154 1155 1156 1157 1158
    len = fdctrl->data_pos - start_pos;
    FLOPPY_DPRINTF("end transfer %d %d %d\n",
		   fdctrl->data_pos, len, fdctrl->data_len);
    if (fdctrl->data_dir == FD_DIR_SCANE ||
        fdctrl->data_dir == FD_DIR_SCANL ||
        fdctrl->data_dir == FD_DIR_SCANH)
B
bellard 已提交
1159
        status2 = 0x08;
1160
    if (FD_DID_SEEK(fdctrl->data_state))
B
bellard 已提交
1161
        status0 |= 0x20;
1162 1163 1164
    fdctrl->data_len -= len;
    //    if (fdctrl->data_len == 0)
	fdctrl_stop_transfer(fdctrl, status0, status1, status2);
B
bellard 已提交
1165 1166
transfer_error:

1167
    return len;
B
bellard 已提交
1168 1169 1170
}

/* Data register : 0x05 */
1171
static uint32_t fdctrl_read_data (fdctrl_t *fdctrl)
B
bellard 已提交
1172
{
1173
    fdrive_t *cur_drv;
B
bellard 已提交
1174 1175 1176
    uint32_t retval = 0;
    int pos, len;

1177 1178 1179 1180
    fdctrl_reset_irq(fdctrl);
    cur_drv = get_cur_drv(fdctrl);
    fdctrl->state &= ~FD_CTRL_SLEEP;
    if (FD_STATE(fdctrl->data_state) == FD_STATE_CMD) {
B
bellard 已提交
1181 1182 1183
        FLOPPY_ERROR("can't read data in CMD state\n");
        return 0;
    }
1184 1185
    pos = fdctrl->data_pos;
    if (FD_STATE(fdctrl->data_state) == FD_STATE_DATA) {
B
bellard 已提交
1186 1187
        pos %= FD_SECTOR_LEN;
        if (pos == 0) {
1188
            len = fdctrl->data_len - fdctrl->data_pos;
B
bellard 已提交
1189 1190 1191
            if (len > FD_SECTOR_LEN)
                len = FD_SECTOR_LEN;
            bdrv_read(cur_drv->bs, fd_sector(cur_drv),
1192
                      fdctrl->fifo, len);
B
bellard 已提交
1193 1194
        }
    }
1195 1196 1197
    retval = fdctrl->fifo[pos];
    if (++fdctrl->data_pos == fdctrl->data_len) {
        fdctrl->data_pos = 0;
B
bellard 已提交
1198 1199 1200
        /* Switch from transfert mode to status mode
         * then from status mode to command mode
         */
1201 1202
        if (FD_STATE(fdctrl->data_state) == FD_STATE_DATA)
            fdctrl_stop_transfer(fdctrl, 0x20, 0x00, 0x00);
B
bellard 已提交
1203
        else
1204
            fdctrl_reset_fifo(fdctrl);
B
bellard 已提交
1205 1206 1207 1208 1209 1210
    }
    FLOPPY_DPRINTF("data register: 0x%02x\n", retval);

    return retval;
}

1211
static void fdctrl_format_sector (fdctrl_t *fdctrl)
B
bellard 已提交
1212
{
1213 1214 1215
    fdrive_t *cur_drv;
    uint8_t kh, kt, ks;
    int did_seek;
B
bellard 已提交
1216

1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281
    fdctrl->cur_drv = fdctrl->fifo[1] & 1;
    cur_drv = get_cur_drv(fdctrl);
    kt = fdctrl->fifo[6];
    kh = fdctrl->fifo[7];
    ks = fdctrl->fifo[8];
    FLOPPY_DPRINTF("format sector at %d %d %02x %02x (%d)\n",
                   fdctrl->cur_drv, kh, kt, ks,
                   _fd_sector(kh, kt, ks, cur_drv->last_sect));
    did_seek = 0;
    switch (fd_seek(cur_drv, kh, kt, ks, fdctrl->config & 0x40)) {
    case 2:
        /* sect too big */
        fdctrl_stop_transfer(fdctrl, 0x40, 0x00, 0x00);
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
        return;
    case 3:
        /* track too big */
        fdctrl_stop_transfer(fdctrl, 0x40, 0x80, 0x00);
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
        return;
    case 4:
        /* No seek enabled */
        fdctrl_stop_transfer(fdctrl, 0x40, 0x00, 0x00);
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
        return;
    case 1:
        did_seek = 1;
        fdctrl->data_state |= FD_STATE_SEEK;
        break;
    default:
        break;
    }
    memset(fdctrl->fifo, 0, FD_SECTOR_LEN);
    if (cur_drv->bs == NULL ||
        bdrv_write(cur_drv->bs, fd_sector(cur_drv), fdctrl->fifo, 1) < 0) {
        FLOPPY_ERROR("formating sector %d\n", fd_sector(cur_drv));
        fdctrl_stop_transfer(fdctrl, 0x60, 0x00, 0x00);
    } else {
	if (cur_drv->sect == cur_drv->last_sect) {
	    fdctrl->data_state &= ~FD_STATE_FORMAT;
	    /* Last sector done */
	    if (FD_DID_SEEK(fdctrl->data_state))
		fdctrl_stop_transfer(fdctrl, 0x20, 0x00, 0x00);
	    else
		fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
	} else {
	    /* More to do */
	    fdctrl->data_pos = 0;
	    fdctrl->data_len = 4;
	}
    }
}

static void fdctrl_write_data (fdctrl_t *fdctrl, uint32_t value)
{
    fdrive_t *cur_drv;

    fdctrl_reset_irq(fdctrl);
    cur_drv = get_cur_drv(fdctrl);
B
bellard 已提交
1282
    /* Reset mode */
1283
    if (fdctrl->state & FD_CTRL_RESET) {
B
bellard 已提交
1284 1285 1286
        FLOPPY_DPRINTF("Floppy controler in RESET state !\n");
        return;
    }
1287 1288
    fdctrl->state &= ~FD_CTRL_SLEEP;
    if (FD_STATE(fdctrl->data_state) == FD_STATE_STATUS) {
B
bellard 已提交
1289 1290 1291 1292
        FLOPPY_ERROR("can't write data in status mode\n");
        return;
    }
    /* Is it write command time ? */
1293
    if (FD_STATE(fdctrl->data_state) == FD_STATE_DATA) {
B
bellard 已提交
1294
        /* FIFO data write */
1295 1296 1297
        fdctrl->fifo[fdctrl->data_pos++] = value;
        if (fdctrl->data_pos % FD_SECTOR_LEN == (FD_SECTOR_LEN - 1) ||
            fdctrl->data_pos == fdctrl->data_len) {
B
bellard 已提交
1298
            bdrv_write(cur_drv->bs, fd_sector(cur_drv),
1299
                       fdctrl->fifo, FD_SECTOR_LEN);
B
bellard 已提交
1300 1301 1302 1303
        }
        /* Switch from transfert mode to status mode
         * then from status mode to command mode
         */
1304 1305
        if (FD_STATE(fdctrl->data_state) == FD_STATE_DATA)
            fdctrl_stop_transfer(fdctrl, 0x20, 0x00, 0x00);
B
bellard 已提交
1306 1307
        return;
    }
1308
    if (fdctrl->data_pos == 0) {
B
bellard 已提交
1309 1310 1311 1312 1313 1314
        /* Command */
        switch (value & 0x5F) {
        case 0x46:
            /* READ variants */
            FLOPPY_DPRINTF("READ command\n");
            /* 8 parameters cmd */
1315
            fdctrl->data_len = 9;
B
bellard 已提交
1316 1317 1318 1319 1320
            goto enqueue;
        case 0x4C:
            /* READ_DELETED variants */
            FLOPPY_DPRINTF("READ_DELETED command\n");
            /* 8 parameters cmd */
1321
            fdctrl->data_len = 9;
B
bellard 已提交
1322 1323 1324 1325 1326
            goto enqueue;
        case 0x50:
            /* SCAN_EQUAL variants */
            FLOPPY_DPRINTF("SCAN_EQUAL command\n");
            /* 8 parameters cmd */
1327
            fdctrl->data_len = 9;
B
bellard 已提交
1328 1329 1330 1331 1332
            goto enqueue;
        case 0x56:
            /* VERIFY variants */
            FLOPPY_DPRINTF("VERIFY command\n");
            /* 8 parameters cmd */
1333
            fdctrl->data_len = 9;
B
bellard 已提交
1334 1335 1336 1337 1338
            goto enqueue;
        case 0x59:
            /* SCAN_LOW_OR_EQUAL variants */
            FLOPPY_DPRINTF("SCAN_LOW_OR_EQUAL command\n");
            /* 8 parameters cmd */
1339
            fdctrl->data_len = 9;
B
bellard 已提交
1340 1341 1342 1343 1344
            goto enqueue;
        case 0x5D:
            /* SCAN_HIGH_OR_EQUAL variants */
            FLOPPY_DPRINTF("SCAN_HIGH_OR_EQUAL command\n");
            /* 8 parameters cmd */
1345
            fdctrl->data_len = 9;
B
bellard 已提交
1346 1347 1348 1349 1350 1351 1352 1353 1354
            goto enqueue;
        default:
            break;
        }
        switch (value & 0x7F) {
        case 0x45:
            /* WRITE variants */
            FLOPPY_DPRINTF("WRITE command\n");
            /* 8 parameters cmd */
1355
            fdctrl->data_len = 9;
B
bellard 已提交
1356 1357 1358 1359 1360
            goto enqueue;
        case 0x49:
            /* WRITE_DELETED variants */
            FLOPPY_DPRINTF("WRITE_DELETED command\n");
            /* 8 parameters cmd */
1361
            fdctrl->data_len = 9;
B
bellard 已提交
1362 1363 1364 1365 1366 1367 1368 1369 1370
            goto enqueue;
        default:
            break;
        }
        switch (value) {
        case 0x03:
            /* SPECIFY */
            FLOPPY_DPRINTF("SPECIFY command\n");
            /* 1 parameter cmd */
1371
            fdctrl->data_len = 3;
B
bellard 已提交
1372 1373 1374 1375 1376
            goto enqueue;
        case 0x04:
            /* SENSE_DRIVE_STATUS */
            FLOPPY_DPRINTF("SENSE_DRIVE_STATUS command\n");
            /* 1 parameter cmd */
1377
            fdctrl->data_len = 2;
B
bellard 已提交
1378 1379 1380 1381 1382
            goto enqueue;
        case 0x07:
            /* RECALIBRATE */
            FLOPPY_DPRINTF("RECALIBRATE command\n");
            /* 1 parameter cmd */
1383
            fdctrl->data_len = 2;
B
bellard 已提交
1384 1385 1386 1387
            goto enqueue;
        case 0x08:
            /* SENSE_INTERRUPT_STATUS */
            FLOPPY_DPRINTF("SENSE_INTERRUPT_STATUS command (%02x)\n",
1388
                           fdctrl->int_status);
B
bellard 已提交
1389
            /* No parameters cmd: returns status if no interrupt */
1390 1391 1392 1393 1394 1395
            fdctrl->fifo[0] =
                fdctrl->int_status | (cur_drv->head << 2) | fdctrl->cur_drv;
            fdctrl->fifo[1] = cur_drv->track;
            fdctrl_set_fifo(fdctrl, 2, 0);
	    fdctrl_reset_irq(fdctrl);
	    fdctrl->int_status = 0xC0;
B
bellard 已提交
1396 1397 1398 1399 1400
            return;
        case 0x0E:
            /* DUMPREG */
            FLOPPY_DPRINTF("DUMPREG command\n");
            /* Drives position */
1401 1402 1403 1404
            fdctrl->fifo[0] = drv0(fdctrl)->track;
            fdctrl->fifo[1] = drv1(fdctrl)->track;
            fdctrl->fifo[2] = 0;
            fdctrl->fifo[3] = 0;
B
bellard 已提交
1405
            /* timers */
1406 1407 1408 1409
            fdctrl->fifo[4] = fdctrl->timer0;
            fdctrl->fifo[5] = (fdctrl->timer1 << 1) | fdctrl->dma_en;
            fdctrl->fifo[6] = cur_drv->last_sect;
            fdctrl->fifo[7] = (fdctrl->lock << 7) |
B
bellard 已提交
1410
                    (cur_drv->perpendicular << 2);
1411 1412 1413
            fdctrl->fifo[8] = fdctrl->config;
            fdctrl->fifo[9] = fdctrl->precomp_trk;
            fdctrl_set_fifo(fdctrl, 10, 0);
B
bellard 已提交
1414 1415 1416 1417 1418
            return;
        case 0x0F:
            /* SEEK */
            FLOPPY_DPRINTF("SEEK command\n");
            /* 2 parameters cmd */
1419
            fdctrl->data_len = 3;
B
bellard 已提交
1420 1421 1422 1423 1424 1425
            goto enqueue;
        case 0x10:
            /* VERSION */
            FLOPPY_DPRINTF("VERSION command\n");
            /* No parameters cmd */
            /* Controler's version */
1426 1427
            fdctrl->fifo[0] = fdctrl->version;
            fdctrl_set_fifo(fdctrl, 1, 1);
B
bellard 已提交
1428 1429 1430 1431 1432
            return;
        case 0x12:
            /* PERPENDICULAR_MODE */
            FLOPPY_DPRINTF("PERPENDICULAR_MODE command\n");
            /* 1 parameter cmd */
1433
            fdctrl->data_len = 2;
B
bellard 已提交
1434 1435 1436 1437 1438
            goto enqueue;
        case 0x13:
            /* CONFIGURE */
            FLOPPY_DPRINTF("CONFIGURE command\n");
            /* 3 parameters cmd */
1439
            fdctrl->data_len = 4;
B
bellard 已提交
1440 1441 1442 1443 1444
            goto enqueue;
        case 0x14:
            /* UNLOCK */
            FLOPPY_DPRINTF("UNLOCK command\n");
            /* No parameters cmd */
1445 1446 1447
            fdctrl->lock = 0;
            fdctrl->fifo[0] = 0;
            fdctrl_set_fifo(fdctrl, 1, 0);
B
bellard 已提交
1448 1449 1450 1451 1452
            return;
        case 0x17:
            /* POWERDOWN_MODE */
            FLOPPY_DPRINTF("POWERDOWN_MODE command\n");
            /* 2 parameters cmd */
1453
            fdctrl->data_len = 3;
B
bellard 已提交
1454 1455 1456 1457 1458
            goto enqueue;
        case 0x18:
            /* PART_ID */
            FLOPPY_DPRINTF("PART_ID command\n");
            /* No parameters cmd */
1459 1460
            fdctrl->fifo[0] = 0x41; /* Stepping 1 */
            fdctrl_set_fifo(fdctrl, 1, 0);
B
bellard 已提交
1461 1462 1463 1464 1465
            return;
        case 0x2C:
            /* SAVE */
            FLOPPY_DPRINTF("SAVE command\n");
            /* No parameters cmd */
1466 1467
            fdctrl->fifo[0] = 0;
            fdctrl->fifo[1] = 0;
B
bellard 已提交
1468
            /* Drives position */
1469 1470 1471 1472
            fdctrl->fifo[2] = drv0(fdctrl)->track;
            fdctrl->fifo[3] = drv1(fdctrl)->track;
            fdctrl->fifo[4] = 0;
            fdctrl->fifo[5] = 0;
B
bellard 已提交
1473
            /* timers */
1474 1475 1476 1477
            fdctrl->fifo[6] = fdctrl->timer0;
            fdctrl->fifo[7] = fdctrl->timer1;
            fdctrl->fifo[8] = cur_drv->last_sect;
            fdctrl->fifo[9] = (fdctrl->lock << 7) |
B
bellard 已提交
1478
                    (cur_drv->perpendicular << 2);
1479 1480 1481 1482 1483 1484
            fdctrl->fifo[10] = fdctrl->config;
            fdctrl->fifo[11] = fdctrl->precomp_trk;
            fdctrl->fifo[12] = fdctrl->pwrd;
            fdctrl->fifo[13] = 0;
            fdctrl->fifo[14] = 0;
            fdctrl_set_fifo(fdctrl, 15, 1);
B
bellard 已提交
1485 1486 1487 1488 1489
            return;
        case 0x33:
            /* OPTION */
            FLOPPY_DPRINTF("OPTION command\n");
            /* 1 parameter cmd */
1490
            fdctrl->data_len = 2;
B
bellard 已提交
1491 1492 1493 1494 1495
            goto enqueue;
        case 0x42:
            /* READ_TRACK */
            FLOPPY_DPRINTF("READ_TRACK command\n");
            /* 8 parameters cmd */
1496
            fdctrl->data_len = 9;
B
bellard 已提交
1497 1498 1499 1500 1501
            goto enqueue;
        case 0x4A:
            /* READ_ID */
            FLOPPY_DPRINTF("READ_ID command\n");
            /* 1 parameter cmd */
1502
            fdctrl->data_len = 2;
B
bellard 已提交
1503 1504 1505 1506 1507
            goto enqueue;
        case 0x4C:
            /* RESTORE */
            FLOPPY_DPRINTF("RESTORE command\n");
            /* 17 parameters cmd */
1508
            fdctrl->data_len = 18;
B
bellard 已提交
1509 1510 1511 1512 1513
            goto enqueue;
        case 0x4D:
            /* FORMAT_TRACK */
            FLOPPY_DPRINTF("FORMAT_TRACK command\n");
            /* 5 parameters cmd */
1514
            fdctrl->data_len = 6;
B
bellard 已提交
1515 1516 1517 1518 1519
            goto enqueue;
        case 0x8E:
            /* DRIVE_SPECIFICATION_COMMAND */
            FLOPPY_DPRINTF("DRIVE_SPECIFICATION_COMMAND command\n");
            /* 5 parameters cmd */
1520
            fdctrl->data_len = 6;
B
bellard 已提交
1521 1522 1523 1524 1525
            goto enqueue;
        case 0x8F:
            /* RELATIVE_SEEK_OUT */
            FLOPPY_DPRINTF("RELATIVE_SEEK_OUT command\n");
            /* 2 parameters cmd */
1526
            fdctrl->data_len = 3;
B
bellard 已提交
1527 1528 1529 1530 1531
            goto enqueue;
        case 0x94:
            /* LOCK */
            FLOPPY_DPRINTF("LOCK command\n");
            /* No parameters cmd */
1532 1533 1534
            fdctrl->lock = 1;
            fdctrl->fifo[0] = 0x10;
            fdctrl_set_fifo(fdctrl, 1, 1);
B
bellard 已提交
1535 1536 1537 1538 1539
            return;
        case 0xCD:
            /* FORMAT_AND_WRITE */
            FLOPPY_DPRINTF("FORMAT_AND_WRITE command\n");
            /* 10 parameters cmd */
1540
            fdctrl->data_len = 11;
B
bellard 已提交
1541 1542 1543 1544 1545
            goto enqueue;
        case 0xCF:
            /* RELATIVE_SEEK_IN */
            FLOPPY_DPRINTF("RELATIVE_SEEK_IN command\n");
            /* 2 parameters cmd */
1546
            fdctrl->data_len = 3;
B
bellard 已提交
1547 1548 1549 1550
            goto enqueue;
        default:
            /* Unknown command */
            FLOPPY_ERROR("unknown command: 0x%02x\n", value);
1551
            fdctrl_unimplemented(fdctrl);
B
bellard 已提交
1552 1553 1554 1555
            return;
        }
    }
enqueue:
1556 1557 1558
    FLOPPY_DPRINTF("%s: %02x\n", __func__, value);
    fdctrl->fifo[fdctrl->data_pos] = value;
    if (++fdctrl->data_pos == fdctrl->data_len) {
B
bellard 已提交
1559 1560 1561
        /* We now have all parameters
         * and will be able to treat the command
         */
1562 1563 1564 1565 1566
	if (fdctrl->data_state & FD_STATE_FORMAT) {
	    fdctrl_format_sector(fdctrl);
	    return;
	}
        switch (fdctrl->fifo[0] & 0x1F) {
B
bellard 已提交
1567 1568 1569 1570
        case 0x06:
        {
            /* READ variants */
            FLOPPY_DPRINTF("treat READ command\n");
1571
            fdctrl_start_transfer(fdctrl, FD_DIR_READ);
B
bellard 已提交
1572 1573 1574 1575 1576 1577
            return;
        }
        case 0x0C:
            /* READ_DELETED variants */
//            FLOPPY_DPRINTF("treat READ_DELETED command\n");
            FLOPPY_ERROR("treat READ_DELETED command\n");
1578
            fdctrl_start_transfer_del(fdctrl, FD_DIR_READ);
B
bellard 已提交
1579 1580 1581 1582 1583
            return;
        case 0x16:
            /* VERIFY variants */
//            FLOPPY_DPRINTF("treat VERIFY command\n");
            FLOPPY_ERROR("treat VERIFY command\n");
1584
            fdctrl_stop_transfer(fdctrl, 0x20, 0x00, 0x00);
B
bellard 已提交
1585 1586 1587 1588 1589
            return;
        case 0x10:
            /* SCAN_EQUAL variants */
//            FLOPPY_DPRINTF("treat SCAN_EQUAL command\n");
            FLOPPY_ERROR("treat SCAN_EQUAL command\n");
1590
            fdctrl_start_transfer(fdctrl, FD_DIR_SCANE);
B
bellard 已提交
1591 1592 1593 1594 1595
            return;
        case 0x19:
            /* SCAN_LOW_OR_EQUAL variants */
//            FLOPPY_DPRINTF("treat SCAN_LOW_OR_EQUAL command\n");
            FLOPPY_ERROR("treat SCAN_LOW_OR_EQUAL command\n");
1596
            fdctrl_start_transfer(fdctrl, FD_DIR_SCANL);
B
bellard 已提交
1597 1598 1599 1600 1601
            return;
        case 0x1D:
            /* SCAN_HIGH_OR_EQUAL variants */
//            FLOPPY_DPRINTF("treat SCAN_HIGH_OR_EQUAL command\n");
            FLOPPY_ERROR("treat SCAN_HIGH_OR_EQUAL command\n");
1602
            fdctrl_start_transfer(fdctrl, FD_DIR_SCANH);
B
bellard 已提交
1603 1604 1605 1606
            return;
        default:
            break;
        }
1607
        switch (fdctrl->fifo[0] & 0x3F) {
B
bellard 已提交
1608 1609
        case 0x05:
            /* WRITE variants */
1610 1611
            FLOPPY_DPRINTF("treat WRITE command (%02x)\n", fdctrl->fifo[0]);
            fdctrl_start_transfer(fdctrl, FD_DIR_WRITE);
B
bellard 已提交
1612 1613 1614 1615 1616
            return;
        case 0x09:
            /* WRITE_DELETED variants */
//            FLOPPY_DPRINTF("treat WRITE_DELETED command\n");
            FLOPPY_ERROR("treat WRITE_DELETED command\n");
1617
            fdctrl_start_transfer_del(fdctrl, FD_DIR_WRITE);
B
bellard 已提交
1618 1619 1620 1621
            return;
        default:
            break;
        }
1622
        switch (fdctrl->fifo[0]) {
B
bellard 已提交
1623 1624 1625
        case 0x03:
            /* SPECIFY */
            FLOPPY_DPRINTF("treat SPECIFY command\n");
1626 1627 1628
            fdctrl->timer0 = (fdctrl->fifo[1] >> 4) & 0xF;
            fdctrl->timer1 = fdctrl->fifo[1] >> 1;
	    fdctrl->dma_en = 1 - (fdctrl->fifo[2] & 1) ;
B
bellard 已提交
1629
            /* No result back */
1630
            fdctrl_reset_fifo(fdctrl);
B
bellard 已提交
1631 1632 1633 1634
            break;
        case 0x04:
            /* SENSE_DRIVE_STATUS */
            FLOPPY_DPRINTF("treat SENSE_DRIVE_STATUS command\n");
1635 1636 1637
            fdctrl->cur_drv = fdctrl->fifo[1] & 1;
	    cur_drv = get_cur_drv(fdctrl);
            cur_drv->head = (fdctrl->fifo[1] >> 2) & 1;
B
bellard 已提交
1638
            /* 1 Byte status back */
1639
            fdctrl->fifo[0] = (cur_drv->ro << 6) |
B
bellard 已提交
1640
                (cur_drv->track == 0 ? 0x10 : 0x00) |
1641 1642
                fdctrl->cur_drv;
            fdctrl_set_fifo(fdctrl, 1, 0);
B
bellard 已提交
1643 1644 1645 1646
            break;
        case 0x07:
            /* RECALIBRATE */
            FLOPPY_DPRINTF("treat RECALIBRATE command\n");
1647 1648
            fdctrl->cur_drv = fdctrl->fifo[1] & 1;
	    cur_drv = get_cur_drv(fdctrl);
B
bellard 已提交
1649
            fd_recalibrate(cur_drv);
1650
	    fdctrl_reset_fifo(fdctrl);
B
bellard 已提交
1651
            /* Raise Interrupt */
1652
	    fdctrl_raise_irq(fdctrl, 0x20);
B
bellard 已提交
1653 1654 1655 1656
            break;
        case 0x0F:
            /* SEEK */
            FLOPPY_DPRINTF("treat SEEK command\n");
1657 1658 1659 1660
            fdctrl->cur_drv = fdctrl->fifo[1] & 1;
	    cur_drv = get_cur_drv(fdctrl);
	    fd_start(cur_drv);
            if (fdctrl->fifo[2] <= cur_drv->track)
B
bellard 已提交
1661 1662 1663
                cur_drv->dir = 1;
            else
                cur_drv->dir = 0;
1664 1665 1666
	    fdctrl_reset_fifo(fdctrl);
            if (fdctrl->fifo[2] > cur_drv->max_track) {
                fdctrl_raise_irq(fdctrl, 0x60);
B
bellard 已提交
1667
            } else {
1668
                cur_drv->track = fdctrl->fifo[2];
B
bellard 已提交
1669
                /* Raise Interrupt */
1670
                fdctrl_raise_irq(fdctrl, 0x20);
B
bellard 已提交
1671 1672 1673 1674 1675
            }
            break;
        case 0x12:
            /* PERPENDICULAR_MODE */
            FLOPPY_DPRINTF("treat PERPENDICULAR_MODE command\n");
1676 1677
            if (fdctrl->fifo[1] & 0x80)
                cur_drv->perpendicular = fdctrl->fifo[1] & 0x7;
B
bellard 已提交
1678
            /* No result back */
1679
            fdctrl_reset_fifo(fdctrl);
B
bellard 已提交
1680 1681 1682 1683
            break;
        case 0x13:
            /* CONFIGURE */
            FLOPPY_DPRINTF("treat CONFIGURE command\n");
1684 1685
            fdctrl->config = fdctrl->fifo[2];
            fdctrl->precomp_trk =  fdctrl->fifo[3];
B
bellard 已提交
1686
            /* No result back */
1687
            fdctrl_reset_fifo(fdctrl);
B
bellard 已提交
1688 1689 1690 1691
            break;
        case 0x17:
            /* POWERDOWN_MODE */
            FLOPPY_DPRINTF("treat POWERDOWN_MODE command\n");
1692 1693 1694
            fdctrl->pwrd = fdctrl->fifo[1];
            fdctrl->fifo[0] = fdctrl->fifo[1];
            fdctrl_set_fifo(fdctrl, 1, 1);
B
bellard 已提交
1695 1696 1697 1698 1699
            break;
        case 0x33:
            /* OPTION */
            FLOPPY_DPRINTF("treat OPTION command\n");
            /* No result back */
1700
            fdctrl_reset_fifo(fdctrl);
B
bellard 已提交
1701 1702 1703 1704 1705
            break;
        case 0x42:
            /* READ_TRACK */
//            FLOPPY_DPRINTF("treat READ_TRACK command\n");
            FLOPPY_ERROR("treat READ_TRACK command\n");
1706
            fdctrl_start_transfer(fdctrl, FD_DIR_READ);
B
bellard 已提交
1707 1708 1709
            break;
        case 0x4A:
                /* READ_ID */
1710 1711
            FLOPPY_DPRINTF("treat READ_ID command\n");
            fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
B
bellard 已提交
1712 1713 1714 1715 1716
            break;
        case 0x4C:
            /* RESTORE */
            FLOPPY_DPRINTF("treat RESTORE command\n");
            /* Drives position */
1717 1718
            drv0(fdctrl)->track = fdctrl->fifo[3];
            drv1(fdctrl)->track = fdctrl->fifo[4];
B
bellard 已提交
1719
            /* timers */
1720 1721 1722 1723 1724 1725 1726 1727 1728
            fdctrl->timer0 = fdctrl->fifo[7];
            fdctrl->timer1 = fdctrl->fifo[8];
            cur_drv->last_sect = fdctrl->fifo[9];
            fdctrl->lock = fdctrl->fifo[10] >> 7;
            cur_drv->perpendicular = (fdctrl->fifo[10] >> 2) & 0xF;
            fdctrl->config = fdctrl->fifo[11];
            fdctrl->precomp_trk = fdctrl->fifo[12];
            fdctrl->pwrd = fdctrl->fifo[13];
            fdctrl_reset_fifo(fdctrl);
B
bellard 已提交
1729 1730 1731
            break;
        case 0x4D:
            /* FORMAT_TRACK */
1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754
	    FLOPPY_DPRINTF("treat FORMAT_TRACK command\n");
	    fdctrl->cur_drv = fdctrl->fifo[1] & 1;
	    cur_drv = get_cur_drv(fdctrl);
	    fdctrl->data_state |= FD_STATE_FORMAT;
	    if (fdctrl->fifo[0] & 0x80)
		fdctrl->data_state |= FD_STATE_MULTI;
	    else
		fdctrl->data_state &= ~FD_STATE_MULTI;
	    fdctrl->data_state &= ~FD_STATE_SEEK;
	    cur_drv->bps =
		fdctrl->fifo[2] > 7 ? 16384 : 128 << fdctrl->fifo[2];
#if 0
	    cur_drv->last_sect =
		cur_drv->flags & FDISK_DBL_SIDES ? fdctrl->fifo[3] :
		fdctrl->fifo[3] / 2;
#else
	    cur_drv->last_sect = fdctrl->fifo[3];
#endif
	    /* Bochs BIOS is buggy and don't send format informations
	     * for each sector. So, pretend all's done right now...
	     */
	    fdctrl->data_state &= ~FD_STATE_FORMAT;
	    fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
B
bellard 已提交
1755 1756 1757 1758
            break;
        case 0x8E:
            /* DRIVE_SPECIFICATION_COMMAND */
            FLOPPY_DPRINTF("treat DRIVE_SPECIFICATION_COMMAND command\n");
1759
            if (fdctrl->fifo[fdctrl->data_pos - 1] & 0x80) {
B
bellard 已提交
1760
                /* Command parameters done */
1761 1762 1763 1764 1765
                if (fdctrl->fifo[fdctrl->data_pos - 1] & 0x40) {
                    fdctrl->fifo[0] = fdctrl->fifo[1];
                    fdctrl->fifo[2] = 0;
                    fdctrl->fifo[3] = 0;
                    fdctrl_set_fifo(fdctrl, 4, 1);
B
bellard 已提交
1766
                } else {
1767
                    fdctrl_reset_fifo(fdctrl);
B
bellard 已提交
1768
                }
1769
            } else if (fdctrl->data_len > 7) {
B
bellard 已提交
1770
                /* ERROR */
1771 1772 1773
                fdctrl->fifo[0] = 0x80 |
                    (cur_drv->head << 2) | fdctrl->cur_drv;
                fdctrl_set_fifo(fdctrl, 1, 1);
B
bellard 已提交
1774 1775 1776 1777 1778
            }
            break;
        case 0x8F:
            /* RELATIVE_SEEK_OUT */
            FLOPPY_DPRINTF("treat RELATIVE_SEEK_OUT command\n");
1779 1780 1781
            fdctrl->cur_drv = fdctrl->fifo[1] & 1;
	    cur_drv = get_cur_drv(fdctrl);
	    fd_start(cur_drv);
B
bellard 已提交
1782
                cur_drv->dir = 0;
1783 1784 1785 1786
            if (fdctrl->fifo[2] + cur_drv->track >= cur_drv->max_track) {
		cur_drv->track = cur_drv->max_track - 1;
            } else {
                cur_drv->track += fdctrl->fifo[2];
B
bellard 已提交
1787
            }
1788 1789
	    fdctrl_reset_fifo(fdctrl);
	    fdctrl_raise_irq(fdctrl, 0x20);
B
bellard 已提交
1790 1791 1792 1793 1794
            break;
        case 0xCD:
            /* FORMAT_AND_WRITE */
//                FLOPPY_DPRINTF("treat FORMAT_AND_WRITE command\n");
            FLOPPY_ERROR("treat FORMAT_AND_WRITE command\n");
1795
            fdctrl_unimplemented(fdctrl);
B
bellard 已提交
1796 1797 1798 1799
            break;
        case 0xCF:
                /* RELATIVE_SEEK_IN */
            FLOPPY_DPRINTF("treat RELATIVE_SEEK_IN command\n");
1800 1801 1802
            fdctrl->cur_drv = fdctrl->fifo[1] & 1;
	    cur_drv = get_cur_drv(fdctrl);
	    fd_start(cur_drv);
B
bellard 已提交
1803
                cur_drv->dir = 1;
1804 1805 1806 1807
            if (fdctrl->fifo[2] > cur_drv->track) {
		cur_drv->track = 0;
            } else {
                cur_drv->track -= fdctrl->fifo[2];
B
bellard 已提交
1808
            }
1809 1810 1811
	    fdctrl_reset_fifo(fdctrl);
	    /* Raise Interrupt */
	    fdctrl_raise_irq(fdctrl, 0x20);
B
bellard 已提交
1812 1813 1814 1815
            break;
        }
    }
}