fdc.c 60.3 KB
Newer Older
B
bellard 已提交
1
/*
2
 * QEMU Floppy disk emulator (Intel 82078)
3
 *
4
 * Copyright (c) 2003, 2007 Jocelyn Mayer
5
 *
B
bellard 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * 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.
 */
B
bellard 已提交
24 25 26 27
/*
 * The controller is used in Sun4m systems in a slightly different
 * way. There are changes in DOR register and DMA is not available.
 */
B
bellard 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
#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            */
56 57
    FDRIVE_DISK_USER  = 0x04, /* User defined geometry  */
    FDRIVE_DISK_NONE  = 0x05, /* No disk                */
B
bellard 已提交
58 59 60 61 62 63 64 65 66
} 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;

67 68 69 70 71 72 73 74
typedef enum fdrive_flags_t {
    FDRIVE_MOTOR_ON   = 0x01, /* motor on/off           */
} fdrive_flags_t;

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

B
bellard 已提交
75 76 77 78
typedef struct fdrive_t {
    BlockDriverState *bs;
    /* Drive status */
    fdrive_type_t drive;
79
    fdrive_flags_t drflags;
B
bellard 已提交
80 81 82 83 84 85 86 87 88
    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 */
89
    fdisk_flags_t flags;
B
bellard 已提交
90 91
    uint8_t last_sect;        /* Nb sector per track    */
    uint8_t max_track;        /* Nb of tracks           */
92
    uint16_t bps;             /* Bytes per sector       */
B
bellard 已提交
93 94 95
    uint8_t ro;               /* Is read-only           */
} fdrive_t;

96
static void fd_init (fdrive_t *drv, BlockDriverState *bs)
B
bellard 已提交
97 98
{
    /* Drive */
99
    drv->bs = bs;
B
bellard 已提交
100
    drv->drive = FDRIVE_DRV_NONE;
101
    drv->drflags = 0;
B
bellard 已提交
102 103
    drv->perpendicular = 0;
    /* Disk */
104
    drv->last_sect = 0;
B
bellard 已提交
105 106 107 108
    drv->max_track = 0;
}

static int _fd_sector (uint8_t head, uint8_t track,
109
                       uint8_t sect, uint8_t last_sect)
B
bellard 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123
{
    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;
124 125 126
    int ret;

    if (track > drv->max_track ||
127
        (head != 0 && (drv->flags & FDISK_DBL_SIDES) == 0)) {
128 129 130 131
        FLOPPY_DPRINTF("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 已提交
132 133 134
        return 2;
    }
    if (sect > drv->last_sect) {
135 136 137 138
        FLOPPY_DPRINTF("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 已提交
139 140 141
        return 3;
    }
    sector = _fd_sector(head, track, sect, drv->last_sect);
142
    ret = 0;
B
bellard 已提交
143 144 145 146 147 148 149 150 151
    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;
152 153
        if (drv->track != track)
            ret = 1;
B
bellard 已提交
154 155 156 157
        drv->track = track;
        drv->sect = sect;
    }

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

/* 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;
}

172 173 174 175 176 177 178 179 180 181
/* Recognize floppy formats */
typedef struct fd_format_t {
    fdrive_type_t drive;
    fdisk_type_t  disk;
    uint8_t last_sect;
    uint8_t max_track;
    uint8_t max_head;
    const unsigned char *str;
} fd_format_t;

B
blueswir1 已提交
182
static const fd_format_t fd_formats[] = {
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219
    /* First entry is default format */
    /* 1.44 MB 3"1/2 floppy disks */
    { FDRIVE_DRV_144, FDRIVE_DISK_144, 18, 80, 1, "1.44 MB 3\"1/2", },
    { FDRIVE_DRV_144, FDRIVE_DISK_144, 20, 80, 1,  "1.6 MB 3\"1/2", },
    { FDRIVE_DRV_144, FDRIVE_DISK_144, 21, 80, 1, "1.68 MB 3\"1/2", },
    { FDRIVE_DRV_144, FDRIVE_DISK_144, 21, 82, 1, "1.72 MB 3\"1/2", },
    { FDRIVE_DRV_144, FDRIVE_DISK_144, 21, 83, 1, "1.74 MB 3\"1/2", },
    { FDRIVE_DRV_144, FDRIVE_DISK_144, 22, 80, 1, "1.76 MB 3\"1/2", },
    { FDRIVE_DRV_144, FDRIVE_DISK_144, 23, 80, 1, "1.84 MB 3\"1/2", },
    { FDRIVE_DRV_144, FDRIVE_DISK_144, 24, 80, 1, "1.92 MB 3\"1/2", },
    /* 2.88 MB 3"1/2 floppy disks */
    { FDRIVE_DRV_288, FDRIVE_DISK_288, 36, 80, 1, "2.88 MB 3\"1/2", },
    { FDRIVE_DRV_288, FDRIVE_DISK_288, 39, 80, 1, "3.12 MB 3\"1/2", },
    { FDRIVE_DRV_288, FDRIVE_DISK_288, 40, 80, 1,  "3.2 MB 3\"1/2", },
    { FDRIVE_DRV_288, FDRIVE_DISK_288, 44, 80, 1, "3.52 MB 3\"1/2", },
    { FDRIVE_DRV_288, FDRIVE_DISK_288, 48, 80, 1, "3.84 MB 3\"1/2", },
    /* 720 kB 3"1/2 floppy disks */
    { FDRIVE_DRV_144, FDRIVE_DISK_720,  9, 80, 1,  "720 kB 3\"1/2", },
    { FDRIVE_DRV_144, FDRIVE_DISK_720, 10, 80, 1,  "800 kB 3\"1/2", },
    { FDRIVE_DRV_144, FDRIVE_DISK_720, 10, 82, 1,  "820 kB 3\"1/2", },
    { FDRIVE_DRV_144, FDRIVE_DISK_720, 10, 83, 1,  "830 kB 3\"1/2", },
    { FDRIVE_DRV_144, FDRIVE_DISK_720, 13, 80, 1, "1.04 MB 3\"1/2", },
    { FDRIVE_DRV_144, FDRIVE_DISK_720, 14, 80, 1, "1.12 MB 3\"1/2", },
    /* 1.2 MB 5"1/4 floppy disks */
    { FDRIVE_DRV_120, FDRIVE_DISK_288, 15, 80, 1,  "1.2 kB 5\"1/4", },
    { FDRIVE_DRV_120, FDRIVE_DISK_288, 18, 80, 1, "1.44 MB 5\"1/4", },
    { FDRIVE_DRV_120, FDRIVE_DISK_288, 18, 82, 1, "1.48 MB 5\"1/4", },
    { FDRIVE_DRV_120, FDRIVE_DISK_288, 18, 83, 1, "1.49 MB 5\"1/4", },
    { FDRIVE_DRV_120, FDRIVE_DISK_288, 20, 80, 1,  "1.6 MB 5\"1/4", },
    /* 720 kB 5"1/4 floppy disks */
    { FDRIVE_DRV_120, FDRIVE_DISK_288,  9, 80, 1,  "720 kB 5\"1/4", },
    { FDRIVE_DRV_120, FDRIVE_DISK_288, 11, 80, 1,  "880 kB 5\"1/4", },
    /* 360 kB 5"1/4 floppy disks */
    { FDRIVE_DRV_120, FDRIVE_DISK_288,  9, 40, 1,  "360 kB 5\"1/4", },
    { FDRIVE_DRV_120, FDRIVE_DISK_288,  9, 40, 0,  "180 kB 5\"1/4", },
    { FDRIVE_DRV_120, FDRIVE_DISK_288, 10, 41, 1,  "410 kB 5\"1/4", },
    { FDRIVE_DRV_120, FDRIVE_DISK_288, 10, 42, 1,  "420 kB 5\"1/4", },
220
    /* 320 kB 5"1/4 floppy disks */
221 222 223 224 225 226 227 228
    { FDRIVE_DRV_120, FDRIVE_DISK_288,  8, 40, 1,  "320 kB 5\"1/4", },
    { FDRIVE_DRV_120, FDRIVE_DISK_288,  8, 40, 0,  "160 kB 5\"1/4", },
    /* 360 kB must match 5"1/4 better than 3"1/2... */
    { FDRIVE_DRV_144, FDRIVE_DISK_720,  9, 80, 0,  "360 kB 3\"1/2", },
    /* end */
    { FDRIVE_DRV_NONE, FDRIVE_DISK_NONE, -1, -1, 0, NULL, },
};

B
bellard 已提交
229
/* Revalidate a disk drive after a disk change */
230
static void fd_revalidate (fdrive_t *drv)
B
bellard 已提交
231
{
B
blueswir1 已提交
232
    const fd_format_t *parse;
233 234
    int64_t nb_sectors, size;
    int i, first_match, match;
235
    int nb_heads, max_track, last_sect, ro;
B
bellard 已提交
236 237

    FLOPPY_DPRINTF("revalidate\n");
238
    if (drv->bs != NULL && bdrv_is_inserted(drv->bs)) {
239 240 241 242
        ro = bdrv_is_read_only(drv->bs);
        bdrv_get_geometry_hint(drv->bs, &nb_heads, &max_track, &last_sect);
        if (nb_heads != 0 && max_track != 0 && last_sect != 0) {
            FLOPPY_DPRINTF("User defined disk (%d %d %d)",
243
                           nb_heads - 1, max_track, last_sect);
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
        } else {
            bdrv_get_geometry(drv->bs, &nb_sectors);
            match = -1;
            first_match = -1;
            for (i = 0;; i++) {
                parse = &fd_formats[i];
                if (parse->drive == FDRIVE_DRV_NONE)
                    break;
                if (drv->drive == parse->drive ||
                    drv->drive == FDRIVE_DRV_NONE) {
                    size = (parse->max_head + 1) * parse->max_track *
                        parse->last_sect;
                    if (nb_sectors == size) {
                        match = i;
                        break;
                    }
                    if (first_match == -1)
                        first_match = i;
                }
            }
            if (match == -1) {
                if (first_match == -1)
                    match = 1;
                else
                    match = first_match;
                parse = &fd_formats[match];
            }
            nb_heads = parse->max_head + 1;
            max_track = parse->max_track;
            last_sect = parse->last_sect;
            drv->drive = parse->drive;
            FLOPPY_DPRINTF("%s floppy disk (%d h %d t %d s) %s\n", parse->str,
276
                           nb_heads, max_track, last_sect, ro ? "ro" : "rw");
277 278 279 280 281 282 283 284 285
        }
        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;
        drv->ro = ro;
B
bellard 已提交
286
    } else {
287
        FLOPPY_DPRINTF("No disk in drive\n");
288
        drv->last_sect = 0;
289 290
        drv->max_track = 0;
        drv->flags &= ~FDISK_DBL_SIDES;
B
bellard 已提交
291
    }
292 293
}

B
bellard 已提交
294 295 296
/* Motor control */
static void fd_start (fdrive_t *drv)
{
297
    drv->drflags |= FDRIVE_MOTOR_ON;
B
bellard 已提交
298 299 300 301
}

static void fd_stop (fdrive_t *drv)
{
302
    drv->drflags &= ~FDRIVE_MOTOR_ON;
B
bellard 已提交
303 304 305 306 307 308 309 310 311 312
}

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

/********************************************************/
B
bellard 已提交
313
/* Intel 82078 floppy disk controller emulation          */
B
bellard 已提交
314

315 316
static void fdctrl_reset (fdctrl_t *fdctrl, int do_irq);
static void fdctrl_reset_fifo (fdctrl_t *fdctrl);
B
bellard 已提交
317 318
static int fdctrl_transfer_handler (void *opaque, int nchan,
                                    int dma_pos, int dma_len);
319
static void fdctrl_raise_irq (fdctrl_t *fdctrl, uint8_t status);
320
static void fdctrl_result_timer(void *opaque);
321 322 323 324 325 326 327 328 329 330 331

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 已提交
332 333

enum {
334
    FD_CTRL_ACTIVE = 0x01, /* XXX: suppress that */
B
bellard 已提交
335
    FD_CTRL_RESET  = 0x02,
336 337
    FD_CTRL_SLEEP  = 0x04, /* XXX: suppress that */
    FD_CTRL_BUSY   = 0x08, /* dma transfer in progress */
B
bellard 已提交
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
    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,
356
    FD_STATE_FORMAT = 0x40,
B
bellard 已提交
357 358 359
};

#define FD_STATE(state) ((state) & FD_STATE_STATE)
360 361
#define FD_SET_STATE(state, new_state) \
do { (state) = ((state) & ~FD_STATE_STATE) | (new_state); } while (0)
B
bellard 已提交
362 363
#define FD_MULTI_TRACK(state) ((state) & FD_STATE_MULTI)
#define FD_DID_SEEK(state) ((state) & FD_STATE_SEEK)
364
#define FD_FORMAT_CMD(state) ((state) & FD_STATE_FORMAT)
B
bellard 已提交
365

366 367
struct fdctrl_t {
    fdctrl_t *fdctrl;
B
bellard 已提交
368
    /* Controller's identification */
B
bellard 已提交
369 370
    uint8_t version;
    /* HW */
P
pbrook 已提交
371
    qemu_irq irq;
B
bellard 已提交
372
    int dma_chann;
373
    target_phys_addr_t io_base;
B
bellard 已提交
374
    /* Controller state */
375
    QEMUTimer *result_timer;
B
bellard 已提交
376 377 378 379 380 381 382 383 384 385 386
    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;
387
    uint8_t eot; /* last wanted sector */
B
bellard 已提交
388 389 390 391 392 393 394 395 396 397
    /* 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;
B
blueswir1 已提交
398
    /* Sun4m quirks? */
B
blueswir1 已提交
399
    int sun4m;
B
bellard 已提交
400 401
    /* Floppy drives */
    fdrive_t drives[2];
402 403 404 405 406 407 408
};

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

409
    switch (reg & 0x07) {
B
bellard 已提交
410
    case 0x00:
B
blueswir1 已提交
411
        if (fdctrl->sun4m) {
B
blueswir1 已提交
412 413 414 415 416
            // Identify to Linux as S82078B
            retval = fdctrl_read_statusB(fdctrl);
        } else {
            retval = (uint32_t)(-1);
        }
417
        break;
418
    case 0x01:
419 420
        retval = fdctrl_read_statusB(fdctrl);
        break;
421
    case 0x02:
422 423
        retval = fdctrl_read_dor(fdctrl);
        break;
424
    case 0x03:
425
        retval = fdctrl_read_tape(fdctrl);
426
        break;
427
    case 0x04:
428
        retval = fdctrl_read_main_status(fdctrl);
429
        break;
430
    case 0x05:
431
        retval = fdctrl_read_data(fdctrl);
432
        break;
433
    case 0x07:
434
        retval = fdctrl_read_dir(fdctrl);
435
        break;
436
    default:
437 438
        retval = (uint32_t)(-1);
        break;
439
    }
440
    FLOPPY_DPRINTF("read reg%d: 0x%02x\n", reg & 7, retval);
441 442 443 444 445 446 447 448

    return retval;
}

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

449 450
    FLOPPY_DPRINTF("write reg%d: 0x%02x\n", reg & 7, value);

451 452
    switch (reg & 0x07) {
    case 0x02:
453 454
        fdctrl_write_dor(fdctrl, value);
        break;
455
    case 0x03:
456
        fdctrl_write_tape(fdctrl, value);
457
        break;
458
    case 0x04:
459
        fdctrl_write_rate(fdctrl, value);
460
        break;
461
    case 0x05:
462
        fdctrl_write_data(fdctrl, value);
463
        break;
464
    default:
465
        break;
466
    }
467 468
}

B
bellard 已提交
469 470
static uint32_t fdctrl_read_mem (void *opaque, target_phys_addr_t reg)
{
471
    return fdctrl_read(opaque, (uint32_t)reg);
B
bellard 已提交
472 473
}

474
static void fdctrl_write_mem (void *opaque,
B
bellard 已提交
475 476
                              target_phys_addr_t reg, uint32_t value)
{
477
    fdctrl_write(opaque, (uint32_t)reg, value);
B
bellard 已提交
478 479
}

B
bellard 已提交
480
static CPUReadMemoryFunc *fdctrl_mem_read[3] = {
B
bellard 已提交
481 482 483
    fdctrl_read_mem,
    fdctrl_read_mem,
    fdctrl_read_mem,
B
bellard 已提交
484 485 486
};

static CPUWriteMemoryFunc *fdctrl_mem_write[3] = {
B
bellard 已提交
487 488 489
    fdctrl_write_mem,
    fdctrl_write_mem,
    fdctrl_write_mem,
B
bellard 已提交
490 491
};

492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 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 582 583 584
static void fd_save (QEMUFile *f, fdrive_t *fd)
{
    uint8_t tmp;

    tmp = fd->drflags;
    qemu_put_8s(f, &tmp);
    qemu_put_8s(f, &fd->head);
    qemu_put_8s(f, &fd->track);
    qemu_put_8s(f, &fd->sect);
    qemu_put_8s(f, &fd->dir);
    qemu_put_8s(f, &fd->rw);
}

static void fdc_save (QEMUFile *f, void *opaque)
{
    fdctrl_t *s = opaque;

    qemu_put_8s(f, &s->state);
    qemu_put_8s(f, &s->dma_en);
    qemu_put_8s(f, &s->cur_drv);
    qemu_put_8s(f, &s->bootsel);
    qemu_put_buffer(f, s->fifo, FD_SECTOR_LEN);
    qemu_put_be32s(f, &s->data_pos);
    qemu_put_be32s(f, &s->data_len);
    qemu_put_8s(f, &s->data_state);
    qemu_put_8s(f, &s->data_dir);
    qemu_put_8s(f, &s->int_status);
    qemu_put_8s(f, &s->eot);
    qemu_put_8s(f, &s->timer0);
    qemu_put_8s(f, &s->timer1);
    qemu_put_8s(f, &s->precomp_trk);
    qemu_put_8s(f, &s->config);
    qemu_put_8s(f, &s->lock);
    qemu_put_8s(f, &s->pwrd);
    fd_save(f, &s->drives[0]);
    fd_save(f, &s->drives[1]);
}

static int fd_load (QEMUFile *f, fdrive_t *fd)
{
    uint8_t tmp;

    qemu_get_8s(f, &tmp);
    fd->drflags = tmp;
    qemu_get_8s(f, &fd->head);
    qemu_get_8s(f, &fd->track);
    qemu_get_8s(f, &fd->sect);
    qemu_get_8s(f, &fd->dir);
    qemu_get_8s(f, &fd->rw);

    return 0;
}

static int fdc_load (QEMUFile *f, void *opaque, int version_id)
{
    fdctrl_t *s = opaque;
    int ret;

    if (version_id != 1)
        return -EINVAL;

    qemu_get_8s(f, &s->state);
    qemu_get_8s(f, &s->dma_en);
    qemu_get_8s(f, &s->cur_drv);
    qemu_get_8s(f, &s->bootsel);
    qemu_get_buffer(f, s->fifo, FD_SECTOR_LEN);
    qemu_get_be32s(f, &s->data_pos);
    qemu_get_be32s(f, &s->data_len);
    qemu_get_8s(f, &s->data_state);
    qemu_get_8s(f, &s->data_dir);
    qemu_get_8s(f, &s->int_status);
    qemu_get_8s(f, &s->eot);
    qemu_get_8s(f, &s->timer0);
    qemu_get_8s(f, &s->timer1);
    qemu_get_8s(f, &s->precomp_trk);
    qemu_get_8s(f, &s->config);
    qemu_get_8s(f, &s->lock);
    qemu_get_8s(f, &s->pwrd);

    ret = fd_load(f, &s->drives[0]);
    if (ret == 0)
        ret = fd_load(f, &s->drives[1]);

    return ret;
}

static void fdctrl_external_reset(void *opaque)
{
    fdctrl_t *s = opaque;

    fdctrl_reset(s, 0);
}

585
fdctrl_t *fdctrl_init (qemu_irq irq, int dma_chann, int mem_mapped,
586
                       target_phys_addr_t io_base,
587
                       BlockDriverState **fds)
B
bellard 已提交
588
{
589
    fdctrl_t *fdctrl;
B
bellard 已提交
590
    int io_mem;
B
bellard 已提交
591 592
    int i;

B
bellard 已提交
593
    FLOPPY_DPRINTF("init controller\n");
594 595 596
    fdctrl = qemu_mallocz(sizeof(fdctrl_t));
    if (!fdctrl)
        return NULL;
597
    fdctrl->result_timer = qemu_new_timer(vm_clock,
598 599
                                          fdctrl_result_timer, fdctrl);

B
bellard 已提交
600
    fdctrl->version = 0x90; /* Intel 82078 controller */
P
pbrook 已提交
601
    fdctrl->irq = irq;
602 603
    fdctrl->dma_chann = dma_chann;
    fdctrl->io_base = io_base;
604
    fdctrl->config = 0x60; /* Implicit seek, polling & FIFO enabled */
B
blueswir1 已提交
605
    fdctrl->sun4m = 0;
606 607 608
    if (fdctrl->dma_chann != -1) {
        fdctrl->dma_en = 1;
        DMA_register_channel(dma_chann, &fdctrl_transfer_handler, fdctrl);
B
bellard 已提交
609
    } else {
610
        fdctrl->dma_en = 0;
B
bellard 已提交
611
    }
612 613
    for (i = 0; i < 2; i++) {
        fd_init(&fdctrl->drives[i], fds[i]);
614
    }
615 616
    fdctrl_reset(fdctrl, 0);
    fdctrl->state = FD_CTRL_ACTIVE;
B
bellard 已提交
617
    if (mem_mapped) {
618 619
        io_mem = cpu_register_io_memory(0, fdctrl_mem_read, fdctrl_mem_write,
                                        fdctrl);
B
bellard 已提交
620
        cpu_register_physical_memory(io_base, 0x08, io_mem);
B
bellard 已提交
621
    } else {
622 623 624 625 626 627 628 629
        register_ioport_read((uint32_t)io_base + 0x01, 5, 1, &fdctrl_read,
                             fdctrl);
        register_ioport_read((uint32_t)io_base + 0x07, 1, 1, &fdctrl_read,
                             fdctrl);
        register_ioport_write((uint32_t)io_base + 0x01, 5, 1, &fdctrl_write,
                              fdctrl);
        register_ioport_write((uint32_t)io_base + 0x07, 1, 1, &fdctrl_write,
                              fdctrl);
B
bellard 已提交
630
    }
631 632
    register_savevm("fdc", io_base, 1, fdc_save, fdc_load, fdctrl);
    qemu_register_reset(fdctrl_external_reset, fdctrl);
633
    for (i = 0; i < 2; i++) {
634
        fd_revalidate(&fdctrl->drives[i]);
B
bellard 已提交
635
    }
636

637
    return fdctrl;
638
}
B
bellard 已提交
639

B
blueswir1 已提交
640 641 642 643 644 645
fdctrl_t *sun4m_fdctrl_init (qemu_irq irq, target_phys_addr_t io_base,
                             BlockDriverState **fds)
{
    fdctrl_t *fdctrl;

    fdctrl = fdctrl_init(irq, 0, 1, io_base, fds);
B
blueswir1 已提交
646
    fdctrl->sun4m = 1;
B
blueswir1 已提交
647 648 649 650

    return fdctrl;
}

651 652
/* XXX: may change if moved to bdrv */
int fdctrl_get_drive_type(fdctrl_t *fdctrl, int drive_num)
653
{
654
    return fdctrl->drives[drive_num].drive;
B
bellard 已提交
655 656 657
}

/* Change IRQ state */
658
static void fdctrl_reset_irq (fdctrl_t *fdctrl)
B
bellard 已提交
659
{
660
    FLOPPY_DPRINTF("Reset interrupt\n");
P
pbrook 已提交
661
    qemu_set_irq(fdctrl->irq, 0);
662
    fdctrl->state &= ~FD_CTRL_INTR;
B
bellard 已提交
663 664
}

665
static void fdctrl_raise_irq (fdctrl_t *fdctrl, uint8_t status)
B
bellard 已提交
666
{
B
bellard 已提交
667
    // Sparc mutation
B
blueswir1 已提交
668
    if (fdctrl->sun4m && !fdctrl->dma_en) {
669 670 671
        fdctrl->state &= ~FD_CTRL_BUSY;
        fdctrl->int_status = status;
        return;
B
bellard 已提交
672
    }
673
    if (~(fdctrl->state & FD_CTRL_INTR)) {
P
pbrook 已提交
674
        qemu_set_irq(fdctrl->irq, 1);
675
        fdctrl->state |= FD_CTRL_INTR;
B
bellard 已提交
676 677
    }
    FLOPPY_DPRINTF("Set interrupt status to 0x%02x\n", status);
678
    fdctrl->int_status = status;
B
bellard 已提交
679 680
}

B
bellard 已提交
681
/* Reset controller */
682
static void fdctrl_reset (fdctrl_t *fdctrl, int do_irq)
B
bellard 已提交
683 684 685
{
    int i;

B
bellard 已提交
686
    FLOPPY_DPRINTF("reset controller\n");
687
    fdctrl_reset_irq(fdctrl);
B
bellard 已提交
688
    /* Initialise controller */
689
    fdctrl->cur_drv = 0;
B
bellard 已提交
690
    /* FIFO state */
691 692 693 694
    fdctrl->data_pos = 0;
    fdctrl->data_len = 0;
    fdctrl->data_state = FD_STATE_CMD;
    fdctrl->data_dir = FD_DIR_WRITE;
B
bellard 已提交
695
    for (i = 0; i < MAX_FD; i++)
696 697
        fd_reset(&fdctrl->drives[i]);
    fdctrl_reset_fifo(fdctrl);
B
bellard 已提交
698
    if (do_irq)
699
        fdctrl_raise_irq(fdctrl, 0xc0);
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714
}

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 已提交
715 716 717
}

/* Status B register : 0x01 (read-only) */
718
static uint32_t fdctrl_read_statusB (fdctrl_t *fdctrl)
B
bellard 已提交
719 720 721 722 723 724
{
    FLOPPY_DPRINTF("status register: 0x00\n");
    return 0;
}

/* Digital output register : 0x02 */
725
static uint32_t fdctrl_read_dor (fdctrl_t *fdctrl)
B
bellard 已提交
726 727 728 729
{
    uint32_t retval = 0;

    /* Drive motors state indicators */
730
    if (drv0(fdctrl)->drflags & FDRIVE_MOTOR_ON)
731
        retval |= 1 << 5;
732
    if (drv1(fdctrl)->drflags & FDRIVE_MOTOR_ON)
733
        retval |= 1 << 4;
B
bellard 已提交
734
    /* DMA enable */
735
    retval |= fdctrl->dma_en << 3;
B
bellard 已提交
736
    /* Reset indicator */
737
    retval |= (fdctrl->state & FD_CTRL_RESET) == 0 ? 0x04 : 0;
B
bellard 已提交
738
    /* Selected drive */
739
    retval |= fdctrl->cur_drv;
B
bellard 已提交
740 741 742 743 744
    FLOPPY_DPRINTF("digital output register: 0x%02x\n", retval);

    return retval;
}

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

/* Tape drive register : 0x03 */
787
static uint32_t fdctrl_read_tape (fdctrl_t *fdctrl)
B
bellard 已提交
788 789 790 791
{
    uint32_t retval = 0;

    /* Disk boot selection indicator */
792
    retval |= fdctrl->bootsel << 2;
B
bellard 已提交
793 794 795 796 797 798
    /* Tape indicators: never allowed */
    FLOPPY_DPRINTF("tape drive register: 0x%02x\n", retval);

    return retval;
}

799
static void fdctrl_write_tape (fdctrl_t *fdctrl, uint32_t value)
B
bellard 已提交
800 801
{
    /* Reset mode */
802
    if (fdctrl->state & FD_CTRL_RESET) {
B
bellard 已提交
803
        FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
B
bellard 已提交
804 805 806 807
        return;
    }
    FLOPPY_DPRINTF("tape drive register set to 0x%02x\n", value);
    /* Disk boot selection indicator */
808
    fdctrl->bootsel = (value >> 2) & 1;
B
bellard 已提交
809 810 811 812
    /* Tape indicators: never allow */
}

/* Main status register : 0x04 (read) */
813
static uint32_t fdctrl_read_main_status (fdctrl_t *fdctrl)
B
bellard 已提交
814 815 816
{
    uint32_t retval = 0;

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

    return retval;
}

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

B
bellard 已提交
857 858 859
static int fdctrl_media_changed(fdrive_t *drv)
{
    int ret;
860

861
    if (!drv->bs)
B
bellard 已提交
862 863 864 865 866 867 868 869
        return 0;
    ret = bdrv_media_changed(drv->bs);
    if (ret) {
        fd_revalidate(drv);
    }
    return ret;
}

B
bellard 已提交
870
/* Digital input register : 0x07 (read-only) */
871
static uint32_t fdctrl_read_dir (fdctrl_t *fdctrl)
B
bellard 已提交
872 873 874
{
    uint32_t retval = 0;

B
bellard 已提交
875
    if (fdctrl_media_changed(drv0(fdctrl)) ||
876
        fdctrl_media_changed(drv1(fdctrl)))
B
bellard 已提交
877 878
        retval |= 0x80;
    if (retval != 0)
879
        FLOPPY_DPRINTF("Floppy digital input register: 0x%02x\n", retval);
B
bellard 已提交
880 881 882 883 884

    return retval;
}

/* FIFO state control */
885
static void fdctrl_reset_fifo (fdctrl_t *fdctrl)
B
bellard 已提交
886
{
887 888 889
    fdctrl->data_dir = FD_DIR_WRITE;
    fdctrl->data_pos = 0;
    FD_SET_STATE(fdctrl->data_state, FD_STATE_CMD);
B
bellard 已提交
890 891 892
}

/* Set FIFO status for the host to read */
893
static void fdctrl_set_fifo (fdctrl_t *fdctrl, int fifo_len, int do_irq)
B
bellard 已提交
894
{
895 896 897 898
    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 已提交
899
    if (do_irq)
900
        fdctrl_raise_irq(fdctrl, 0x00);
B
bellard 已提交
901 902 903
}

/* Set an error: unimplemented/unknown command */
904
static void fdctrl_unimplemented (fdctrl_t *fdctrl)
B
bellard 已提交
905 906
{
#if 0
907 908 909
    fdrive_t *cur_drv;

    cur_drv = get_cur_drv(fdctrl);
910
    fdctrl->fifo[0] = 0x60 | (cur_drv->head << 2) | fdctrl->cur_drv;
911 912 913
    fdctrl->fifo[1] = 0x00;
    fdctrl->fifo[2] = 0x00;
    fdctrl_set_fifo(fdctrl, 3, 1);
B
bellard 已提交
914
#else
915 916 917
    //    fdctrl_reset_fifo(fdctrl);
    fdctrl->fifo[0] = 0x80;
    fdctrl_set_fifo(fdctrl, 1, 0);
B
bellard 已提交
918 919 920 921
#endif
}

/* Callback for transfer end (stop or abort) */
922
static void fdctrl_stop_transfer (fdctrl_t *fdctrl, uint8_t status0,
923
                                  uint8_t status1, uint8_t status2)
B
bellard 已提交
924
{
925
    fdrive_t *cur_drv;
B
bellard 已提交
926

927
    cur_drv = get_cur_drv(fdctrl);
B
bellard 已提交
928 929
    FLOPPY_DPRINTF("transfer status: %02x %02x %02x (%02x)\n",
                   status0, status1, status2,
930 931
                   status0 | (cur_drv->head << 2) | fdctrl->cur_drv);
    fdctrl->fifo[0] = status0 | (cur_drv->head << 2) | fdctrl->cur_drv;
932 933 934 935 936 937 938
    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;
939
    if (fdctrl->state & FD_CTRL_BUSY) {
940
        DMA_release_DREQ(fdctrl->dma_chann);
941 942
        fdctrl->state &= ~FD_CTRL_BUSY;
    }
943
    fdctrl_set_fifo(fdctrl, 7, 1);
B
bellard 已提交
944 945 946
}

/* Prepare a data transfer (either DMA or FIFO) */
947
static void fdctrl_start_transfer (fdctrl_t *fdctrl, int direction)
B
bellard 已提交
948
{
949
    fdrive_t *cur_drv;
B
bellard 已提交
950 951 952
    uint8_t kh, kt, ks;
    int did_seek;

953 954 955 956 957
    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 已提交
958
    FLOPPY_DPRINTF("Start transfer at %d %d %02x %02x (%d)\n",
959
                   fdctrl->cur_drv, kh, kt, ks,
B
bellard 已提交
960 961
                   _fd_sector(kh, kt, ks, cur_drv->last_sect));
    did_seek = 0;
962
    switch (fd_seek(cur_drv, kh, kt, ks, fdctrl->config & 0x40)) {
B
bellard 已提交
963 964
    case 2:
        /* sect too big */
965 966 967 968
        fdctrl_stop_transfer(fdctrl, 0x40, 0x00, 0x00);
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
969 970 971
        return;
    case 3:
        /* track too big */
972 973 974 975
        fdctrl_stop_transfer(fdctrl, 0x40, 0x80, 0x00);
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
976 977 978
        return;
    case 4:
        /* No seek enabled */
979 980 981 982
        fdctrl_stop_transfer(fdctrl, 0x40, 0x00, 0x00);
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
983 984 985 986 987 988 989 990
        return;
    case 1:
        did_seek = 1;
        break;
    default:
        break;
    }
    /* Set the FIFO state */
991 992 993 994 995 996 997
    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 已提交
998
    if (did_seek)
999 1000 1001 1002 1003 1004
        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 {
1005
        int tmp;
T
ths 已提交
1006
        fdctrl->data_len = 128 << (fdctrl->fifo[5] > 7 ? 7 : fdctrl->fifo[5]);
1007 1008 1009
        tmp = (cur_drv->last_sect - ks + 1);
        if (fdctrl->fifo[0] & 0x80)
            tmp += cur_drv->last_sect;
1010
        fdctrl->data_len *= tmp;
1011
    }
1012
    fdctrl->eot = fdctrl->fifo[6];
1013
    if (fdctrl->dma_en) {
B
bellard 已提交
1014 1015
        int dma_mode;
        /* DMA transfer are enabled. Check if DMA channel is well programmed */
1016
        dma_mode = DMA_get_channel_mode(fdctrl->dma_chann);
B
bellard 已提交
1017
        dma_mode = (dma_mode >> 2) & 3;
1018
        FLOPPY_DPRINTF("dma_mode=%d direction=%d (%d - %d)\n",
1019
                       dma_mode, direction,
1020
                       (128 << fdctrl->fifo[5]) *
1021
                       (cur_drv->last_sect - ks + 1), fdctrl->data_len);
B
bellard 已提交
1022 1023 1024 1025 1026
        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 */
1027
            fdctrl->state |= FD_CTRL_BUSY;
B
bellard 已提交
1028
            /* Now, we just have to wait for the DMA controller to
B
bellard 已提交
1029 1030
             * recall us...
             */
1031 1032
            DMA_hold_DREQ(fdctrl->dma_chann);
            DMA_schedule(fdctrl->dma_chann);
B
bellard 已提交
1033
            return;
1034
        } else {
1035
            FLOPPY_ERROR("dma_mode=%d direction=%d\n", dma_mode, direction);
B
bellard 已提交
1036 1037 1038 1039
        }
    }
    FLOPPY_DPRINTF("start non-DMA transfer\n");
    /* IO based transfer: calculate len */
1040
    fdctrl_raise_irq(fdctrl, 0x00);
B
bellard 已提交
1041 1042 1043 1044 1045

    return;
}

/* Prepare a transfer of deleted data */
1046
static void fdctrl_start_transfer_del (fdctrl_t *fdctrl, int direction)
B
bellard 已提交
1047 1048 1049 1050
{
    /* We don't handle deleted data,
     * so we don't return *ANYTHING*
     */
1051
    fdctrl_stop_transfer(fdctrl, 0x60, 0x00, 0x00);
B
bellard 已提交
1052 1053 1054
}

/* handlers for DMA transfers */
B
bellard 已提交
1055 1056
static int fdctrl_transfer_handler (void *opaque, int nchan,
                                    int dma_pos, int dma_len)
B
bellard 已提交
1057
{
1058 1059 1060
    fdctrl_t *fdctrl;
    fdrive_t *cur_drv;
    int len, start_pos, rel_pos;
B
bellard 已提交
1061 1062
    uint8_t status0 = 0x00, status1 = 0x00, status2 = 0x00;

1063 1064
    fdctrl = opaque;
    if (!(fdctrl->state & FD_CTRL_BUSY)) {
B
bellard 已提交
1065 1066 1067
        FLOPPY_DPRINTF("Not in DMA transfer mode !\n");
        return 0;
    }
1068 1069 1070
    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 已提交
1071
        status2 = 0x04;
B
bellard 已提交
1072 1073
    if (dma_len > fdctrl->data_len)
        dma_len = fdctrl->data_len;
1074
    if (cur_drv->bs == NULL) {
1075 1076 1077 1078 1079
        if (fdctrl->data_dir == FD_DIR_WRITE)
            fdctrl_stop_transfer(fdctrl, 0x60, 0x00, 0x00);
        else
            fdctrl_stop_transfer(fdctrl, 0x40, 0x00, 0x00);
        len = 0;
1080 1081
        goto transfer_error;
    }
1082
    rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
B
bellard 已提交
1083 1084
    for (start_pos = fdctrl->data_pos; fdctrl->data_pos < dma_len;) {
        len = dma_len - fdctrl->data_pos;
1085 1086
        if (len + rel_pos > FD_SECTOR_LEN)
            len = FD_SECTOR_LEN - rel_pos;
B
bellard 已提交
1087 1088
        FLOPPY_DPRINTF("copy %d bytes (%d %d %d) %d pos %d %02x "
                       "(%d-0x%08x 0x%08x)\n", len, dma_len, fdctrl->data_pos,
1089 1090
                       fdctrl->data_len, fdctrl->cur_drv, cur_drv->head,
                       cur_drv->track, cur_drv->sect, fd_sector(cur_drv),
B
bellard 已提交
1091
                       fd_sector(cur_drv) * 512);
1092
        if (fdctrl->data_dir != FD_DIR_WRITE ||
1093
            len < FD_SECTOR_LEN || rel_pos != 0) {
1094 1095
            /* READ & SCAN commands and realign to a sector for WRITE */
            if (bdrv_read(cur_drv->bs, fd_sector(cur_drv),
1096
                          fdctrl->fifo, 1) < 0) {
B
bellard 已提交
1097 1098 1099
                FLOPPY_DPRINTF("Floppy: error getting sector %d\n",
                               fd_sector(cur_drv));
                /* Sure, image size is too small... */
1100
                memset(fdctrl->fifo, 0, FD_SECTOR_LEN);
B
bellard 已提交
1101
            }
1102
        }
1103 1104 1105
        switch (fdctrl->data_dir) {
        case FD_DIR_READ:
            /* READ commands */
B
bellard 已提交
1106 1107
            DMA_write_memory (nchan, fdctrl->fifo + rel_pos,
                              fdctrl->data_pos, len);
1108 1109
            break;
        case FD_DIR_WRITE:
1110
            /* WRITE commands */
B
bellard 已提交
1111 1112
            DMA_read_memory (nchan, fdctrl->fifo + rel_pos,
                             fdctrl->data_pos, len);
1113
            if (bdrv_write(cur_drv->bs, fd_sector(cur_drv),
1114
                           fdctrl->fifo, 1) < 0) {
1115 1116 1117
                FLOPPY_ERROR("writting sector %d\n", fd_sector(cur_drv));
                fdctrl_stop_transfer(fdctrl, 0x60, 0x00, 0x00);
                goto transfer_error;
1118
            }
1119 1120 1121
            break;
        default:
            /* SCAN commands */
1122
            {
1123
                uint8_t tmpbuf[FD_SECTOR_LEN];
1124
                int ret;
B
bellard 已提交
1125
                DMA_read_memory (nchan, tmpbuf, fdctrl->data_pos, len);
1126
                ret = memcmp(tmpbuf, fdctrl->fifo + rel_pos, len);
B
bellard 已提交
1127 1128 1129 1130
                if (ret == 0) {
                    status2 = 0x08;
                    goto end_transfer;
                }
1131 1132
                if ((ret < 0 && fdctrl->data_dir == FD_DIR_SCANL) ||
                    (ret > 0 && fdctrl->data_dir == FD_DIR_SCANH)) {
B
bellard 已提交
1133 1134 1135 1136
                    status2 = 0x00;
                    goto end_transfer;
                }
            }
1137
            break;
B
bellard 已提交
1138
        }
1139 1140
        fdctrl->data_pos += len;
        rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
1141
        if (rel_pos == 0) {
B
bellard 已提交
1142
            /* Seek to next sector */
1143 1144 1145 1146
            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 - len);
1147 1148 1149 1150
            /* XXX: cur_drv->sect >= cur_drv->last_sect should be an
               error in fact */
            if (cur_drv->sect >= cur_drv->last_sect ||
                cur_drv->sect == fdctrl->eot) {
1151 1152 1153 1154
                cur_drv->sect = 1;
                if (FD_MULTI_TRACK(fdctrl->data_state)) {
                    if (cur_drv->head == 0 &&
                        (cur_drv->flags & FDISK_DBL_SIDES) != 0) {
1155 1156 1157
                        cur_drv->head = 1;
                    } else {
                        cur_drv->head = 0;
1158 1159 1160
                        cur_drv->track++;
                        if ((cur_drv->flags & FDISK_DBL_SIDES) == 0)
                            break;
1161 1162 1163 1164
                    }
                } else {
                    cur_drv->track++;
                    break;
B
bellard 已提交
1165
                }
1166 1167 1168
                FLOPPY_DPRINTF("seek to next track (%d %02x %02x => %d)\n",
                               cur_drv->head, cur_drv->track,
                               cur_drv->sect, fd_sector(cur_drv));
1169 1170
            } else {
                cur_drv->sect++;
B
bellard 已提交
1171 1172 1173
            }
        }
    }
1174
 end_transfer:
1175 1176
    len = fdctrl->data_pos - start_pos;
    FLOPPY_DPRINTF("end transfer %d %d %d\n",
1177
                   fdctrl->data_pos, len, fdctrl->data_len);
1178 1179 1180
    if (fdctrl->data_dir == FD_DIR_SCANE ||
        fdctrl->data_dir == FD_DIR_SCANL ||
        fdctrl->data_dir == FD_DIR_SCANH)
B
bellard 已提交
1181
        status2 = 0x08;
1182
    if (FD_DID_SEEK(fdctrl->data_state))
B
bellard 已提交
1183
        status0 |= 0x20;
1184 1185
    fdctrl->data_len -= len;
    //    if (fdctrl->data_len == 0)
1186
    fdctrl_stop_transfer(fdctrl, status0, status1, status2);
1187
 transfer_error:
B
bellard 已提交
1188

1189
    return len;
B
bellard 已提交
1190 1191 1192
}

/* Data register : 0x05 */
1193
static uint32_t fdctrl_read_data (fdctrl_t *fdctrl)
B
bellard 已提交
1194
{
1195
    fdrive_t *cur_drv;
B
bellard 已提交
1196 1197 1198
    uint32_t retval = 0;
    int pos, len;

1199 1200 1201
    cur_drv = get_cur_drv(fdctrl);
    fdctrl->state &= ~FD_CTRL_SLEEP;
    if (FD_STATE(fdctrl->data_state) == FD_STATE_CMD) {
B
bellard 已提交
1202 1203 1204
        FLOPPY_ERROR("can't read data in CMD state\n");
        return 0;
    }
1205 1206
    pos = fdctrl->data_pos;
    if (FD_STATE(fdctrl->data_state) == FD_STATE_DATA) {
B
bellard 已提交
1207 1208
        pos %= FD_SECTOR_LEN;
        if (pos == 0) {
1209
            len = fdctrl->data_len - fdctrl->data_pos;
B
bellard 已提交
1210 1211
            if (len > FD_SECTOR_LEN)
                len = FD_SECTOR_LEN;
1212
            bdrv_read(cur_drv->bs, fd_sector(cur_drv), fdctrl->fifo, 1);
B
bellard 已提交
1213 1214
        }
    }
1215 1216 1217
    retval = fdctrl->fifo[pos];
    if (++fdctrl->data_pos == fdctrl->data_len) {
        fdctrl->data_pos = 0;
1218
        /* Switch from transfer mode to status mode
B
bellard 已提交
1219 1220
         * then from status mode to command mode
         */
1221
        if (FD_STATE(fdctrl->data_state) == FD_STATE_DATA) {
1222
            fdctrl_stop_transfer(fdctrl, 0x20, 0x00, 0x00);
1223
        } else {
1224
            fdctrl_reset_fifo(fdctrl);
1225 1226
            fdctrl_reset_irq(fdctrl);
        }
B
bellard 已提交
1227 1228 1229 1230 1231 1232
    }
    FLOPPY_DPRINTF("data register: 0x%02x\n", retval);

    return retval;
}

1233
static void fdctrl_format_sector (fdctrl_t *fdctrl)
B
bellard 已提交
1234
{
1235 1236 1237
    fdrive_t *cur_drv;
    uint8_t kh, kt, ks;
    int did_seek;
B
bellard 已提交
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
    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) {
T
ths 已提交
1280
        FLOPPY_ERROR("formatting sector %d\n", fd_sector(cur_drv));
1281 1282
        fdctrl_stop_transfer(fdctrl, 0x60, 0x00, 0x00);
    } else {
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294
        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;
        }
1295 1296 1297 1298 1299 1300 1301 1302
    }
}

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

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

static void fdctrl_result_timer(void *opaque)
{
    fdctrl_t *fdctrl = opaque;
1854
    fdrive_t *cur_drv = get_cur_drv(fdctrl);
1855

1856 1857 1858 1859 1860 1861 1862
    /* Pretend we are spinning.
     * This is needed for Coherent, which uses READ ID to check for
     * sector interleaving.
     */
    if (cur_drv->last_sect != 0) {
        cur_drv->sect = (cur_drv->sect % cur_drv->last_sect) + 1;
    }
1863 1864
    fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
}