fdc.c 59.7 KB
Newer Older
B
bellard 已提交
1
/*
2
 * QEMU Floppy disk emulator (Intel 82078)
3
 *
4
 * Copyright (c) 2003, 2007 Jocelyn Mayer
5
 * Copyright (c) 2008 Herv Poussineau
6
 *
B
bellard 已提交
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
 * 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 已提交
25 26 27 28
/*
 * The controller is used in Sun4m systems in a slightly different
 * way. There are changes in DOR register and DMA is not available.
 */
P
pbrook 已提交
29 30 31 32 33
#include "hw.h"
#include "fdc.h"
#include "block.h"
#include "qemu-timer.h"
#include "isa.h"
B
bellard 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60

/********************************************************/
/* 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            */
61 62
    FDRIVE_DISK_USER  = 0x04, /* User defined geometry  */
    FDRIVE_DISK_NONE  = 0x05, /* No disk                */
B
bellard 已提交
63 64 65 66 67 68 69 70 71
} 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;

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

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

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

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

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

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

177 178 179 180 181 182 183
/* 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;
T
ths 已提交
184
    const char *str;
185 186
} fd_format_t;

B
blueswir1 已提交
187
static const fd_format_t fd_formats[] = {
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 220 221 222 223 224
    /* 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", },
225
    /* 320 kB 5"1/4 floppy disks */
226 227 228 229 230 231 232 233
    { 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 已提交
234
/* Revalidate a disk drive after a disk change */
235
static void fd_revalidate (fdrive_t *drv)
B
bellard 已提交
236
{
B
blueswir1 已提交
237
    const fd_format_t *parse;
238
    uint64_t nb_sectors, size;
239
    int i, first_match, match;
240
    int nb_heads, max_track, last_sect, ro;
B
bellard 已提交
241 242

    FLOPPY_DPRINTF("revalidate\n");
243
    if (drv->bs != NULL && bdrv_is_inserted(drv->bs)) {
244 245 246 247
        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)",
248
                           nb_heads - 1, max_track, last_sect);
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
        } 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,
281
                           nb_heads, max_track, last_sect, ro ? "ro" : "rw");
282 283 284 285 286 287 288 289 290
        }
        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 已提交
291
    } else {
292
        FLOPPY_DPRINTF("No disk in drive\n");
293
        drv->last_sect = 0;
294 295
        drv->max_track = 0;
        drv->flags &= ~FDISK_DBL_SIDES;
B
bellard 已提交
296
    }
297 298
}

B
bellard 已提交
299 300 301
/* Motor control */
static void fd_start (fdrive_t *drv)
{
302
    drv->drflags |= FDRIVE_MOTOR_ON;
B
bellard 已提交
303 304 305 306
}

static void fd_stop (fdrive_t *drv)
{
307
    drv->drflags &= ~FDRIVE_MOTOR_ON;
B
bellard 已提交
308 309 310 311 312 313 314 315 316 317
}

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

/********************************************************/
B
bellard 已提交
318
/* Intel 82078 floppy disk controller emulation          */
B
bellard 已提交
319

320 321
static void fdctrl_reset (fdctrl_t *fdctrl, int do_irq);
static void fdctrl_reset_fifo (fdctrl_t *fdctrl);
B
bellard 已提交
322 323
static int fdctrl_transfer_handler (void *opaque, int nchan,
                                    int dma_pos, int dma_len);
324 325
static void fdctrl_raise_irq (fdctrl_t *fdctrl, uint8_t status);

B
blueswir1 已提交
326
static uint32_t fdctrl_read_statusA (fdctrl_t *fdctrl);
327 328 329 330 331 332 333 334 335 336
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 已提交
337 338

enum {
339
    FD_CTRL_ACTIVE = 0x01, /* XXX: suppress that */
B
bellard 已提交
340
    FD_CTRL_RESET  = 0x02,
341 342
    FD_CTRL_SLEEP  = 0x04, /* XXX: suppress that */
    FD_CTRL_BUSY   = 0x08, /* dma transfer in progress */
B
bellard 已提交
343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
};

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,
360
    FD_STATE_FORMAT = 0x40,
B
bellard 已提交
361 362
};

363
enum {
B
blueswir1 已提交
364 365
    FD_REG_SRA = 0x00,
    FD_REG_SRB = 0x01,
366 367 368 369 370 371 372 373 374
    FD_REG_DOR = 0x02,
    FD_REG_TDR = 0x03,
    FD_REG_MSR = 0x04,
    FD_REG_DSR = 0x04,
    FD_REG_FIFO = 0x05,
    FD_REG_DIR = 0x07,
};

enum {
375
    FD_CMD_READ_TRACK = 0x02,
376 377
    FD_CMD_SPECIFY = 0x03,
    FD_CMD_SENSE_DRIVE_STATUS = 0x04,
378 379
    FD_CMD_WRITE = 0x05,
    FD_CMD_READ = 0x06,
380 381
    FD_CMD_RECALIBRATE = 0x07,
    FD_CMD_SENSE_INTERRUPT_STATUS = 0x08,
382 383 384 385
    FD_CMD_WRITE_DELETED = 0x09,
    FD_CMD_READ_ID = 0x0a,
    FD_CMD_READ_DELETED = 0x0c,
    FD_CMD_FORMAT_TRACK = 0x0d,
386 387 388
    FD_CMD_DUMPREG = 0x0e,
    FD_CMD_SEEK = 0x0f,
    FD_CMD_VERSION = 0x10,
389
    FD_CMD_SCAN_EQUAL = 0x11,
390 391
    FD_CMD_PERPENDICULAR_MODE = 0x12,
    FD_CMD_CONFIGURE = 0x13,
392 393
    FD_CMD_LOCK = 0x14,
    FD_CMD_VERIFY = 0x16,
394 395
    FD_CMD_POWERDOWN_MODE = 0x17,
    FD_CMD_PART_ID = 0x18,
396 397
    FD_CMD_SCAN_LOW_OR_EQUAL = 0x19,
    FD_CMD_SCAN_HIGH_OR_EQUAL = 0x1d,
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
    FD_CMD_SAVE = 0x2c,
    FD_CMD_OPTION = 0x33,
    FD_CMD_RESTORE = 0x4c,
    FD_CMD_DRIVE_SPECIFICATION_COMMAND = 0x8e,
    FD_CMD_RELATIVE_SEEK_OUT = 0x8f,
    FD_CMD_FORMAT_AND_WRITE = 0xcd,
    FD_CMD_RELATIVE_SEEK_IN = 0xcf,
};

enum {
    FD_CONFIG_PRETRK = 0xff, /* Pre-compensation set to track 0 */
    FD_CONFIG_FIFOTHR = 0x0f, /* FIFO threshold set to 1 byte */
    FD_CONFIG_POLL  = 0x10, /* Poll enabled */
    FD_CONFIG_EFIFO = 0x20, /* FIFO disabled */
    FD_CONFIG_EIS   = 0x40, /* No implied seeks */
};

enum {
    FD_SR0_EQPMT    = 0x10,
    FD_SR0_SEEK     = 0x20,
    FD_SR0_ABNTERM  = 0x40,
    FD_SR0_INVCMD   = 0x80,
    FD_SR0_RDYCHG   = 0xc0,
};

B
blueswir1 已提交
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
enum {
    FD_SRA_DIR      = 0x01,
    FD_SRA_nWP      = 0x02,
    FD_SRA_nINDX    = 0x04,
    FD_SRA_HDSEL    = 0x08,
    FD_SRA_nTRK0    = 0x10,
    FD_SRA_STEP     = 0x20,
    FD_SRA_nDRV2    = 0x40,
    FD_SRA_INTPEND  = 0x80,
};

enum {
    FD_SRB_MTR0     = 0x01,
    FD_SRB_MTR1     = 0x02,
    FD_SRB_WGATE    = 0x04,
    FD_SRB_RDATA    = 0x08,
    FD_SRB_WDATA    = 0x10,
    FD_SRB_DR0      = 0x20,
};

443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
enum {
    FD_DOR_SELMASK  = 0x01,
    FD_DOR_nRESET   = 0x04,
    FD_DOR_DMAEN    = 0x08,
    FD_DOR_MOTEN0   = 0x10,
    FD_DOR_MOTEN1   = 0x20,
    FD_DOR_MOTEN2   = 0x40,
    FD_DOR_MOTEN3   = 0x80,
};

enum {
    FD_TDR_BOOTSEL  = 0x0c,
};

enum {
    FD_DSR_DRATEMASK= 0x03,
    FD_DSR_PWRDOWN  = 0x40,
    FD_DSR_SWRESET  = 0x80,
};

enum {
    FD_MSR_DRV0BUSY = 0x01,
    FD_MSR_DRV1BUSY = 0x02,
    FD_MSR_DRV2BUSY = 0x04,
    FD_MSR_DRV3BUSY = 0x08,
    FD_MSR_CMDBUSY  = 0x10,
    FD_MSR_NONDMA   = 0x20,
    FD_MSR_DIO      = 0x40,
    FD_MSR_RQM      = 0x80,
};

enum {
    FD_DIR_DSKCHG   = 0x80,
};

B
bellard 已提交
478
#define FD_STATE(state) ((state) & FD_STATE_STATE)
479 480
#define FD_SET_STATE(state, new_state) \
do { (state) = ((state) & ~FD_STATE_STATE) | (new_state); } while (0)
B
bellard 已提交
481 482
#define FD_MULTI_TRACK(state) ((state) & FD_STATE_MULTI)
#define FD_DID_SEEK(state) ((state) & FD_STATE_SEEK)
483
#define FD_FORMAT_CMD(state) ((state) & FD_STATE_FORMAT)
B
bellard 已提交
484

485 486
struct fdctrl_t {
    fdctrl_t *fdctrl;
B
bellard 已提交
487
    /* Controller's identification */
B
bellard 已提交
488 489
    uint8_t version;
    /* HW */
P
pbrook 已提交
490
    qemu_irq irq;
B
bellard 已提交
491
    int dma_chann;
492
    target_phys_addr_t io_base;
B
bellard 已提交
493
    /* Controller state */
494
    QEMUTimer *result_timer;
B
blueswir1 已提交
495 496
    uint8_t sra;
    uint8_t srb;
B
blueswir1 已提交
497 498
    uint8_t dor;
    uint8_t msr;
B
bellard 已提交
499 500 501 502 503
    uint8_t state;
    uint8_t dma_en;
    uint8_t cur_drv;
    uint8_t bootsel;
    /* Command FIFO */
504
    uint8_t *fifo;
B
bellard 已提交
505 506 507 508 509
    uint32_t data_pos;
    uint32_t data_len;
    uint8_t data_state;
    uint8_t data_dir;
    uint8_t int_status;
510
    uint8_t eot; /* last wanted sector */
B
bellard 已提交
511 512 513 514 515 516 517 518 519 520
    /* 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 已提交
521
    /* Sun4m quirks? */
B
blueswir1 已提交
522
    int sun4m;
B
bellard 已提交
523 524
    /* Floppy drives */
    fdrive_t drives[2];
525 526 527 528 529 530 531
};

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

532
    switch (reg & 0x07) {
B
blueswir1 已提交
533 534
    case FD_REG_SRA:
        retval = fdctrl_read_statusA(fdctrl);
535
        break;
B
blueswir1 已提交
536
    case FD_REG_SRB:
537 538
        retval = fdctrl_read_statusB(fdctrl);
        break;
539
    case FD_REG_DOR:
540 541
        retval = fdctrl_read_dor(fdctrl);
        break;
542
    case FD_REG_TDR:
543
        retval = fdctrl_read_tape(fdctrl);
544
        break;
545
    case FD_REG_MSR:
546
        retval = fdctrl_read_main_status(fdctrl);
547
        break;
548
    case FD_REG_FIFO:
549
        retval = fdctrl_read_data(fdctrl);
550
        break;
551
    case FD_REG_DIR:
552
        retval = fdctrl_read_dir(fdctrl);
553
        break;
554
    default:
555 556
        retval = (uint32_t)(-1);
        break;
557
    }
558
    FLOPPY_DPRINTF("read reg%d: 0x%02x\n", reg & 7, retval);
559 560 561 562 563 564 565 566

    return retval;
}

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

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

569
    switch (reg & 0x07) {
570
    case FD_REG_DOR:
571 572
        fdctrl_write_dor(fdctrl, value);
        break;
573
    case FD_REG_TDR:
574
        fdctrl_write_tape(fdctrl, value);
575
        break;
576
    case FD_REG_DSR:
577
        fdctrl_write_rate(fdctrl, value);
578
        break;
579
    case FD_REG_FIFO:
580
        fdctrl_write_data(fdctrl, value);
581
        break;
582
    default:
583
        break;
584
    }
585 586
}

B
bellard 已提交
587 588
static uint32_t fdctrl_read_mem (void *opaque, target_phys_addr_t reg)
{
589
    return fdctrl_read(opaque, (uint32_t)reg);
B
bellard 已提交
590 591
}

592
static void fdctrl_write_mem (void *opaque,
B
bellard 已提交
593 594
                              target_phys_addr_t reg, uint32_t value)
{
595
    fdctrl_write(opaque, (uint32_t)reg, value);
B
bellard 已提交
596 597
}

B
bellard 已提交
598
static CPUReadMemoryFunc *fdctrl_mem_read[3] = {
B
bellard 已提交
599 600 601
    fdctrl_read_mem,
    fdctrl_read_mem,
    fdctrl_read_mem,
B
bellard 已提交
602 603 604
};

static CPUWriteMemoryFunc *fdctrl_mem_write[3] = {
B
bellard 已提交
605 606 607
    fdctrl_write_mem,
    fdctrl_write_mem,
    fdctrl_write_mem,
B
bellard 已提交
608 609
};

610 611 612 613 614 615 616 617 618 619 620 621
static CPUReadMemoryFunc *fdctrl_mem_read_strict[3] = {
    fdctrl_read_mem,
    NULL,
    NULL,
};

static CPUWriteMemoryFunc *fdctrl_mem_write_strict[3] = {
    fdctrl_write_mem,
    NULL,
    NULL,
};

622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
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;

B
blueswir1 已提交
639 640 641
    /* Controller state */
    qemu_put_8s(f, &s->sra);
    qemu_put_8s(f, &s->srb);
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685
    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;

B
blueswir1 已提交
686 687 688
    /* Controller state */
    qemu_get_8s(f, &s->sra);
    qemu_get_8s(f, &s->srb);
689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720
    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);
}

B
blueswir1 已提交
721 722 723 724 725 726 727 728 729 730
static void fdctrl_handle_tc(void *opaque, int irq, int level)
{
    //fdctrl_t *s = opaque;

    if (level) {
        // XXX
        FLOPPY_DPRINTF("TC pulsed\n");
    }
}

731 732
/* XXX: may change if moved to bdrv */
int fdctrl_get_drive_type(fdctrl_t *fdctrl, int drive_num)
733
{
734
    return fdctrl->drives[drive_num].drive;
B
bellard 已提交
735 736 737
}

/* Change IRQ state */
738
static void fdctrl_reset_irq (fdctrl_t *fdctrl)
B
bellard 已提交
739
{
B
blueswir1 已提交
740 741
    if (!(fdctrl->sra & FD_SRA_INTPEND))
        return;
742
    FLOPPY_DPRINTF("Reset interrupt\n");
P
pbrook 已提交
743
    qemu_set_irq(fdctrl->irq, 0);
B
blueswir1 已提交
744
    fdctrl->sra &= ~FD_SRA_INTPEND;
B
bellard 已提交
745 746
}

747
static void fdctrl_raise_irq (fdctrl_t *fdctrl, uint8_t status)
B
bellard 已提交
748
{
B
bellard 已提交
749
    // Sparc mutation
B
blueswir1 已提交
750
    if (fdctrl->sun4m && !fdctrl->dma_en) {
751 752 753
        fdctrl->state &= ~FD_CTRL_BUSY;
        fdctrl->int_status = status;
        return;
B
bellard 已提交
754
    }
B
blueswir1 已提交
755
    if (!(fdctrl->sra & FD_SRA_INTPEND)) {
P
pbrook 已提交
756
        qemu_set_irq(fdctrl->irq, 1);
B
blueswir1 已提交
757
        fdctrl->sra |= FD_SRA_INTPEND;
B
bellard 已提交
758 759
    }
    FLOPPY_DPRINTF("Set interrupt status to 0x%02x\n", status);
760
    fdctrl->int_status = status;
B
bellard 已提交
761 762
}

B
bellard 已提交
763
/* Reset controller */
764
static void fdctrl_reset (fdctrl_t *fdctrl, int do_irq)
B
bellard 已提交
765 766 767
{
    int i;

B
bellard 已提交
768
    FLOPPY_DPRINTF("reset controller\n");
769
    fdctrl_reset_irq(fdctrl);
B
bellard 已提交
770
    /* Initialise controller */
B
blueswir1 已提交
771 772 773 774
    fdctrl->sra = 0;
    fdctrl->srb = 0xc0;
    if (!fdctrl->drives[1].bs)
        fdctrl->sra |= FD_SRA_nDRV2;
775
    fdctrl->cur_drv = 0;
B
blueswir1 已提交
776 777 778
    fdctrl->dor = 0;
    fdctrl->dor |= (fdctrl->dma_chann != -1) ? FD_DOR_DMAEN : 0;
    fdctrl->msr = 0;
B
bellard 已提交
779
    /* FIFO state */
780 781 782 783
    fdctrl->data_pos = 0;
    fdctrl->data_len = 0;
    fdctrl->data_state = FD_STATE_CMD;
    fdctrl->data_dir = FD_DIR_WRITE;
B
bellard 已提交
784
    for (i = 0; i < MAX_FD; i++)
785 786
        fd_reset(&fdctrl->drives[i]);
    fdctrl_reset_fifo(fdctrl);
B
bellard 已提交
787
    if (do_irq)
788
        fdctrl_raise_irq(fdctrl, FD_SR0_RDYCHG);
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803
}

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 已提交
804 805
}

B
blueswir1 已提交
806 807 808 809 810 811 812 813 814 815
/* Status A register : 0x00 (read-only) */
static uint32_t fdctrl_read_statusA (fdctrl_t *fdctrl)
{
    uint32_t retval = fdctrl->sra;

    FLOPPY_DPRINTF("status register A: 0x%02x\n", retval);

    return retval;
}

B
bellard 已提交
816
/* Status B register : 0x01 (read-only) */
817
static uint32_t fdctrl_read_statusB (fdctrl_t *fdctrl)
B
bellard 已提交
818
{
B
blueswir1 已提交
819 820 821 822 823
    uint32_t retval = fdctrl->srb;

    FLOPPY_DPRINTF("status register B: 0x%02x\n", retval);

    return retval;
B
bellard 已提交
824 825 826
}

/* Digital output register : 0x02 */
827
static uint32_t fdctrl_read_dor (fdctrl_t *fdctrl)
B
bellard 已提交
828 829 830 831
{
    uint32_t retval = 0;

    /* Drive motors state indicators */
832
    if (drv0(fdctrl)->drflags & FDRIVE_MOTOR_ON)
833
        retval |= FD_DOR_MOTEN0;
834
    if (drv1(fdctrl)->drflags & FDRIVE_MOTOR_ON)
835
        retval |= FD_DOR_MOTEN1;
B
bellard 已提交
836
    /* DMA enable */
B
blueswir1 已提交
837
    if (fdctrl->dor & FD_DOR_DMAEN)
838
        retval |= FD_DOR_DMAEN;
B
bellard 已提交
839
    /* Reset indicator */
840 841
    if (!(fdctrl->state & FD_CTRL_RESET))
        retval |= FD_DOR_nRESET;
B
bellard 已提交
842
    /* Selected drive */
843
    retval |= fdctrl->cur_drv;
B
bellard 已提交
844 845 846 847 848
    FLOPPY_DPRINTF("digital output register: 0x%02x\n", retval);

    return retval;
}

849
static void fdctrl_write_dor (fdctrl_t *fdctrl, uint32_t value)
B
bellard 已提交
850 851
{
    /* Reset mode */
852
    if (fdctrl->state & FD_CTRL_RESET) {
853
        if (!(value & FD_DOR_nRESET)) {
B
bellard 已提交
854
            FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
B
bellard 已提交
855 856 857 858
            return;
        }
    }
    FLOPPY_DPRINTF("digital output register set to 0x%02x\n", value);
B
blueswir1 已提交
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875

    /* Motors */
    if (value & FD_DOR_MOTEN0)
        fdctrl->srb |= FD_SRB_MTR0;
    else
        fdctrl->srb &= ~FD_SRB_MTR0;
    if (value & FD_DOR_MOTEN1)
        fdctrl->srb |= FD_SRB_MTR1;
    else
        fdctrl->srb &= ~FD_SRB_MTR1;

    /* Drive */
    if (value & 1)
        fdctrl->srb |= FD_SRB_DR0;
    else
        fdctrl->srb &= ~FD_SRB_DR0;

B
bellard 已提交
876
    /* Drive motors state indicators */
877
    if (value & FD_DOR_MOTEN1)
878
        fd_start(drv1(fdctrl));
B
bellard 已提交
879
    else
880
        fd_stop(drv1(fdctrl));
881
    if (value & FD_DOR_MOTEN0)
882
        fd_start(drv0(fdctrl));
B
bellard 已提交
883
    else
884
        fd_stop(drv0(fdctrl));
B
bellard 已提交
885 886
    /* DMA enable */
#if 0
887
    if (fdctrl->dma_chann != -1)
888
        fdctrl->dma_en = value & FD_DOR_DMAEN ? 1 : 0;
B
bellard 已提交
889 890
#endif
    /* Reset */
891
    if (!(value & FD_DOR_nRESET)) {
892
        if (!(fdctrl->state & FD_CTRL_RESET)) {
B
bellard 已提交
893
            FLOPPY_DPRINTF("controller enter RESET state\n");
894
            fdctrl->state |= FD_CTRL_RESET;
B
bellard 已提交
895 896
        }
    } else {
897
        if (fdctrl->state & FD_CTRL_RESET) {
B
bellard 已提交
898
            FLOPPY_DPRINTF("controller out of RESET state\n");
899
            fdctrl_reset(fdctrl, 1);
900
            fdctrl->state &= ~(FD_CTRL_RESET | FD_CTRL_SLEEP);
B
bellard 已提交
901 902 903
        }
    }
    /* Selected drive */
904
    fdctrl->cur_drv = value & FD_DOR_SELMASK;
B
blueswir1 已提交
905 906

    fdctrl->dor = value;
B
bellard 已提交
907 908 909
}

/* Tape drive register : 0x03 */
910
static uint32_t fdctrl_read_tape (fdctrl_t *fdctrl)
B
bellard 已提交
911 912 913 914
{
    uint32_t retval = 0;

    /* Disk boot selection indicator */
915
    retval |= fdctrl->bootsel << 2;
B
bellard 已提交
916 917 918 919 920 921
    /* Tape indicators: never allowed */
    FLOPPY_DPRINTF("tape drive register: 0x%02x\n", retval);

    return retval;
}

922
static void fdctrl_write_tape (fdctrl_t *fdctrl, uint32_t value)
B
bellard 已提交
923 924
{
    /* Reset mode */
925
    if (fdctrl->state & FD_CTRL_RESET) {
B
bellard 已提交
926
        FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
B
bellard 已提交
927 928 929 930
        return;
    }
    FLOPPY_DPRINTF("tape drive register set to 0x%02x\n", value);
    /* Disk boot selection indicator */
931
    fdctrl->bootsel = (value & FD_TDR_BOOTSEL) >> 2;
B
bellard 已提交
932 933 934 935
    /* Tape indicators: never allow */
}

/* Main status register : 0x04 (read) */
936
static uint32_t fdctrl_read_main_status (fdctrl_t *fdctrl)
B
bellard 已提交
937 938 939
{
    uint32_t retval = 0;

940 941
    fdctrl->state &= ~(FD_CTRL_SLEEP | FD_CTRL_RESET);
    if (!(fdctrl->state & FD_CTRL_BUSY)) {
B
bellard 已提交
942
        /* Data transfer allowed */
943
        retval |= FD_MSR_RQM;
B
bellard 已提交
944
        /* Data transfer direction indicator */
945
        if (fdctrl->data_dir == FD_DIR_READ)
946
            retval |= FD_MSR_DIO;
B
bellard 已提交
947
    }
948
    /* Should handle FD_MSR_NONDMA for SPECIFY command */
B
bellard 已提交
949
    /* Command busy indicator */
950 951
    if (FD_STATE(fdctrl->data_state) == FD_STATE_DATA ||
        FD_STATE(fdctrl->data_state) == FD_STATE_STATUS)
952
        retval |= FD_MSR_CMDBUSY;
B
bellard 已提交
953 954 955 956 957 958
    FLOPPY_DPRINTF("main status register: 0x%02x\n", retval);

    return retval;
}

/* Data select rate register : 0x04 (write) */
959
static void fdctrl_write_rate (fdctrl_t *fdctrl, uint32_t value)
B
bellard 已提交
960 961
{
    /* Reset mode */
962
    if (fdctrl->state & FD_CTRL_RESET) {
963 964 965
        FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
        return;
    }
B
bellard 已提交
966 967
    FLOPPY_DPRINTF("select rate register set to 0x%02x\n", value);
    /* Reset: autoclear */
968
    if (value & FD_DSR_SWRESET) {
969 970 971
        fdctrl->state |= FD_CTRL_RESET;
        fdctrl_reset(fdctrl, 1);
        fdctrl->state &= ~FD_CTRL_RESET;
B
bellard 已提交
972
    }
973
    if (value & FD_DSR_PWRDOWN) {
974 975
        fdctrl->state |= FD_CTRL_SLEEP;
        fdctrl_reset(fdctrl, 1);
B
bellard 已提交
976 977 978
    }
}

B
bellard 已提交
979 980 981
static int fdctrl_media_changed(fdrive_t *drv)
{
    int ret;
982

983
    if (!drv->bs)
B
bellard 已提交
984 985 986 987 988 989 990 991
        return 0;
    ret = bdrv_media_changed(drv->bs);
    if (ret) {
        fd_revalidate(drv);
    }
    return ret;
}

B
bellard 已提交
992
/* Digital input register : 0x07 (read-only) */
993
static uint32_t fdctrl_read_dir (fdctrl_t *fdctrl)
B
bellard 已提交
994 995 996
{
    uint32_t retval = 0;

B
bellard 已提交
997
    if (fdctrl_media_changed(drv0(fdctrl)) ||
998
        fdctrl_media_changed(drv1(fdctrl)))
999
        retval |= FD_DIR_DSKCHG;
B
bellard 已提交
1000
    if (retval != 0)
1001
        FLOPPY_DPRINTF("Floppy digital input register: 0x%02x\n", retval);
B
bellard 已提交
1002 1003 1004 1005 1006

    return retval;
}

/* FIFO state control */
1007
static void fdctrl_reset_fifo (fdctrl_t *fdctrl)
B
bellard 已提交
1008
{
1009 1010 1011
    fdctrl->data_dir = FD_DIR_WRITE;
    fdctrl->data_pos = 0;
    FD_SET_STATE(fdctrl->data_state, FD_STATE_CMD);
B
bellard 已提交
1012 1013 1014
}

/* Set FIFO status for the host to read */
1015
static void fdctrl_set_fifo (fdctrl_t *fdctrl, int fifo_len, int do_irq)
B
bellard 已提交
1016
{
1017 1018 1019 1020
    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 已提交
1021
    if (do_irq)
1022
        fdctrl_raise_irq(fdctrl, 0x00);
B
bellard 已提交
1023 1024 1025
}

/* Set an error: unimplemented/unknown command */
1026
static void fdctrl_unimplemented (fdctrl_t *fdctrl, int direction)
B
bellard 已提交
1027 1028
{
#if 0
1029 1030 1031
    fdrive_t *cur_drv;

    cur_drv = get_cur_drv(fdctrl);
1032
    fdctrl->fifo[0] = FD_SR0_ABNTERM | FD_SR0_SEEK | (cur_drv->head << 2) | fdctrl->cur_drv;
1033 1034 1035
    fdctrl->fifo[1] = 0x00;
    fdctrl->fifo[2] = 0x00;
    fdctrl_set_fifo(fdctrl, 3, 1);
B
bellard 已提交
1036
#else
1037
    //    fdctrl_reset_fifo(fdctrl);
1038
    fdctrl->fifo[0] = FD_SR0_INVCMD;
1039
    fdctrl_set_fifo(fdctrl, 1, 0);
B
bellard 已提交
1040 1041 1042
#endif
}

B
blueswir1 已提交
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076
/* Seek to next sector */
static int fdctrl_seek_to_next_sect (fdctrl_t *fdctrl, fdrive_t *cur_drv)
{
    FLOPPY_DPRINTF("seek to next sector (%d %02x %02x => %d)\n",
                   cur_drv->head, cur_drv->track, cur_drv->sect,
                   fd_sector(cur_drv));
    /* 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) {
        cur_drv->sect = 1;
        if (FD_MULTI_TRACK(fdctrl->data_state)) {
            if (cur_drv->head == 0 &&
                (cur_drv->flags & FDISK_DBL_SIDES) != 0) {
                cur_drv->head = 1;
            } else {
                cur_drv->head = 0;
                cur_drv->track++;
                if ((cur_drv->flags & FDISK_DBL_SIDES) == 0)
                    return 0;
            }
        } else {
            cur_drv->track++;
            return 0;
        }
        FLOPPY_DPRINTF("seek to next track (%d %02x %02x => %d)\n",
                       cur_drv->head, cur_drv->track,
                       cur_drv->sect, fd_sector(cur_drv));
    } else {
        cur_drv->sect++;
    }
    return 1;
}

B
bellard 已提交
1077
/* Callback for transfer end (stop or abort) */
1078
static void fdctrl_stop_transfer (fdctrl_t *fdctrl, uint8_t status0,
1079
                                  uint8_t status1, uint8_t status2)
B
bellard 已提交
1080
{
1081
    fdrive_t *cur_drv;
B
bellard 已提交
1082

1083
    cur_drv = get_cur_drv(fdctrl);
B
bellard 已提交
1084 1085
    FLOPPY_DPRINTF("transfer status: %02x %02x %02x (%02x)\n",
                   status0, status1, status2,
1086 1087
                   status0 | (cur_drv->head << 2) | fdctrl->cur_drv);
    fdctrl->fifo[0] = status0 | (cur_drv->head << 2) | fdctrl->cur_drv;
1088 1089 1090 1091 1092 1093 1094
    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;
B
blueswir1 已提交
1095
    if (!(fdctrl->msr & FD_MSR_NONDMA)) {
1096
        DMA_release_DREQ(fdctrl->dma_chann);
1097 1098
        fdctrl->state &= ~FD_CTRL_BUSY;
    }
B
blueswir1 已提交
1099
    fdctrl->msr &= ~FD_MSR_NONDMA;
1100
    fdctrl_set_fifo(fdctrl, 7, 1);
B
bellard 已提交
1101 1102 1103
}

/* Prepare a data transfer (either DMA or FIFO) */
1104
static void fdctrl_start_transfer (fdctrl_t *fdctrl, int direction)
B
bellard 已提交
1105
{
1106
    fdrive_t *cur_drv;
B
bellard 已提交
1107 1108 1109
    uint8_t kh, kt, ks;
    int did_seek;

1110
    fdctrl->cur_drv = fdctrl->fifo[1] & FD_DOR_SELMASK;
1111 1112 1113 1114
    cur_drv = get_cur_drv(fdctrl);
    kt = fdctrl->fifo[2];
    kh = fdctrl->fifo[3];
    ks = fdctrl->fifo[4];
B
bellard 已提交
1115
    FLOPPY_DPRINTF("Start transfer at %d %d %02x %02x (%d)\n",
1116
                   fdctrl->cur_drv, kh, kt, ks,
B
bellard 已提交
1117 1118
                   _fd_sector(kh, kt, ks, cur_drv->last_sect));
    did_seek = 0;
1119
    switch (fd_seek(cur_drv, kh, kt, ks, fdctrl->config & 0x40)) {
B
bellard 已提交
1120 1121
    case 2:
        /* sect too big */
1122
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1123 1124 1125
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
1126 1127 1128
        return;
    case 3:
        /* track too big */
1129
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x80, 0x00);
1130 1131 1132
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
1133 1134 1135
        return;
    case 4:
        /* No seek enabled */
1136
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1137 1138 1139
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
1140 1141 1142 1143 1144 1145 1146 1147
        return;
    case 1:
        did_seek = 1;
        break;
    default:
        break;
    }
    /* Set the FIFO state */
1148 1149 1150 1151 1152 1153 1154
    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 已提交
1155
    if (did_seek)
1156 1157 1158 1159 1160 1161
        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 {
1162
        int tmp;
T
ths 已提交
1163
        fdctrl->data_len = 128 << (fdctrl->fifo[5] > 7 ? 7 : fdctrl->fifo[5]);
1164 1165 1166
        tmp = (cur_drv->last_sect - ks + 1);
        if (fdctrl->fifo[0] & 0x80)
            tmp += cur_drv->last_sect;
1167
        fdctrl->data_len *= tmp;
1168
    }
1169
    fdctrl->eot = fdctrl->fifo[6];
B
blueswir1 已提交
1170
    if (fdctrl->dor & FD_DOR_DMAEN) {
B
bellard 已提交
1171 1172
        int dma_mode;
        /* DMA transfer are enabled. Check if DMA channel is well programmed */
1173
        dma_mode = DMA_get_channel_mode(fdctrl->dma_chann);
B
bellard 已提交
1174
        dma_mode = (dma_mode >> 2) & 3;
1175
        FLOPPY_DPRINTF("dma_mode=%d direction=%d (%d - %d)\n",
1176
                       dma_mode, direction,
1177
                       (128 << fdctrl->fifo[5]) *
1178
                       (cur_drv->last_sect - ks + 1), fdctrl->data_len);
B
bellard 已提交
1179 1180 1181 1182 1183
        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 */
1184
            fdctrl->state |= FD_CTRL_BUSY;
B
bellard 已提交
1185
            /* Now, we just have to wait for the DMA controller to
B
bellard 已提交
1186 1187
             * recall us...
             */
1188 1189
            DMA_hold_DREQ(fdctrl->dma_chann);
            DMA_schedule(fdctrl->dma_chann);
B
bellard 已提交
1190
            return;
1191
        } else {
1192
            FLOPPY_ERROR("dma_mode=%d direction=%d\n", dma_mode, direction);
B
bellard 已提交
1193 1194 1195
        }
    }
    FLOPPY_DPRINTF("start non-DMA transfer\n");
B
blueswir1 已提交
1196
    fdctrl->msr |= FD_MSR_NONDMA;
B
bellard 已提交
1197
    /* IO based transfer: calculate len */
1198
    fdctrl_raise_irq(fdctrl, 0x00);
B
bellard 已提交
1199 1200 1201 1202 1203

    return;
}

/* Prepare a transfer of deleted data */
1204
static void fdctrl_start_transfer_del (fdctrl_t *fdctrl, int direction)
B
bellard 已提交
1205 1206 1207 1208
{
    /* We don't handle deleted data,
     * so we don't return *ANYTHING*
     */
1209
    fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
B
bellard 已提交
1210 1211 1212
}

/* handlers for DMA transfers */
B
bellard 已提交
1213 1214
static int fdctrl_transfer_handler (void *opaque, int nchan,
                                    int dma_pos, int dma_len)
B
bellard 已提交
1215
{
1216 1217 1218
    fdctrl_t *fdctrl;
    fdrive_t *cur_drv;
    int len, start_pos, rel_pos;
B
bellard 已提交
1219 1220
    uint8_t status0 = 0x00, status1 = 0x00, status2 = 0x00;

1221 1222
    fdctrl = opaque;
    if (!(fdctrl->state & FD_CTRL_BUSY)) {
B
bellard 已提交
1223 1224 1225
        FLOPPY_DPRINTF("Not in DMA transfer mode !\n");
        return 0;
    }
1226 1227 1228
    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 已提交
1229
        status2 = 0x04;
B
bellard 已提交
1230 1231
    if (dma_len > fdctrl->data_len)
        dma_len = fdctrl->data_len;
1232
    if (cur_drv->bs == NULL) {
1233
        if (fdctrl->data_dir == FD_DIR_WRITE)
1234
            fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
1235
        else
1236
            fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1237
        len = 0;
1238 1239
        goto transfer_error;
    }
1240
    rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
B
bellard 已提交
1241 1242
    for (start_pos = fdctrl->data_pos; fdctrl->data_pos < dma_len;) {
        len = dma_len - fdctrl->data_pos;
1243 1244
        if (len + rel_pos > FD_SECTOR_LEN)
            len = FD_SECTOR_LEN - rel_pos;
B
bellard 已提交
1245 1246
        FLOPPY_DPRINTF("copy %d bytes (%d %d %d) %d pos %d %02x "
                       "(%d-0x%08x 0x%08x)\n", len, dma_len, fdctrl->data_pos,
1247 1248
                       fdctrl->data_len, fdctrl->cur_drv, cur_drv->head,
                       cur_drv->track, cur_drv->sect, fd_sector(cur_drv),
1249
                       fd_sector(cur_drv) * FD_SECTOR_LEN);
1250
        if (fdctrl->data_dir != FD_DIR_WRITE ||
1251
            len < FD_SECTOR_LEN || rel_pos != 0) {
1252 1253
            /* READ & SCAN commands and realign to a sector for WRITE */
            if (bdrv_read(cur_drv->bs, fd_sector(cur_drv),
1254
                          fdctrl->fifo, 1) < 0) {
B
bellard 已提交
1255 1256 1257
                FLOPPY_DPRINTF("Floppy: error getting sector %d\n",
                               fd_sector(cur_drv));
                /* Sure, image size is too small... */
1258
                memset(fdctrl->fifo, 0, FD_SECTOR_LEN);
B
bellard 已提交
1259
            }
1260
        }
1261 1262 1263
        switch (fdctrl->data_dir) {
        case FD_DIR_READ:
            /* READ commands */
B
bellard 已提交
1264 1265
            DMA_write_memory (nchan, fdctrl->fifo + rel_pos,
                              fdctrl->data_pos, len);
1266 1267
            break;
        case FD_DIR_WRITE:
1268
            /* WRITE commands */
B
bellard 已提交
1269 1270
            DMA_read_memory (nchan, fdctrl->fifo + rel_pos,
                             fdctrl->data_pos, len);
1271
            if (bdrv_write(cur_drv->bs, fd_sector(cur_drv),
1272
                           fdctrl->fifo, 1) < 0) {
1273
                FLOPPY_ERROR("writting sector %d\n", fd_sector(cur_drv));
1274
                fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
1275
                goto transfer_error;
1276
            }
1277 1278 1279
            break;
        default:
            /* SCAN commands */
1280
            {
1281
                uint8_t tmpbuf[FD_SECTOR_LEN];
1282
                int ret;
B
bellard 已提交
1283
                DMA_read_memory (nchan, tmpbuf, fdctrl->data_pos, len);
1284
                ret = memcmp(tmpbuf, fdctrl->fifo + rel_pos, len);
B
bellard 已提交
1285 1286 1287 1288
                if (ret == 0) {
                    status2 = 0x08;
                    goto end_transfer;
                }
1289 1290
                if ((ret < 0 && fdctrl->data_dir == FD_DIR_SCANL) ||
                    (ret > 0 && fdctrl->data_dir == FD_DIR_SCANH)) {
B
bellard 已提交
1291 1292 1293 1294
                    status2 = 0x00;
                    goto end_transfer;
                }
            }
1295
            break;
B
bellard 已提交
1296
        }
1297 1298
        fdctrl->data_pos += len;
        rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
1299
        if (rel_pos == 0) {
B
bellard 已提交
1300
            /* Seek to next sector */
B
blueswir1 已提交
1301 1302
            if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv))
                break;
B
bellard 已提交
1303 1304
        }
    }
1305
 end_transfer:
1306 1307
    len = fdctrl->data_pos - start_pos;
    FLOPPY_DPRINTF("end transfer %d %d %d\n",
1308
                   fdctrl->data_pos, len, fdctrl->data_len);
1309 1310 1311
    if (fdctrl->data_dir == FD_DIR_SCANE ||
        fdctrl->data_dir == FD_DIR_SCANL ||
        fdctrl->data_dir == FD_DIR_SCANH)
B
bellard 已提交
1312
        status2 = 0x08;
1313
    if (FD_DID_SEEK(fdctrl->data_state))
1314
        status0 |= FD_SR0_SEEK;
1315 1316
    fdctrl->data_len -= len;
    //    if (fdctrl->data_len == 0)
1317
    fdctrl_stop_transfer(fdctrl, status0, status1, status2);
1318
 transfer_error:
B
bellard 已提交
1319

1320
    return len;
B
bellard 已提交
1321 1322 1323
}

/* Data register : 0x05 */
1324
static uint32_t fdctrl_read_data (fdctrl_t *fdctrl)
B
bellard 已提交
1325
{
1326
    fdrive_t *cur_drv;
B
bellard 已提交
1327
    uint32_t retval = 0;
B
blueswir1 已提交
1328
    int pos;
B
bellard 已提交
1329

1330 1331 1332
    cur_drv = get_cur_drv(fdctrl);
    fdctrl->state &= ~FD_CTRL_SLEEP;
    if (FD_STATE(fdctrl->data_state) == FD_STATE_CMD) {
B
bellard 已提交
1333 1334 1335
        FLOPPY_ERROR("can't read data in CMD state\n");
        return 0;
    }
1336
    pos = fdctrl->data_pos;
B
blueswir1 已提交
1337
    if (fdctrl->msr & FD_MSR_NONDMA) {
B
bellard 已提交
1338 1339
        pos %= FD_SECTOR_LEN;
        if (pos == 0) {
B
blueswir1 已提交
1340 1341 1342 1343 1344 1345
            if (fdctrl->data_pos != 0)
                if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv)) {
                    FLOPPY_DPRINTF("error seeking to next sector %d\n",
                                   fd_sector(cur_drv));
                    return 0;
                }
1346
            bdrv_read(cur_drv->bs, fd_sector(cur_drv), fdctrl->fifo, 1);
B
bellard 已提交
1347 1348
        }
    }
1349 1350 1351
    retval = fdctrl->fifo[pos];
    if (++fdctrl->data_pos == fdctrl->data_len) {
        fdctrl->data_pos = 0;
1352
        /* Switch from transfer mode to status mode
B
bellard 已提交
1353 1354
         * then from status mode to command mode
         */
B
blueswir1 已提交
1355
        if (fdctrl->msr & FD_MSR_NONDMA) {
1356
            fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
1357
        } else {
1358
            fdctrl_reset_fifo(fdctrl);
1359 1360
            fdctrl_reset_irq(fdctrl);
        }
B
bellard 已提交
1361 1362 1363 1364 1365 1366
    }
    FLOPPY_DPRINTF("data register: 0x%02x\n", retval);

    return retval;
}

1367
static void fdctrl_format_sector (fdctrl_t *fdctrl)
B
bellard 已提交
1368
{
1369 1370 1371
    fdrive_t *cur_drv;
    uint8_t kh, kt, ks;
    int did_seek;
B
bellard 已提交
1372

1373
    fdctrl->cur_drv = fdctrl->fifo[1] & FD_DOR_SELMASK;
1374 1375 1376 1377 1378 1379 1380 1381
    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;
1382
    switch (fd_seek(cur_drv, kh, kt, ks, fdctrl->config & FD_CONFIG_EIS)) {
1383 1384
    case 2:
        /* sect too big */
1385
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1386 1387 1388 1389 1390 1391
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
        return;
    case 3:
        /* track too big */
1392
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x80, 0x00);
1393 1394 1395 1396 1397 1398
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
        return;
    case 4:
        /* No seek enabled */
1399
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413
        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 已提交
1414
        FLOPPY_ERROR("formatting sector %d\n", fd_sector(cur_drv));
1415
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
1416
    } else {
1417 1418 1419 1420
        if (cur_drv->sect == cur_drv->last_sect) {
            fdctrl->data_state &= ~FD_STATE_FORMAT;
            /* Last sector done */
            if (FD_DID_SEEK(fdctrl->data_state))
1421
                fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
1422 1423 1424 1425 1426 1427 1428
            else
                fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
        } else {
            /* More to do */
            fdctrl->data_pos = 0;
            fdctrl->data_len = 4;
        }
1429 1430 1431
    }
}

1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449
static void fdctrl_handle_lock (fdctrl_t *fdctrl, int direction)
{
    fdctrl->lock = (fdctrl->fifo[0] & 0x80) ? 1 : 0;
    fdctrl->fifo[0] = fdctrl->lock << 4;
    fdctrl_set_fifo(fdctrl, 1, fdctrl->lock);
}

static void fdctrl_handle_dumpreg (fdctrl_t *fdctrl, int direction)
{
    fdrive_t *cur_drv = get_cur_drv(fdctrl);

    /* Drives position */
    fdctrl->fifo[0] = drv0(fdctrl)->track;
    fdctrl->fifo[1] = drv1(fdctrl)->track;
    fdctrl->fifo[2] = 0;
    fdctrl->fifo[3] = 0;
    /* timers */
    fdctrl->fifo[4] = fdctrl->timer0;
B
blueswir1 已提交
1450
    fdctrl->fifo[5] = (fdctrl->timer1 << 1) | (fdctrl->dor & FD_DOR_DMAEN ? 1 : 0);
1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558
    fdctrl->fifo[6] = cur_drv->last_sect;
    fdctrl->fifo[7] = (fdctrl->lock << 7) |
        (cur_drv->perpendicular << 2);
    fdctrl->fifo[8] = fdctrl->config;
    fdctrl->fifo[9] = fdctrl->precomp_trk;
    fdctrl_set_fifo(fdctrl, 10, 0);
}

static void fdctrl_handle_version (fdctrl_t *fdctrl, int direction)
{
    /* Controller's version */
    fdctrl->fifo[0] = fdctrl->version;
    fdctrl_set_fifo(fdctrl, 1, 1);
}

static void fdctrl_handle_partid (fdctrl_t *fdctrl, int direction)
{
    fdctrl->fifo[0] = 0x41; /* Stepping 1 */
    fdctrl_set_fifo(fdctrl, 1, 0);
}

static void fdctrl_handle_restore (fdctrl_t *fdctrl, int direction)
{
    fdrive_t *cur_drv = get_cur_drv(fdctrl);

    /* Drives position */
    drv0(fdctrl)->track = fdctrl->fifo[3];
    drv1(fdctrl)->track = fdctrl->fifo[4];
    /* timers */
    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);
}

static void fdctrl_handle_save (fdctrl_t *fdctrl, int direction)
{
    fdrive_t *cur_drv = get_cur_drv(fdctrl);

    fdctrl->fifo[0] = 0;
    fdctrl->fifo[1] = 0;
    /* Drives position */
    fdctrl->fifo[2] = drv0(fdctrl)->track;
    fdctrl->fifo[3] = drv1(fdctrl)->track;
    fdctrl->fifo[4] = 0;
    fdctrl->fifo[5] = 0;
    /* timers */
    fdctrl->fifo[6] = fdctrl->timer0;
    fdctrl->fifo[7] = fdctrl->timer1;
    fdctrl->fifo[8] = cur_drv->last_sect;
    fdctrl->fifo[9] = (fdctrl->lock << 7) |
        (cur_drv->perpendicular << 2);
    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);
}

static void fdctrl_handle_readid (fdctrl_t *fdctrl, int direction)
{
    fdrive_t *cur_drv = get_cur_drv(fdctrl);

    /* XXX: should set main status register to busy */
    cur_drv->head = (fdctrl->fifo[1] >> 2) & 1;
    qemu_mod_timer(fdctrl->result_timer,
                   qemu_get_clock(vm_clock) + (ticks_per_sec / 50));
}

static void fdctrl_handle_format_track (fdctrl_t *fdctrl, int direction)
{
    fdrive_t *cur_drv;

    fdctrl->cur_drv = fdctrl->fifo[1] & FD_DOR_SELMASK;
    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
    /* 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);
}

static void fdctrl_handle_specify (fdctrl_t *fdctrl, int direction)
{
    fdctrl->timer0 = (fdctrl->fifo[1] >> 4) & 0xF;
    fdctrl->timer1 = fdctrl->fifo[2] >> 1;
B
blueswir1 已提交
1559 1560 1561 1562
    if (fdctrl->fifo[2] & 1)
        fdctrl->dor &= ~FD_DOR_DMAEN;
    else
        fdctrl->dor |= FD_DOR_DMAEN;
1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723
    /* No result back */
    fdctrl_reset_fifo(fdctrl);
}

static void fdctrl_handle_sense_drive_status (fdctrl_t *fdctrl, int direction)
{
    fdrive_t *cur_drv;

    fdctrl->cur_drv = fdctrl->fifo[1] & FD_DOR_SELMASK;
    cur_drv = get_cur_drv(fdctrl);
    cur_drv->head = (fdctrl->fifo[1] >> 2) & 1;
    /* 1 Byte status back */
    fdctrl->fifo[0] = (cur_drv->ro << 6) |
        (cur_drv->track == 0 ? 0x10 : 0x00) |
        (cur_drv->head << 2) |
        fdctrl->cur_drv |
        0x28;
    fdctrl_set_fifo(fdctrl, 1, 0);
}

static void fdctrl_handle_recalibrate (fdctrl_t *fdctrl, int direction)
{
    fdrive_t *cur_drv;

    fdctrl->cur_drv = fdctrl->fifo[1] & FD_DOR_SELMASK;
    cur_drv = get_cur_drv(fdctrl);
    fd_recalibrate(cur_drv);
    fdctrl_reset_fifo(fdctrl);
    /* Raise Interrupt */
    fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
}

static void fdctrl_handle_sense_interrupt_status (fdctrl_t *fdctrl, int direction)
{
    fdrive_t *cur_drv = get_cur_drv(fdctrl);

#if 0
    fdctrl->fifo[0] =
        fdctrl->int_status | (cur_drv->head << 2) | fdctrl->cur_drv;
#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
    fdctrl->fifo[1] = cur_drv->track;
    fdctrl_set_fifo(fdctrl, 2, 0);
    fdctrl_reset_irq(fdctrl);
    fdctrl->int_status = FD_SR0_RDYCHG;
}

static void fdctrl_handle_seek (fdctrl_t *fdctrl, int direction)
{
    fdrive_t *cur_drv;

    fdctrl->cur_drv = fdctrl->fifo[1] & FD_DOR_SELMASK;
    cur_drv = get_cur_drv(fdctrl);
    fd_start(cur_drv);
    if (fdctrl->fifo[2] <= cur_drv->track)
        cur_drv->dir = 1;
    else
        cur_drv->dir = 0;
    fdctrl_reset_fifo(fdctrl);
    if (fdctrl->fifo[2] > cur_drv->max_track) {
        fdctrl_raise_irq(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK);
    } else {
        cur_drv->track = fdctrl->fifo[2];
        /* Raise Interrupt */
        fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
    }
}

static void fdctrl_handle_perpendicular_mode (fdctrl_t *fdctrl, int direction)
{
    fdrive_t *cur_drv = get_cur_drv(fdctrl);

    if (fdctrl->fifo[1] & 0x80)
        cur_drv->perpendicular = fdctrl->fifo[1] & 0x7;
    /* No result back */
           fdctrl_reset_fifo(fdctrl);
}

static void fdctrl_handle_configure (fdctrl_t *fdctrl, int direction)
{
    fdctrl->config = fdctrl->fifo[2];
    fdctrl->precomp_trk =  fdctrl->fifo[3];
    /* No result back */
    fdctrl_reset_fifo(fdctrl);
}

static void fdctrl_handle_powerdown_mode (fdctrl_t *fdctrl, int direction)
{
    fdctrl->pwrd = fdctrl->fifo[1];
    fdctrl->fifo[0] = fdctrl->fifo[1];
    fdctrl_set_fifo(fdctrl, 1, 1);
}

static void fdctrl_handle_option (fdctrl_t *fdctrl, int direction)
{
    /* No result back */
    fdctrl_reset_fifo(fdctrl);
}

static void fdctrl_handle_drive_specification_command (fdctrl_t *fdctrl, int direction)
{
    fdrive_t *cur_drv = get_cur_drv(fdctrl);

    if (fdctrl->fifo[fdctrl->data_pos - 1] & 0x80) {
        /* Command parameters done */
        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);
        } else {
            fdctrl_reset_fifo(fdctrl);
        }
    } else if (fdctrl->data_len > 7) {
        /* ERROR */
        fdctrl->fifo[0] = 0x80 |
            (cur_drv->head << 2) | fdctrl->cur_drv;
        fdctrl_set_fifo(fdctrl, 1, 1);
    }
}

static void fdctrl_handle_relative_seek_out (fdctrl_t *fdctrl, int direction)
{
    fdrive_t *cur_drv = get_cur_drv(fdctrl);

    fdctrl->cur_drv = fdctrl->fifo[1] & FD_DOR_SELMASK;
    cur_drv = get_cur_drv(fdctrl);
    fd_start(cur_drv);
    cur_drv->dir = 0;
    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];
    }
    fdctrl_reset_fifo(fdctrl);
    fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
}

static void fdctrl_handle_relative_seek_in (fdctrl_t *fdctrl, int direction)
{
    fdrive_t *cur_drv = get_cur_drv(fdctrl);

    fdctrl->cur_drv = fdctrl->fifo[1] & FD_DOR_SELMASK;
    cur_drv = get_cur_drv(fdctrl);
    fd_start(cur_drv);
    cur_drv->dir = 1;
    if (fdctrl->fifo[2] > cur_drv->track) {
        cur_drv->track = 0;
    } else {
        cur_drv->track -= fdctrl->fifo[2];
    }
    fdctrl_reset_fifo(fdctrl);
    /* Raise Interrupt */
    fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
}

B
blueswir1 已提交
1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767
static const struct {
    uint8_t value;
    uint8_t mask;
    const char* name;
    int parameters;
    void (*handler)(fdctrl_t *fdctrl, int direction);
    int direction;
} handlers[] = {
    { FD_CMD_READ, 0x1f, "READ", 8, fdctrl_start_transfer, FD_DIR_READ },
    { FD_CMD_WRITE, 0x3f, "WRITE", 8, fdctrl_start_transfer, FD_DIR_WRITE },
    { FD_CMD_SEEK, 0xff, "SEEK", 2, fdctrl_handle_seek },
    { FD_CMD_SENSE_INTERRUPT_STATUS, 0xff, "SENSE INTERRUPT STATUS", 0, fdctrl_handle_sense_interrupt_status },
    { FD_CMD_RECALIBRATE, 0xff, "RECALIBRATE", 1, fdctrl_handle_recalibrate },
    { FD_CMD_FORMAT_TRACK, 0xbf, "FORMAT TRACK", 5, fdctrl_handle_format_track },
    { FD_CMD_READ_TRACK, 0xbf, "READ TRACK", 8, fdctrl_start_transfer, FD_DIR_READ },
    { FD_CMD_RESTORE, 0xff, "RESTORE", 17, fdctrl_handle_restore }, /* part of READ DELETED DATA */
    { FD_CMD_SAVE, 0xff, "SAVE", 0, fdctrl_handle_save }, /* part of READ DELETED DATA */
    { FD_CMD_READ_DELETED, 0x1f, "READ DELETED DATA", 8, fdctrl_start_transfer_del, FD_DIR_READ },
    { FD_CMD_SCAN_EQUAL, 0x1f, "SCAN EQUAL", 8, fdctrl_start_transfer, FD_DIR_SCANE },
    { FD_CMD_VERIFY, 0x1f, "VERIFY", 8, fdctrl_unimplemented },
    { FD_CMD_SCAN_LOW_OR_EQUAL, 0x1f, "SCAN LOW OR EQUAL", 8, fdctrl_start_transfer, FD_DIR_SCANL },
    { FD_CMD_SCAN_HIGH_OR_EQUAL, 0x1f, "SCAN HIGH OR EQUAL", 8, fdctrl_start_transfer, FD_DIR_SCANH },
    { FD_CMD_WRITE_DELETED, 0x3f, "WRITE DELETED DATA", 8, fdctrl_start_transfer_del, FD_DIR_WRITE },
    { FD_CMD_READ_ID, 0xbf, "READ ID", 1, fdctrl_handle_readid },
    { FD_CMD_SPECIFY, 0xff, "SPECIFY", 2, fdctrl_handle_specify },
    { FD_CMD_SENSE_DRIVE_STATUS, 0xff, "SENSE DRIVE STATUS", 1, fdctrl_handle_sense_drive_status },
    { FD_CMD_PERPENDICULAR_MODE, 0xff, "PERPENDICULAR MODE", 1, fdctrl_handle_perpendicular_mode },
    { FD_CMD_CONFIGURE, 0xff, "CONFIGURE", 3, fdctrl_handle_configure },
    { FD_CMD_POWERDOWN_MODE, 0xff, "POWERDOWN MODE", 2, fdctrl_handle_powerdown_mode },
    { FD_CMD_OPTION, 0xff, "OPTION", 1, fdctrl_handle_option },
    { FD_CMD_DRIVE_SPECIFICATION_COMMAND, 0xff, "DRIVE SPECIFICATION COMMAND", 5, fdctrl_handle_drive_specification_command },
    { FD_CMD_RELATIVE_SEEK_OUT, 0xff, "RELATIVE SEEK OUT", 2, fdctrl_handle_relative_seek_out },
    { FD_CMD_FORMAT_AND_WRITE, 0xff, "FORMAT AND WRITE", 10, fdctrl_unimplemented },
    { FD_CMD_RELATIVE_SEEK_IN, 0xff, "RELATIVE SEEK IN", 2, fdctrl_handle_relative_seek_in },
    { FD_CMD_LOCK, 0x7f, "LOCK", 0, fdctrl_handle_lock },
    { FD_CMD_DUMPREG, 0xff, "DUMPREG", 0, fdctrl_handle_dumpreg },
    { FD_CMD_VERSION, 0xff, "VERSION", 0, fdctrl_handle_version },
    { FD_CMD_PART_ID, 0xff, "PART ID", 0, fdctrl_handle_partid },
    { FD_CMD_WRITE, 0x1f, "WRITE (BeOS)", 8, fdctrl_start_transfer, FD_DIR_WRITE }, /* not in specification ; BeOS 4.5 bug */
    { 0, 0, "unknown", 0, fdctrl_unimplemented }, /* default handler */
};
/* Associate command to an index in the 'handlers' array */
static uint8_t command_to_handler[256];

1768 1769 1770
static void fdctrl_write_data (fdctrl_t *fdctrl, uint32_t value)
{
    fdrive_t *cur_drv;
1771
    int pos;
1772 1773

    cur_drv = get_cur_drv(fdctrl);
B
bellard 已提交
1774
    /* Reset mode */
1775
    if (fdctrl->state & FD_CTRL_RESET) {
B
bellard 已提交
1776
        FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
B
bellard 已提交
1777 1778
        return;
    }
1779 1780
    fdctrl->state &= ~FD_CTRL_SLEEP;
    if (FD_STATE(fdctrl->data_state) == FD_STATE_STATUS) {
B
bellard 已提交
1781 1782 1783 1784
        FLOPPY_ERROR("can't write data in status mode\n");
        return;
    }
    /* Is it write command time ? */
B
blueswir1 已提交
1785
    if (fdctrl->msr & FD_MSR_NONDMA) {
B
bellard 已提交
1786
        /* FIFO data write */
1787 1788 1789
        fdctrl->fifo[fdctrl->data_pos++] = value;
        if (fdctrl->data_pos % FD_SECTOR_LEN == (FD_SECTOR_LEN - 1) ||
            fdctrl->data_pos == fdctrl->data_len) {
1790
            bdrv_write(cur_drv->bs, fd_sector(cur_drv), fdctrl->fifo, 1);
B
blueswir1 已提交
1791 1792 1793 1794 1795
            if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv)) {
                FLOPPY_DPRINTF("error seeking to next sector %d\n",
                               fd_sector(cur_drv));
                return;
            }
B
bellard 已提交
1796
        }
1797
        /* Switch from transfer mode to status mode
B
bellard 已提交
1798 1799
         * then from status mode to command mode
         */
1800
        if (FD_STATE(fdctrl->data_state) == FD_STATE_DATA)
1801
            fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
B
bellard 已提交
1802 1803
        return;
    }
1804
    if (fdctrl->data_pos == 0) {
B
bellard 已提交
1805
        /* Command */
B
blueswir1 已提交
1806 1807 1808
        pos = command_to_handler[value & 0xff];
        FLOPPY_DPRINTF("%s command\n", handlers[pos].name);
        fdctrl->data_len = handlers[pos].parameters + 1;
B
bellard 已提交
1809
    }
B
blueswir1 已提交
1810

1811 1812 1813
    FLOPPY_DPRINTF("%s: %02x\n", __func__, value);
    fdctrl->fifo[fdctrl->data_pos] = value;
    if (++fdctrl->data_pos == fdctrl->data_len) {
B
bellard 已提交
1814 1815 1816
        /* We now have all parameters
         * and will be able to treat the command
         */
1817 1818
        if (fdctrl->data_state & FD_STATE_FORMAT) {
            fdctrl_format_sector(fdctrl);
B
bellard 已提交
1819 1820
            return;
        }
1821

B
blueswir1 已提交
1822 1823 1824
        pos = command_to_handler[fdctrl->fifo[0] & 0xff];
        FLOPPY_DPRINTF("treat %s command\n", handlers[pos].name);
        (*handlers[pos].handler)(fdctrl, handlers[pos].direction);
B
bellard 已提交
1825 1826
    }
}
1827 1828 1829 1830

static void fdctrl_result_timer(void *opaque)
{
    fdctrl_t *fdctrl = opaque;
1831
    fdrive_t *cur_drv = get_cur_drv(fdctrl);
1832

1833 1834 1835 1836 1837 1838 1839
    /* 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;
    }
1840 1841
    fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
}
B
blueswir1 已提交
1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926

/* Init functions */
static fdctrl_t *fdctrl_init_common (qemu_irq irq, int dma_chann,
                                     target_phys_addr_t io_base,
                                     BlockDriverState **fds)
{
    fdctrl_t *fdctrl;
    int i, j;

    /* Fill 'command_to_handler' lookup table */
    for (i = sizeof(handlers)/sizeof(handlers[0]) - 1; i >= 0; i--) {
        for (j = 0; j < sizeof(command_to_handler); j++) {
            if ((j & handlers[i].mask) == handlers[i].value)
                command_to_handler[j] = i;
        }
    }

    FLOPPY_DPRINTF("init controller\n");
    fdctrl = qemu_mallocz(sizeof(fdctrl_t));
    if (!fdctrl)
        return NULL;
    fdctrl->fifo = qemu_memalign(512, FD_SECTOR_LEN);
    if (fdctrl->fifo == NULL) {
        qemu_free(fdctrl);
        return NULL;
    }
    fdctrl->result_timer = qemu_new_timer(vm_clock,
                                          fdctrl_result_timer, fdctrl);

    fdctrl->version = 0x90; /* Intel 82078 controller */
    fdctrl->irq = irq;
    fdctrl->dma_chann = dma_chann;
    fdctrl->io_base = io_base;
    fdctrl->config = FD_CONFIG_EIS | FD_CONFIG_EFIFO; /* Implicit seek, polling & FIFO enabled */
    if (fdctrl->dma_chann != -1) {
        DMA_register_channel(dma_chann, &fdctrl_transfer_handler, fdctrl);
    }
    for (i = 0; i < MAX_FD; i++) {
        fd_init(&fdctrl->drives[i], fds[i]);
    }
    fdctrl_reset(fdctrl, 0);
    fdctrl->state = FD_CTRL_ACTIVE;
    register_savevm("fdc", io_base, 1, fdc_save, fdc_load, fdctrl);
    qemu_register_reset(fdctrl_external_reset, fdctrl);
    for (i = 0; i < MAX_FD; i++) {
        fd_revalidate(&fdctrl->drives[i]);
    }

    return fdctrl;
}

fdctrl_t *fdctrl_init (qemu_irq irq, int dma_chann, int mem_mapped,
                       target_phys_addr_t io_base,
                       BlockDriverState **fds)
{
    fdctrl_t *fdctrl;
    int io_mem;

    fdctrl = fdctrl_init_common(irq, dma_chann, io_base, fds);

    fdctrl->sun4m = 0;
    if (mem_mapped) {
        io_mem = cpu_register_io_memory(0, fdctrl_mem_read, fdctrl_mem_write,
                                        fdctrl);
        cpu_register_physical_memory(io_base, 0x08, io_mem);
    } else {
        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);
    }

    return fdctrl;
}

fdctrl_t *sun4m_fdctrl_init (qemu_irq irq, target_phys_addr_t io_base,
                             BlockDriverState **fds, qemu_irq *fdc_tc)
{
    fdctrl_t *fdctrl;
    int io_mem;

B
blueswir1 已提交
1927
    fdctrl = fdctrl_init_common(irq, -1, io_base, fds);
B
blueswir1 已提交
1928 1929 1930 1931 1932 1933 1934 1935 1936
    fdctrl->sun4m = 1;
    io_mem = cpu_register_io_memory(0, fdctrl_mem_read_strict,
                                    fdctrl_mem_write_strict,
                                    fdctrl);
    cpu_register_physical_memory(io_base, 0x08, io_mem);
    *fdc_tc = *qemu_allocate_irqs(fdctrl_handle_tc, fdctrl, 1);

    return fdctrl;
}