fdc.c 62.3 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.
 */
B
Blue Swirl 已提交
29

P
pbrook 已提交
30 31
#include "hw.h"
#include "fdc.h"
32
#include "qemu-error.h"
P
pbrook 已提交
33 34
#include "qemu-timer.h"
#include "isa.h"
B
Blue Swirl 已提交
35
#include "sysbus.h"
B
Blue Swirl 已提交
36
#include "qdev-addr.h"
B
Blue Swirl 已提交
37
#include "blockdev.h"
38
#include "sysemu.h"
B
bellard 已提交
39 40 41 42 43 44

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

#ifdef DEBUG_FLOPPY
45 46
#define FLOPPY_DPRINTF(fmt, ...)                                \
    do { printf("FLOPPY: " fmt , ## __VA_ARGS__); } while (0)
B
bellard 已提交
47
#else
48
#define FLOPPY_DPRINTF(fmt, ...)
B
bellard 已提交
49 50
#endif

51 52
#define FLOPPY_ERROR(fmt, ...)                                          \
    do { printf("FLOPPY ERROR: %s: " fmt, __func__ , ## __VA_ARGS__); } while (0)
B
bellard 已提交
53 54 55 56

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

B
blueswir1 已提交
57 58 59
#define GET_CUR_DRV(fdctrl) ((fdctrl)->cur_drv)
#define SET_CUR_DRV(fdctrl, drive) ((fdctrl)->cur_drv = (drive))

B
bellard 已提交
60
/* Will always be a fixed parameter for us */
61 62 63
#define FD_SECTOR_LEN          512
#define FD_SECTOR_SC           2   /* Sector size code */
#define FD_RESET_SENSEI_COUNT  4   /* Number of sense interrupts on RESET */
B
bellard 已提交
64 65

/* Floppy disk drive emulation */
B
Blue Swirl 已提交
66
typedef enum FDiskFlags {
67
    FDISK_DBL_SIDES  = 0x01,
B
Blue Swirl 已提交
68
} FDiskFlags;
69

B
Blue Swirl 已提交
70
typedef struct FDrive {
B
bellard 已提交
71 72
    BlockDriverState *bs;
    /* Drive status */
B
Blue Swirl 已提交
73
    FDriveType drive;
B
bellard 已提交
74 75 76 77 78 79
    uint8_t perpendicular;    /* 2.88 MB access mode    */
    /* Position */
    uint8_t head;
    uint8_t track;
    uint8_t sect;
    /* Media */
B
Blue Swirl 已提交
80
    FDiskFlags flags;
B
bellard 已提交
81 82
    uint8_t last_sect;        /* Nb sector per track    */
    uint8_t max_track;        /* Nb of tracks           */
83
    uint16_t bps;             /* Bytes per sector       */
B
bellard 已提交
84
    uint8_t ro;               /* Is read-only           */
85
    uint8_t media_changed;    /* Is media changed       */
B
Blue Swirl 已提交
86
} FDrive;
B
bellard 已提交
87

B
Blue Swirl 已提交
88
static void fd_init(FDrive *drv)
B
bellard 已提交
89 90
{
    /* Drive */
B
bellard 已提交
91
    drv->drive = FDRIVE_DRV_NONE;
B
bellard 已提交
92 93
    drv->perpendicular = 0;
    /* Disk */
94
    drv->last_sect = 0;
B
bellard 已提交
95 96 97
    drv->max_track = 0;
}

98 99
#define NUM_SIDES(drv) ((drv)->flags & FDISK_DBL_SIDES ? 2 : 1)

B
Blue Swirl 已提交
100
static int fd_sector_calc(uint8_t head, uint8_t track, uint8_t sect,
101
                          uint8_t last_sect, uint8_t num_sides)
B
bellard 已提交
102
{
103
    return (((track * num_sides) + head) * last_sect) + sect - 1;
B
bellard 已提交
104 105 106
}

/* Returns current position, in sectors, for given drive */
B
Blue Swirl 已提交
107
static int fd_sector(FDrive *drv)
B
bellard 已提交
108
{
109 110
    return fd_sector_calc(drv->head, drv->track, drv->sect, drv->last_sect,
                          NUM_SIDES(drv));
B
bellard 已提交
111 112
}

B
blueswir1 已提交
113 114 115 116 117 118 119
/* Seek to a new position:
 * returns 0 if already on right track
 * returns 1 if track changed
 * returns 2 if track is invalid
 * returns 3 if sector is invalid
 * returns 4 if seek is disabled
 */
B
Blue Swirl 已提交
120 121
static int fd_seek(FDrive *drv, uint8_t head, uint8_t track, uint8_t sect,
                   int enable_seek)
B
bellard 已提交
122 123
{
    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
        return 3;
    }
141
    sector = fd_sector_calc(head, track, sect, drv->last_sect, NUM_SIDES(drv));
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
}

/* Set drive back to track 0 */
B
Blue Swirl 已提交
162
static void fd_recalibrate(FDrive *drv)
B
bellard 已提交
163 164 165 166 167 168 169 170
{
    FLOPPY_DPRINTF("recalibrate\n");
    drv->head = 0;
    drv->track = 0;
    drv->sect = 1;
}

/* Revalidate a disk drive after a disk change */
B
Blue Swirl 已提交
171
static void fd_revalidate(FDrive *drv)
B
bellard 已提交
172
{
173
    int nb_heads, max_track, last_sect, ro;
174
    FDriveType drive;
B
bellard 已提交
175 176

    FLOPPY_DPRINTF("revalidate\n");
177
    if (drv->bs != NULL && bdrv_is_inserted(drv->bs)) {
178
        ro = bdrv_is_read_only(drv->bs);
179 180
        bdrv_get_floppy_geometry_hint(drv->bs, &nb_heads, &max_track,
                                      &last_sect, drv->drive, &drive);
181 182
        if (nb_heads != 0 && max_track != 0 && last_sect != 0) {
            FLOPPY_DPRINTF("User defined disk (%d %d %d)",
183
                           nb_heads - 1, max_track, last_sect);
184
        } else {
185 186
            FLOPPY_DPRINTF("Floppy disk (%d h %d t %d s) %s\n", nb_heads,
                           max_track, last_sect, ro ? "ro" : "rw");
187 188 189 190 191 192 193 194 195
        }
        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;
196
        drv->drive = drive;
B
bellard 已提交
197
    } else {
198
        FLOPPY_DPRINTF("No disk in drive\n");
199
        drv->last_sect = 0;
200 201
        drv->max_track = 0;
        drv->flags &= ~FDISK_DBL_SIDES;
B
bellard 已提交
202
    }
203 204
}

B
bellard 已提交
205
/********************************************************/
B
bellard 已提交
206
/* Intel 82078 floppy disk controller emulation          */
B
bellard 已提交
207

B
Blue Swirl 已提交
208 209
typedef struct FDCtrl FDCtrl;

B
Blue Swirl 已提交
210 211
static void fdctrl_reset(FDCtrl *fdctrl, int do_irq);
static void fdctrl_reset_fifo(FDCtrl *fdctrl);
B
bellard 已提交
212
static int fdctrl_transfer_handler (void *opaque, int nchan,
A
Anthony Liguori 已提交
213
                                    int dma_pos, int dma_len);
B
Blue Swirl 已提交
214 215 216 217 218 219 220 221 222 223 224 225 226
static void fdctrl_raise_irq(FDCtrl *fdctrl, uint8_t status0);

static uint32_t fdctrl_read_statusA(FDCtrl *fdctrl);
static uint32_t fdctrl_read_statusB(FDCtrl *fdctrl);
static uint32_t fdctrl_read_dor(FDCtrl *fdctrl);
static void fdctrl_write_dor(FDCtrl *fdctrl, uint32_t value);
static uint32_t fdctrl_read_tape(FDCtrl *fdctrl);
static void fdctrl_write_tape(FDCtrl *fdctrl, uint32_t value);
static uint32_t fdctrl_read_main_status(FDCtrl *fdctrl);
static void fdctrl_write_rate(FDCtrl *fdctrl, uint32_t value);
static uint32_t fdctrl_read_data(FDCtrl *fdctrl);
static void fdctrl_write_data(FDCtrl *fdctrl, uint32_t value);
static uint32_t fdctrl_read_dir(FDCtrl *fdctrl);
227
static void fdctrl_write_ccr(FDCtrl *fdctrl, uint32_t value);
B
bellard 已提交
228 229 230 231 232 233 234 235 236 237

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

enum {
B
blueswir1 已提交
238 239 240
    FD_STATE_MULTI  = 0x01,	/* multi track flag */
    FD_STATE_FORMAT = 0x02,	/* format flag */
    FD_STATE_SEEK   = 0x04,	/* seek flag */
B
bellard 已提交
241 242
};

243
enum {
B
blueswir1 已提交
244 245
    FD_REG_SRA = 0x00,
    FD_REG_SRB = 0x01,
246 247 248 249 250 251
    FD_REG_DOR = 0x02,
    FD_REG_TDR = 0x03,
    FD_REG_MSR = 0x04,
    FD_REG_DSR = 0x04,
    FD_REG_FIFO = 0x05,
    FD_REG_DIR = 0x07,
252
    FD_REG_CCR = 0x07,
253 254 255
};

enum {
256
    FD_CMD_READ_TRACK = 0x02,
257 258
    FD_CMD_SPECIFY = 0x03,
    FD_CMD_SENSE_DRIVE_STATUS = 0x04,
259 260
    FD_CMD_WRITE = 0x05,
    FD_CMD_READ = 0x06,
261 262
    FD_CMD_RECALIBRATE = 0x07,
    FD_CMD_SENSE_INTERRUPT_STATUS = 0x08,
263 264 265 266
    FD_CMD_WRITE_DELETED = 0x09,
    FD_CMD_READ_ID = 0x0a,
    FD_CMD_READ_DELETED = 0x0c,
    FD_CMD_FORMAT_TRACK = 0x0d,
267 268 269
    FD_CMD_DUMPREG = 0x0e,
    FD_CMD_SEEK = 0x0f,
    FD_CMD_VERSION = 0x10,
270
    FD_CMD_SCAN_EQUAL = 0x11,
271 272
    FD_CMD_PERPENDICULAR_MODE = 0x12,
    FD_CMD_CONFIGURE = 0x13,
273 274
    FD_CMD_LOCK = 0x14,
    FD_CMD_VERIFY = 0x16,
275 276
    FD_CMD_POWERDOWN_MODE = 0x17,
    FD_CMD_PART_ID = 0x18,
277 278
    FD_CMD_SCAN_LOW_OR_EQUAL = 0x19,
    FD_CMD_SCAN_HIGH_OR_EQUAL = 0x1d,
279
    FD_CMD_SAVE = 0x2e,
280
    FD_CMD_OPTION = 0x33,
281
    FD_CMD_RESTORE = 0x4e,
282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303
    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 已提交
304
enum {
305
    FD_SR1_NW       = 0x02, /* Not writable */
B
blueswir1 已提交
306 307 308 309 310 311 312 313
    FD_SR1_EC       = 0x80, /* End of cylinder */
};

enum {
    FD_SR2_SNS      = 0x04, /* Scan not satisfied */
    FD_SR2_SEH      = 0x08, /* Scan equal hit */
};

B
blueswir1 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333
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,
};

334
enum {
B
blueswir1 已提交
335 336 337
#if MAX_FD == 4
    FD_DOR_SELMASK  = 0x03,
#else
338
    FD_DOR_SELMASK  = 0x01,
B
blueswir1 已提交
339
#endif
340 341 342 343 344 345 346 347 348
    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 {
B
blueswir1 已提交
349
#if MAX_FD == 4
350
    FD_TDR_BOOTSEL  = 0x0c,
B
blueswir1 已提交
351 352 353
#else
    FD_TDR_BOOTSEL  = 0x04,
#endif
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
};

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 已提交
377 378
#define FD_MULTI_TRACK(state) ((state) & FD_STATE_MULTI)
#define FD_DID_SEEK(state) ((state) & FD_STATE_SEEK)
379
#define FD_FORMAT_CMD(state) ((state) & FD_STATE_FORMAT)
B
bellard 已提交
380

B
Blue Swirl 已提交
381
struct FDCtrl {
A
Avi Kivity 已提交
382
    MemoryRegion iomem;
P
pbrook 已提交
383
    qemu_irq irq;
B
bellard 已提交
384
    /* Controller state */
385
    QEMUTimer *result_timer;
386 387 388 389
    int dma_chann;
    /* Controller's identification */
    uint8_t version;
    /* HW */
B
blueswir1 已提交
390 391
    uint8_t sra;
    uint8_t srb;
B
blueswir1 已提交
392
    uint8_t dor;
J
Juan Quintela 已提交
393
    uint8_t dor_vmstate; /* only used as temp during vmstate */
B
blueswir1 已提交
394
    uint8_t tdr;
B
blueswir1 已提交
395
    uint8_t dsr;
B
blueswir1 已提交
396
    uint8_t msr;
B
bellard 已提交
397
    uint8_t cur_drv;
B
blueswir1 已提交
398 399 400
    uint8_t status0;
    uint8_t status1;
    uint8_t status2;
B
bellard 已提交
401
    /* Command FIFO */
402
    uint8_t *fifo;
J
Juan Quintela 已提交
403
    int32_t fifo_size;
B
bellard 已提交
404 405 406 407
    uint32_t data_pos;
    uint32_t data_len;
    uint8_t data_state;
    uint8_t data_dir;
408
    uint8_t eot; /* last wanted sector */
B
bellard 已提交
409 410 411 412 413 414 415 416
    /* States kept only to be returned back */
    /* precompensation */
    uint8_t precomp_trk;
    uint8_t config;
    uint8_t lock;
    /* Power down config (also with status regB access mode */
    uint8_t pwrd;
    /* Floppy drives */
J
Juan Quintela 已提交
417
    uint8_t num_floppies;
418 419
    /* Sun4m quirks? */
    int sun4m;
B
Blue Swirl 已提交
420
    FDrive drives[MAX_FD];
421
    int reset_sensei;
422 423 424
    /* Timers state */
    uint8_t timer0;
    uint8_t timer1;
425 426
};

B
Blue Swirl 已提交
427
typedef struct FDCtrlSysBus {
G
Gerd Hoffmann 已提交
428
    SysBusDevice busdev;
B
Blue Swirl 已提交
429 430
    struct FDCtrl state;
} FDCtrlSysBus;
G
Gerd Hoffmann 已提交
431

B
Blue Swirl 已提交
432
typedef struct FDCtrlISABus {
G
Gerd Hoffmann 已提交
433
    ISADevice busdev;
B
Blue Swirl 已提交
434
    struct FDCtrl state;
435 436
    int32_t bootindexA;
    int32_t bootindexB;
B
Blue Swirl 已提交
437
} FDCtrlISABus;
G
Gerd Hoffmann 已提交
438

439 440
static uint32_t fdctrl_read (void *opaque, uint32_t reg)
{
B
Blue Swirl 已提交
441
    FDCtrl *fdctrl = opaque;
442 443
    uint32_t retval;

K
Kevin Wolf 已提交
444
    reg &= 7;
B
blueswir1 已提交
445
    switch (reg) {
B
blueswir1 已提交
446 447
    case FD_REG_SRA:
        retval = fdctrl_read_statusA(fdctrl);
448
        break;
B
blueswir1 已提交
449
    case FD_REG_SRB:
450 451
        retval = fdctrl_read_statusB(fdctrl);
        break;
452
    case FD_REG_DOR:
453 454
        retval = fdctrl_read_dor(fdctrl);
        break;
455
    case FD_REG_TDR:
456
        retval = fdctrl_read_tape(fdctrl);
457
        break;
458
    case FD_REG_MSR:
459
        retval = fdctrl_read_main_status(fdctrl);
460
        break;
461
    case FD_REG_FIFO:
462
        retval = fdctrl_read_data(fdctrl);
463
        break;
464
    case FD_REG_DIR:
465
        retval = fdctrl_read_dir(fdctrl);
466
        break;
467
    default:
468 469
        retval = (uint32_t)(-1);
        break;
470
    }
471
    FLOPPY_DPRINTF("read reg%d: 0x%02x\n", reg & 7, retval);
472 473 474 475 476 477

    return retval;
}

static void fdctrl_write (void *opaque, uint32_t reg, uint32_t value)
{
B
Blue Swirl 已提交
478
    FDCtrl *fdctrl = opaque;
479

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

K
Kevin Wolf 已提交
482
    reg &= 7;
B
blueswir1 已提交
483
    switch (reg) {
484
    case FD_REG_DOR:
485 486
        fdctrl_write_dor(fdctrl, value);
        break;
487
    case FD_REG_TDR:
488
        fdctrl_write_tape(fdctrl, value);
489
        break;
490
    case FD_REG_DSR:
491
        fdctrl_write_rate(fdctrl, value);
492
        break;
493
    case FD_REG_FIFO:
494
        fdctrl_write_data(fdctrl, value);
495
        break;
496 497 498
    case FD_REG_CCR:
        fdctrl_write_ccr(fdctrl, value);
        break;
499
    default:
500
        break;
501
    }
502 503
}

A
Avi Kivity 已提交
504 505
static uint64_t fdctrl_read_mem (void *opaque, target_phys_addr_t reg,
                                 unsigned ize)
B
bellard 已提交
506
{
507
    return fdctrl_read(opaque, (uint32_t)reg);
B
bellard 已提交
508 509
}

A
Avi Kivity 已提交
510 511
static void fdctrl_write_mem (void *opaque, target_phys_addr_t reg,
                              uint64_t value, unsigned size)
B
bellard 已提交
512
{
513
    fdctrl_write(opaque, (uint32_t)reg, value);
B
bellard 已提交
514 515
}

A
Avi Kivity 已提交
516 517 518 519
static const MemoryRegionOps fdctrl_mem_ops = {
    .read = fdctrl_read_mem,
    .write = fdctrl_write_mem,
    .endianness = DEVICE_NATIVE_ENDIAN,
B
bellard 已提交
520 521
};

A
Avi Kivity 已提交
522 523 524 525 526 527 528 529
static const MemoryRegionOps fdctrl_mem_strict_ops = {
    .read = fdctrl_read_mem,
    .write = fdctrl_write_mem,
    .endianness = DEVICE_NATIVE_ENDIAN,
    .valid = {
        .min_access_size = 1,
        .max_access_size = 1,
    },
530 531
};

532 533 534 535
static bool fdrive_media_changed_needed(void *opaque)
{
    FDrive *drive = opaque;

536
    return (drive->bs != NULL && drive->media_changed != 1);
537 538 539 540 541 542 543 544 545 546 547 548 549
}

static const VMStateDescription vmstate_fdrive_media_changed = {
    .name = "fdrive/media_changed",
    .version_id = 1,
    .minimum_version_id = 1,
    .minimum_version_id_old = 1,
    .fields      = (VMStateField[]) {
        VMSTATE_UINT8(media_changed, FDrive),
        VMSTATE_END_OF_LIST()
    }
};

J
Juan Quintela 已提交
550 551 552 553 554
static const VMStateDescription vmstate_fdrive = {
    .name = "fdrive",
    .version_id = 1,
    .minimum_version_id = 1,
    .minimum_version_id_old = 1,
555
    .fields      = (VMStateField[]) {
B
Blue Swirl 已提交
556 557 558
        VMSTATE_UINT8(head, FDrive),
        VMSTATE_UINT8(track, FDrive),
        VMSTATE_UINT8(sect, FDrive),
J
Juan Quintela 已提交
559
        VMSTATE_END_OF_LIST()
560 561 562 563 564 565 566 567
    },
    .subsections = (VMStateSubsection[]) {
        {
            .vmsd = &vmstate_fdrive_media_changed,
            .needed = &fdrive_media_changed_needed,
        } , {
            /* empty */
        }
J
Juan Quintela 已提交
568 569
    }
};
570

571
static void fdc_pre_save(void *opaque)
572
{
B
Blue Swirl 已提交
573
    FDCtrl *s = opaque;
574

J
Juan Quintela 已提交
575
    s->dor_vmstate = s->dor | GET_CUR_DRV(s);
576 577
}

578
static int fdc_post_load(void *opaque, int version_id)
579
{
B
Blue Swirl 已提交
580
    FDCtrl *s = opaque;
581

J
Juan Quintela 已提交
582 583
    SET_CUR_DRV(s, s->dor_vmstate & FD_DOR_SELMASK);
    s->dor = s->dor_vmstate & ~FD_DOR_SELMASK;
584 585 586
    return 0;
}

J
Juan Quintela 已提交
587
static const VMStateDescription vmstate_fdc = {
588
    .name = "fdc",
J
Juan Quintela 已提交
589 590 591 592 593 594 595
    .version_id = 2,
    .minimum_version_id = 2,
    .minimum_version_id_old = 2,
    .pre_save = fdc_pre_save,
    .post_load = fdc_post_load,
    .fields      = (VMStateField []) {
        /* Controller State */
B
Blue Swirl 已提交
596 597 598 599 600 601 602 603 604
        VMSTATE_UINT8(sra, FDCtrl),
        VMSTATE_UINT8(srb, FDCtrl),
        VMSTATE_UINT8(dor_vmstate, FDCtrl),
        VMSTATE_UINT8(tdr, FDCtrl),
        VMSTATE_UINT8(dsr, FDCtrl),
        VMSTATE_UINT8(msr, FDCtrl),
        VMSTATE_UINT8(status0, FDCtrl),
        VMSTATE_UINT8(status1, FDCtrl),
        VMSTATE_UINT8(status2, FDCtrl),
J
Juan Quintela 已提交
605
        /* Command FIFO */
B
Blue Swirl 已提交
606 607
        VMSTATE_VARRAY_INT32(fifo, FDCtrl, fifo_size, 0, vmstate_info_uint8,
                             uint8_t),
B
Blue Swirl 已提交
608 609 610 611 612
        VMSTATE_UINT32(data_pos, FDCtrl),
        VMSTATE_UINT32(data_len, FDCtrl),
        VMSTATE_UINT8(data_state, FDCtrl),
        VMSTATE_UINT8(data_dir, FDCtrl),
        VMSTATE_UINT8(eot, FDCtrl),
J
Juan Quintela 已提交
613
        /* States kept only to be returned back */
B
Blue Swirl 已提交
614 615 616 617 618 619 620 621 622
        VMSTATE_UINT8(timer0, FDCtrl),
        VMSTATE_UINT8(timer1, FDCtrl),
        VMSTATE_UINT8(precomp_trk, FDCtrl),
        VMSTATE_UINT8(config, FDCtrl),
        VMSTATE_UINT8(lock, FDCtrl),
        VMSTATE_UINT8(pwrd, FDCtrl),
        VMSTATE_UINT8_EQUAL(num_floppies, FDCtrl),
        VMSTATE_STRUCT_ARRAY(drives, FDCtrl, MAX_FD, 1,
                             vmstate_fdrive, FDrive),
J
Juan Quintela 已提交
623
        VMSTATE_END_OF_LIST()
B
blueswir1 已提交
624
    }
J
Juan Quintela 已提交
625
};
626

B
Blue Swirl 已提交
627
static void fdctrl_external_reset_sysbus(DeviceState *d)
628
{
B
Blue Swirl 已提交
629 630
    FDCtrlSysBus *sys = container_of(d, FDCtrlSysBus, busdev.qdev);
    FDCtrl *s = &sys->state;
B
Blue Swirl 已提交
631 632 633 634 635 636

    fdctrl_reset(s, 0);
}

static void fdctrl_external_reset_isa(DeviceState *d)
{
B
Blue Swirl 已提交
637 638
    FDCtrlISABus *isa = container_of(d, FDCtrlISABus, busdev.qdev);
    FDCtrl *s = &isa->state;
639 640 641 642

    fdctrl_reset(s, 0);
}

B
blueswir1 已提交
643 644
static void fdctrl_handle_tc(void *opaque, int irq, int level)
{
B
Blue Swirl 已提交
645
    //FDCtrl *s = opaque;
B
blueswir1 已提交
646 647 648 649 650 651 652

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

B
bellard 已提交
653
/* Change IRQ state */
B
Blue Swirl 已提交
654
static void fdctrl_reset_irq(FDCtrl *fdctrl)
B
bellard 已提交
655
{
B
blueswir1 已提交
656 657
    if (!(fdctrl->sra & FD_SRA_INTPEND))
        return;
658
    FLOPPY_DPRINTF("Reset interrupt\n");
P
pbrook 已提交
659
    qemu_set_irq(fdctrl->irq, 0);
B
blueswir1 已提交
660
    fdctrl->sra &= ~FD_SRA_INTPEND;
B
bellard 已提交
661 662
}

B
Blue Swirl 已提交
663
static void fdctrl_raise_irq(FDCtrl *fdctrl, uint8_t status0)
B
bellard 已提交
664
{
B
blueswir1 已提交
665 666 667 668 669
    /* Sparc mutation */
    if (fdctrl->sun4m && (fdctrl->msr & FD_MSR_CMDBUSY)) {
        /* XXX: not sure */
        fdctrl->msr &= ~FD_MSR_CMDBUSY;
        fdctrl->msr |= FD_MSR_RQM | FD_MSR_DIO;
B
blueswir1 已提交
670
        fdctrl->status0 = status0;
671
        return;
B
bellard 已提交
672
    }
B
blueswir1 已提交
673
    if (!(fdctrl->sra & FD_SRA_INTPEND)) {
P
pbrook 已提交
674
        qemu_set_irq(fdctrl->irq, 1);
B
blueswir1 已提交
675
        fdctrl->sra |= FD_SRA_INTPEND;
B
bellard 已提交
676
    }
677
    fdctrl->reset_sensei = 0;
B
blueswir1 已提交
678 679
    fdctrl->status0 = status0;
    FLOPPY_DPRINTF("Set interrupt status to 0x%02x\n", fdctrl->status0);
B
bellard 已提交
680 681
}

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

B
bellard 已提交
687
    FLOPPY_DPRINTF("reset controller\n");
688
    fdctrl_reset_irq(fdctrl);
B
bellard 已提交
689
    /* Initialise controller */
B
blueswir1 已提交
690 691 692 693
    fdctrl->sra = 0;
    fdctrl->srb = 0xc0;
    if (!fdctrl->drives[1].bs)
        fdctrl->sra |= FD_SRA_nDRV2;
694
    fdctrl->cur_drv = 0;
B
blueswir1 已提交
695
    fdctrl->dor = FD_DOR_nRESET;
B
blueswir1 已提交
696
    fdctrl->dor |= (fdctrl->dma_chann != -1) ? FD_DOR_DMAEN : 0;
B
blueswir1 已提交
697
    fdctrl->msr = FD_MSR_RQM;
B
bellard 已提交
698
    /* FIFO state */
699 700
    fdctrl->data_pos = 0;
    fdctrl->data_len = 0;
B
blueswir1 已提交
701
    fdctrl->data_state = 0;
702
    fdctrl->data_dir = FD_DIR_WRITE;
B
bellard 已提交
703
    for (i = 0; i < MAX_FD; i++)
B
blueswir1 已提交
704
        fd_recalibrate(&fdctrl->drives[i]);
705
    fdctrl_reset_fifo(fdctrl);
B
blueswir1 已提交
706
    if (do_irq) {
707
        fdctrl_raise_irq(fdctrl, FD_SR0_RDYCHG);
708
        fdctrl->reset_sensei = FD_RESET_SENSEI_COUNT;
B
blueswir1 已提交
709
    }
710 711
}

B
Blue Swirl 已提交
712
static inline FDrive *drv0(FDCtrl *fdctrl)
713
{
B
blueswir1 已提交
714
    return &fdctrl->drives[(fdctrl->tdr & FD_TDR_BOOTSEL) >> 2];
715 716
}

B
Blue Swirl 已提交
717
static inline FDrive *drv1(FDCtrl *fdctrl)
718
{
B
blueswir1 已提交
719 720 721 722
    if ((fdctrl->tdr & FD_TDR_BOOTSEL) < (1 << 2))
        return &fdctrl->drives[1];
    else
        return &fdctrl->drives[0];
723 724
}

B
blueswir1 已提交
725
#if MAX_FD == 4
B
Blue Swirl 已提交
726
static inline FDrive *drv2(FDCtrl *fdctrl)
B
blueswir1 已提交
727 728 729 730 731 732 733
{
    if ((fdctrl->tdr & FD_TDR_BOOTSEL) < (2 << 2))
        return &fdctrl->drives[2];
    else
        return &fdctrl->drives[1];
}

B
Blue Swirl 已提交
734
static inline FDrive *drv3(FDCtrl *fdctrl)
B
blueswir1 已提交
735 736 737 738 739 740 741 742
{
    if ((fdctrl->tdr & FD_TDR_BOOTSEL) < (3 << 2))
        return &fdctrl->drives[3];
    else
        return &fdctrl->drives[2];
}
#endif

B
Blue Swirl 已提交
743
static FDrive *get_cur_drv(FDCtrl *fdctrl)
744
{
B
blueswir1 已提交
745 746 747 748 749 750 751 752 753
    switch (fdctrl->cur_drv) {
        case 0: return drv0(fdctrl);
        case 1: return drv1(fdctrl);
#if MAX_FD == 4
        case 2: return drv2(fdctrl);
        case 3: return drv3(fdctrl);
#endif
        default: return NULL;
    }
B
bellard 已提交
754 755
}

B
blueswir1 已提交
756
/* Status A register : 0x00 (read-only) */
B
Blue Swirl 已提交
757
static uint32_t fdctrl_read_statusA(FDCtrl *fdctrl)
B
blueswir1 已提交
758 759 760 761 762 763 764 765
{
    uint32_t retval = fdctrl->sra;

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

    return retval;
}

B
bellard 已提交
766
/* Status B register : 0x01 (read-only) */
B
Blue Swirl 已提交
767
static uint32_t fdctrl_read_statusB(FDCtrl *fdctrl)
B
bellard 已提交
768
{
B
blueswir1 已提交
769 770 771 772 773
    uint32_t retval = fdctrl->srb;

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

    return retval;
B
bellard 已提交
774 775 776
}

/* Digital output register : 0x02 */
B
Blue Swirl 已提交
777
static uint32_t fdctrl_read_dor(FDCtrl *fdctrl)
B
bellard 已提交
778
{
B
blueswir1 已提交
779
    uint32_t retval = fdctrl->dor;
B
bellard 已提交
780 781

    /* Selected drive */
782
    retval |= fdctrl->cur_drv;
B
bellard 已提交
783 784 785 786 787
    FLOPPY_DPRINTF("digital output register: 0x%02x\n", retval);

    return retval;
}

B
Blue Swirl 已提交
788
static void fdctrl_write_dor(FDCtrl *fdctrl, uint32_t value)
B
bellard 已提交
789 790
{
    FLOPPY_DPRINTF("digital output register set to 0x%02x\n", value);
B
blueswir1 已提交
791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807

    /* 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 已提交
808
    /* Reset */
809
    if (!(value & FD_DOR_nRESET)) {
B
blueswir1 已提交
810
        if (fdctrl->dor & FD_DOR_nRESET) {
B
bellard 已提交
811
            FLOPPY_DPRINTF("controller enter RESET state\n");
B
bellard 已提交
812 813
        }
    } else {
B
blueswir1 已提交
814
        if (!(fdctrl->dor & FD_DOR_nRESET)) {
B
bellard 已提交
815
            FLOPPY_DPRINTF("controller out of RESET state\n");
816
            fdctrl_reset(fdctrl, 1);
B
blueswir1 已提交
817
            fdctrl->dsr &= ~FD_DSR_PWRDOWN;
B
bellard 已提交
818 819 820
        }
    }
    /* Selected drive */
821
    fdctrl->cur_drv = value & FD_DOR_SELMASK;
B
blueswir1 已提交
822 823

    fdctrl->dor = value;
B
bellard 已提交
824 825 826
}

/* Tape drive register : 0x03 */
B
Blue Swirl 已提交
827
static uint32_t fdctrl_read_tape(FDCtrl *fdctrl)
B
bellard 已提交
828
{
B
blueswir1 已提交
829
    uint32_t retval = fdctrl->tdr;
B
bellard 已提交
830 831 832 833 834 835

    FLOPPY_DPRINTF("tape drive register: 0x%02x\n", retval);

    return retval;
}

B
Blue Swirl 已提交
836
static void fdctrl_write_tape(FDCtrl *fdctrl, uint32_t value)
B
bellard 已提交
837 838
{
    /* Reset mode */
B
blueswir1 已提交
839
    if (!(fdctrl->dor & FD_DOR_nRESET)) {
B
bellard 已提交
840
        FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
B
bellard 已提交
841 842 843 844
        return;
    }
    FLOPPY_DPRINTF("tape drive register set to 0x%02x\n", value);
    /* Disk boot selection indicator */
B
blueswir1 已提交
845
    fdctrl->tdr = value & FD_TDR_BOOTSEL;
B
bellard 已提交
846 847 848 849
    /* Tape indicators: never allow */
}

/* Main status register : 0x04 (read) */
B
Blue Swirl 已提交
850
static uint32_t fdctrl_read_main_status(FDCtrl *fdctrl)
B
bellard 已提交
851
{
B
blueswir1 已提交
852
    uint32_t retval = fdctrl->msr;
B
bellard 已提交
853

B
blueswir1 已提交
854
    fdctrl->dsr &= ~FD_DSR_PWRDOWN;
B
blueswir1 已提交
855
    fdctrl->dor |= FD_DOR_nRESET;
B
blueswir1 已提交
856

857 858 859 860 861 862
    /* Sparc mutation */
    if (fdctrl->sun4m) {
        retval |= FD_MSR_DIO;
        fdctrl_reset_irq(fdctrl);
    };

B
bellard 已提交
863 864 865 866 867 868
    FLOPPY_DPRINTF("main status register: 0x%02x\n", retval);

    return retval;
}

/* Data select rate register : 0x04 (write) */
B
Blue Swirl 已提交
869
static void fdctrl_write_rate(FDCtrl *fdctrl, uint32_t value)
B
bellard 已提交
870 871
{
    /* Reset mode */
B
blueswir1 已提交
872
    if (!(fdctrl->dor & FD_DOR_nRESET)) {
873 874 875
        FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
        return;
    }
B
bellard 已提交
876 877
    FLOPPY_DPRINTF("select rate register set to 0x%02x\n", value);
    /* Reset: autoclear */
878
    if (value & FD_DSR_SWRESET) {
B
blueswir1 已提交
879
        fdctrl->dor &= ~FD_DOR_nRESET;
880
        fdctrl_reset(fdctrl, 1);
B
blueswir1 已提交
881
        fdctrl->dor |= FD_DOR_nRESET;
B
bellard 已提交
882
    }
883
    if (value & FD_DSR_PWRDOWN) {
884
        fdctrl_reset(fdctrl, 1);
B
bellard 已提交
885
    }
B
blueswir1 已提交
886
    fdctrl->dsr = value;
B
bellard 已提交
887 888
}

889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905
/* Configuration control register: 0x07 (write) */
static void fdctrl_write_ccr(FDCtrl *fdctrl, uint32_t value)
{
    /* Reset mode */
    if (!(fdctrl->dor & FD_DOR_nRESET)) {
        FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
        return;
    }
    FLOPPY_DPRINTF("configuration control register set to 0x%02x\n", value);

    /* Only the rate selection bits used in AT mode, and we
     * store those in the DSR.
     */
    fdctrl->dsr = (fdctrl->dsr & ~FD_DSR_DRATEMASK) |
                  (value & FD_DSR_DRATEMASK);
}

B
Blue Swirl 已提交
906
static int fdctrl_media_changed(FDrive *drv)
B
bellard 已提交
907 908
{
    int ret;
909

910
    if (!drv->bs)
B
bellard 已提交
911
        return 0;
912 913 914 915 916 917 918 919
    if (drv->media_changed) {
        drv->media_changed = 0;
        ret = 1;
    } else {
        ret = bdrv_media_changed(drv->bs);
        if (ret < 0) {
            ret = 0;            /* we don't know, assume no */
        }
920
    }
B
bellard 已提交
921 922 923 924 925 926
    if (ret) {
        fd_revalidate(drv);
    }
    return ret;
}

B
bellard 已提交
927
/* Digital input register : 0x07 (read-only) */
B
Blue Swirl 已提交
928
static uint32_t fdctrl_read_dir(FDCtrl *fdctrl)
B
bellard 已提交
929 930 931
{
    uint32_t retval = 0;

B
blueswir1 已提交
932 933 934 935 936 937 938
    if (fdctrl_media_changed(drv0(fdctrl))
     || fdctrl_media_changed(drv1(fdctrl))
#if MAX_FD == 4
     || fdctrl_media_changed(drv2(fdctrl))
     || fdctrl_media_changed(drv3(fdctrl))
#endif
        )
939
        retval |= FD_DIR_DSKCHG;
940
    if (retval != 0) {
941
        FLOPPY_DPRINTF("Floppy digital input register: 0x%02x\n", retval);
942
    }
B
bellard 已提交
943 944 945 946 947

    return retval;
}

/* FIFO state control */
B
Blue Swirl 已提交
948
static void fdctrl_reset_fifo(FDCtrl *fdctrl)
B
bellard 已提交
949
{
950 951
    fdctrl->data_dir = FD_DIR_WRITE;
    fdctrl->data_pos = 0;
B
blueswir1 已提交
952
    fdctrl->msr &= ~(FD_MSR_CMDBUSY | FD_MSR_DIO);
B
bellard 已提交
953 954 955
}

/* Set FIFO status for the host to read */
B
Blue Swirl 已提交
956
static void fdctrl_set_fifo(FDCtrl *fdctrl, int fifo_len, int do_irq)
B
bellard 已提交
957
{
958 959 960
    fdctrl->data_dir = FD_DIR_READ;
    fdctrl->data_len = fifo_len;
    fdctrl->data_pos = 0;
B
blueswir1 已提交
961
    fdctrl->msr |= FD_MSR_CMDBUSY | FD_MSR_RQM | FD_MSR_DIO;
B
bellard 已提交
962
    if (do_irq)
963
        fdctrl_raise_irq(fdctrl, 0x00);
B
bellard 已提交
964 965 966
}

/* Set an error: unimplemented/unknown command */
B
Blue Swirl 已提交
967
static void fdctrl_unimplemented(FDCtrl *fdctrl, int direction)
B
bellard 已提交
968
{
B
blueswir1 已提交
969
    FLOPPY_ERROR("unimplemented command 0x%02x\n", fdctrl->fifo[0]);
970
    fdctrl->fifo[0] = FD_SR0_INVCMD;
971
    fdctrl_set_fifo(fdctrl, 1, 0);
B
bellard 已提交
972 973
}

B
blueswir1 已提交
974
/* Seek to next sector */
B
Blue Swirl 已提交
975
static int fdctrl_seek_to_next_sect(FDCtrl *fdctrl, FDrive *cur_drv)
B
blueswir1 已提交
976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007
{
    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 已提交
1008
/* Callback for transfer end (stop or abort) */
B
Blue Swirl 已提交
1009 1010
static void fdctrl_stop_transfer(FDCtrl *fdctrl, uint8_t status0,
                                 uint8_t status1, uint8_t status2)
B
bellard 已提交
1011
{
B
Blue Swirl 已提交
1012
    FDrive *cur_drv;
B
bellard 已提交
1013

1014
    cur_drv = get_cur_drv(fdctrl);
B
bellard 已提交
1015 1016
    FLOPPY_DPRINTF("transfer status: %02x %02x %02x (%02x)\n",
                   status0, status1, status2,
B
blueswir1 已提交
1017 1018
                   status0 | (cur_drv->head << 2) | GET_CUR_DRV(fdctrl));
    fdctrl->fifo[0] = status0 | (cur_drv->head << 2) | GET_CUR_DRV(fdctrl);
1019 1020 1021 1022 1023 1024 1025
    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 已提交
1026
    if (!(fdctrl->msr & FD_MSR_NONDMA)) {
1027
        DMA_release_DREQ(fdctrl->dma_chann);
1028
    }
B
blueswir1 已提交
1029
    fdctrl->msr |= FD_MSR_RQM | FD_MSR_DIO;
B
blueswir1 已提交
1030
    fdctrl->msr &= ~FD_MSR_NONDMA;
1031
    fdctrl_set_fifo(fdctrl, 7, 1);
B
bellard 已提交
1032 1033 1034
}

/* Prepare a data transfer (either DMA or FIFO) */
B
Blue Swirl 已提交
1035
static void fdctrl_start_transfer(FDCtrl *fdctrl, int direction)
B
bellard 已提交
1036
{
B
Blue Swirl 已提交
1037
    FDrive *cur_drv;
B
bellard 已提交
1038
    uint8_t kh, kt, ks;
B
blueswir1 已提交
1039
    int did_seek = 0;
B
bellard 已提交
1040

B
blueswir1 已提交
1041
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1042 1043 1044 1045
    cur_drv = get_cur_drv(fdctrl);
    kt = fdctrl->fifo[2];
    kh = fdctrl->fifo[3];
    ks = fdctrl->fifo[4];
B
bellard 已提交
1046
    FLOPPY_DPRINTF("Start transfer at %d %d %02x %02x (%d)\n",
B
blueswir1 已提交
1047
                   GET_CUR_DRV(fdctrl), kh, kt, ks,
1048 1049
                   fd_sector_calc(kh, kt, ks, cur_drv->last_sect,
                                  NUM_SIDES(cur_drv)));
B
blueswir1 已提交
1050
    switch (fd_seek(cur_drv, kh, kt, ks, fdctrl->config & FD_CONFIG_EIS)) {
B
bellard 已提交
1051 1052
    case 2:
        /* sect too big */
1053
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1054 1055 1056
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
1057 1058 1059
        return;
    case 3:
        /* track too big */
B
blueswir1 已提交
1060
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, FD_SR1_EC, 0x00);
1061 1062 1063
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
1064 1065 1066
        return;
    case 4:
        /* No seek enabled */
1067
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1068 1069 1070
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
1071 1072 1073 1074 1075 1076 1077
        return;
    case 1:
        did_seek = 1;
        break;
    default:
        break;
    }
B
blueswir1 已提交
1078

B
bellard 已提交
1079
    /* Set the FIFO state */
1080 1081
    fdctrl->data_dir = direction;
    fdctrl->data_pos = 0;
B
blueswir1 已提交
1082
    fdctrl->msr |= FD_MSR_CMDBUSY;
1083 1084 1085 1086
    if (fdctrl->fifo[0] & 0x80)
        fdctrl->data_state |= FD_STATE_MULTI;
    else
        fdctrl->data_state &= ~FD_STATE_MULTI;
B
bellard 已提交
1087
    if (did_seek)
1088 1089 1090 1091 1092 1093
        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 {
1094
        int tmp;
T
ths 已提交
1095
        fdctrl->data_len = 128 << (fdctrl->fifo[5] > 7 ? 7 : fdctrl->fifo[5]);
1096
        tmp = (fdctrl->fifo[6] - ks + 1);
1097
        if (fdctrl->fifo[0] & 0x80)
1098
            tmp += fdctrl->fifo[6];
1099
        fdctrl->data_len *= tmp;
1100
    }
1101
    fdctrl->eot = fdctrl->fifo[6];
B
blueswir1 已提交
1102
    if (fdctrl->dor & FD_DOR_DMAEN) {
B
bellard 已提交
1103 1104
        int dma_mode;
        /* DMA transfer are enabled. Check if DMA channel is well programmed */
1105
        dma_mode = DMA_get_channel_mode(fdctrl->dma_chann);
B
bellard 已提交
1106
        dma_mode = (dma_mode >> 2) & 3;
1107
        FLOPPY_DPRINTF("dma_mode=%d direction=%d (%d - %d)\n",
1108
                       dma_mode, direction,
1109
                       (128 << fdctrl->fifo[5]) *
1110
                       (cur_drv->last_sect - ks + 1), fdctrl->data_len);
B
bellard 已提交
1111 1112 1113 1114 1115
        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 */
B
blueswir1 已提交
1116
            fdctrl->msr &= ~FD_MSR_RQM;
B
bellard 已提交
1117
            /* Now, we just have to wait for the DMA controller to
B
bellard 已提交
1118 1119
             * recall us...
             */
1120 1121
            DMA_hold_DREQ(fdctrl->dma_chann);
            DMA_schedule(fdctrl->dma_chann);
B
bellard 已提交
1122
            return;
1123
        } else {
1124
            FLOPPY_ERROR("dma_mode=%d direction=%d\n", dma_mode, direction);
B
bellard 已提交
1125 1126 1127
        }
    }
    FLOPPY_DPRINTF("start non-DMA transfer\n");
B
blueswir1 已提交
1128
    fdctrl->msr |= FD_MSR_NONDMA;
B
blueswir1 已提交
1129 1130
    if (direction != FD_DIR_WRITE)
        fdctrl->msr |= FD_MSR_DIO;
B
bellard 已提交
1131
    /* IO based transfer: calculate len */
1132
    fdctrl_raise_irq(fdctrl, 0x00);
B
bellard 已提交
1133 1134 1135 1136 1137

    return;
}

/* Prepare a transfer of deleted data */
B
Blue Swirl 已提交
1138
static void fdctrl_start_transfer_del(FDCtrl *fdctrl, int direction)
B
bellard 已提交
1139
{
B
blueswir1 已提交
1140 1141
    FLOPPY_ERROR("fdctrl_start_transfer_del() unimplemented\n");

B
bellard 已提交
1142 1143 1144
    /* We don't handle deleted data,
     * so we don't return *ANYTHING*
     */
1145
    fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
B
bellard 已提交
1146 1147 1148
}

/* handlers for DMA transfers */
B
bellard 已提交
1149 1150
static int fdctrl_transfer_handler (void *opaque, int nchan,
                                    int dma_pos, int dma_len)
B
bellard 已提交
1151
{
B
Blue Swirl 已提交
1152 1153
    FDCtrl *fdctrl;
    FDrive *cur_drv;
1154
    int len, start_pos, rel_pos;
B
bellard 已提交
1155 1156
    uint8_t status0 = 0x00, status1 = 0x00, status2 = 0x00;

1157
    fdctrl = opaque;
B
blueswir1 已提交
1158
    if (fdctrl->msr & FD_MSR_RQM) {
B
bellard 已提交
1159 1160 1161
        FLOPPY_DPRINTF("Not in DMA transfer mode !\n");
        return 0;
    }
1162 1163 1164
    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
blueswir1 已提交
1165
        status2 = FD_SR2_SNS;
B
bellard 已提交
1166 1167
    if (dma_len > fdctrl->data_len)
        dma_len = fdctrl->data_len;
1168
    if (cur_drv->bs == NULL) {
1169
        if (fdctrl->data_dir == FD_DIR_WRITE)
1170
            fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
1171
        else
1172
            fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1173
        len = 0;
1174 1175
        goto transfer_error;
    }
1176
    rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
B
bellard 已提交
1177 1178
    for (start_pos = fdctrl->data_pos; fdctrl->data_pos < dma_len;) {
        len = dma_len - fdctrl->data_pos;
1179 1180
        if (len + rel_pos > FD_SECTOR_LEN)
            len = FD_SECTOR_LEN - rel_pos;
B
bellard 已提交
1181 1182
        FLOPPY_DPRINTF("copy %d bytes (%d %d %d) %d pos %d %02x "
                       "(%d-0x%08x 0x%08x)\n", len, dma_len, fdctrl->data_pos,
B
blueswir1 已提交
1183
                       fdctrl->data_len, GET_CUR_DRV(fdctrl), cur_drv->head,
1184
                       cur_drv->track, cur_drv->sect, fd_sector(cur_drv),
1185
                       fd_sector(cur_drv) * FD_SECTOR_LEN);
1186
        if (fdctrl->data_dir != FD_DIR_WRITE ||
1187
            len < FD_SECTOR_LEN || rel_pos != 0) {
1188 1189
            /* READ & SCAN commands and realign to a sector for WRITE */
            if (bdrv_read(cur_drv->bs, fd_sector(cur_drv),
1190
                          fdctrl->fifo, 1) < 0) {
B
bellard 已提交
1191 1192 1193
                FLOPPY_DPRINTF("Floppy: error getting sector %d\n",
                               fd_sector(cur_drv));
                /* Sure, image size is too small... */
1194
                memset(fdctrl->fifo, 0, FD_SECTOR_LEN);
B
bellard 已提交
1195
            }
1196
        }
1197 1198 1199
        switch (fdctrl->data_dir) {
        case FD_DIR_READ:
            /* READ commands */
B
bellard 已提交
1200 1201
            DMA_write_memory (nchan, fdctrl->fifo + rel_pos,
                              fdctrl->data_pos, len);
1202 1203
            break;
        case FD_DIR_WRITE:
1204
            /* WRITE commands */
1205 1206 1207 1208 1209 1210 1211 1212 1213 1214
            if (cur_drv->ro) {
                /* Handle readonly medium early, no need to do DMA, touch the
                 * LED or attempt any writes. A real floppy doesn't attempt
                 * to write to readonly media either. */
                fdctrl_stop_transfer(fdctrl,
                                     FD_SR0_ABNTERM | FD_SR0_SEEK, FD_SR1_NW,
                                     0x00);
                goto transfer_error;
            }

B
bellard 已提交
1215 1216
            DMA_read_memory (nchan, fdctrl->fifo + rel_pos,
                             fdctrl->data_pos, len);
1217
            if (bdrv_write(cur_drv->bs, fd_sector(cur_drv),
1218
                           fdctrl->fifo, 1) < 0) {
B
blueswir1 已提交
1219
                FLOPPY_ERROR("writing sector %d\n", fd_sector(cur_drv));
1220
                fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
1221
                goto transfer_error;
1222
            }
1223 1224 1225
            break;
        default:
            /* SCAN commands */
1226
            {
1227
                uint8_t tmpbuf[FD_SECTOR_LEN];
1228
                int ret;
B
bellard 已提交
1229
                DMA_read_memory (nchan, tmpbuf, fdctrl->data_pos, len);
1230
                ret = memcmp(tmpbuf, fdctrl->fifo + rel_pos, len);
B
bellard 已提交
1231
                if (ret == 0) {
B
blueswir1 已提交
1232
                    status2 = FD_SR2_SEH;
B
bellard 已提交
1233 1234
                    goto end_transfer;
                }
1235 1236
                if ((ret < 0 && fdctrl->data_dir == FD_DIR_SCANL) ||
                    (ret > 0 && fdctrl->data_dir == FD_DIR_SCANH)) {
B
bellard 已提交
1237 1238 1239 1240
                    status2 = 0x00;
                    goto end_transfer;
                }
            }
1241
            break;
B
bellard 已提交
1242
        }
1243 1244
        fdctrl->data_pos += len;
        rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
1245
        if (rel_pos == 0) {
B
bellard 已提交
1246
            /* Seek to next sector */
B
blueswir1 已提交
1247 1248
            if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv))
                break;
B
bellard 已提交
1249 1250
        }
    }
1251
 end_transfer:
1252 1253
    len = fdctrl->data_pos - start_pos;
    FLOPPY_DPRINTF("end transfer %d %d %d\n",
1254
                   fdctrl->data_pos, len, fdctrl->data_len);
1255 1256 1257
    if (fdctrl->data_dir == FD_DIR_SCANE ||
        fdctrl->data_dir == FD_DIR_SCANL ||
        fdctrl->data_dir == FD_DIR_SCANH)
B
blueswir1 已提交
1258
        status2 = FD_SR2_SEH;
1259
    if (FD_DID_SEEK(fdctrl->data_state))
1260
        status0 |= FD_SR0_SEEK;
1261
    fdctrl->data_len -= len;
1262
    fdctrl_stop_transfer(fdctrl, status0, status1, status2);
1263
 transfer_error:
B
bellard 已提交
1264

1265
    return len;
B
bellard 已提交
1266 1267 1268
}

/* Data register : 0x05 */
B
Blue Swirl 已提交
1269
static uint32_t fdctrl_read_data(FDCtrl *fdctrl)
B
bellard 已提交
1270
{
B
Blue Swirl 已提交
1271
    FDrive *cur_drv;
B
bellard 已提交
1272
    uint32_t retval = 0;
B
blueswir1 已提交
1273
    int pos;
B
bellard 已提交
1274

1275
    cur_drv = get_cur_drv(fdctrl);
B
blueswir1 已提交
1276 1277 1278
    fdctrl->dsr &= ~FD_DSR_PWRDOWN;
    if (!(fdctrl->msr & FD_MSR_RQM) || !(fdctrl->msr & FD_MSR_DIO)) {
        FLOPPY_ERROR("controller not ready for reading\n");
B
bellard 已提交
1279 1280
        return 0;
    }
1281
    pos = fdctrl->data_pos;
B
blueswir1 已提交
1282
    if (fdctrl->msr & FD_MSR_NONDMA) {
B
bellard 已提交
1283 1284
        pos %= FD_SECTOR_LEN;
        if (pos == 0) {
B
blueswir1 已提交
1285 1286 1287 1288 1289 1290
            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;
                }
B
blueswir1 已提交
1291 1292 1293 1294 1295 1296
            if (bdrv_read(cur_drv->bs, fd_sector(cur_drv), fdctrl->fifo, 1) < 0) {
                FLOPPY_DPRINTF("error getting sector %d\n",
                               fd_sector(cur_drv));
                /* Sure, image size is too small... */
                memset(fdctrl->fifo, 0, FD_SECTOR_LEN);
            }
B
bellard 已提交
1297 1298
        }
    }
1299 1300 1301
    retval = fdctrl->fifo[pos];
    if (++fdctrl->data_pos == fdctrl->data_len) {
        fdctrl->data_pos = 0;
1302
        /* Switch from transfer mode to status mode
B
bellard 已提交
1303 1304
         * then from status mode to command mode
         */
B
blueswir1 已提交
1305
        if (fdctrl->msr & FD_MSR_NONDMA) {
1306
            fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
1307
        } else {
1308
            fdctrl_reset_fifo(fdctrl);
1309 1310
            fdctrl_reset_irq(fdctrl);
        }
B
bellard 已提交
1311 1312 1313 1314 1315 1316
    }
    FLOPPY_DPRINTF("data register: 0x%02x\n", retval);

    return retval;
}

B
Blue Swirl 已提交
1317
static void fdctrl_format_sector(FDCtrl *fdctrl)
B
bellard 已提交
1318
{
B
Blue Swirl 已提交
1319
    FDrive *cur_drv;
1320
    uint8_t kh, kt, ks;
B
bellard 已提交
1321

B
blueswir1 已提交
1322
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1323 1324 1325 1326 1327
    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",
B
blueswir1 已提交
1328
                   GET_CUR_DRV(fdctrl), kh, kt, ks,
1329 1330
                   fd_sector_calc(kh, kt, ks, cur_drv->last_sect,
                                  NUM_SIDES(cur_drv)));
1331
    switch (fd_seek(cur_drv, kh, kt, ks, fdctrl->config & FD_CONFIG_EIS)) {
1332 1333
    case 2:
        /* sect too big */
1334
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1335 1336 1337 1338 1339 1340
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
        return;
    case 3:
        /* track too big */
B
blueswir1 已提交
1341
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, FD_SR1_EC, 0x00);
1342 1343 1344 1345 1346 1347
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
        return;
    case 4:
        /* No seek enabled */
1348
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
        return;
    case 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 已提交
1362
        FLOPPY_ERROR("formatting sector %d\n", fd_sector(cur_drv));
1363
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
1364
    } else {
1365 1366 1367 1368
        if (cur_drv->sect == cur_drv->last_sect) {
            fdctrl->data_state &= ~FD_STATE_FORMAT;
            /* Last sector done */
            if (FD_DID_SEEK(fdctrl->data_state))
1369
                fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
1370 1371 1372 1373 1374 1375 1376
            else
                fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
        } else {
            /* More to do */
            fdctrl->data_pos = 0;
            fdctrl->data_len = 4;
        }
1377 1378 1379
    }
}

B
Blue Swirl 已提交
1380
static void fdctrl_handle_lock(FDCtrl *fdctrl, int direction)
1381 1382 1383
{
    fdctrl->lock = (fdctrl->fifo[0] & 0x80) ? 1 : 0;
    fdctrl->fifo[0] = fdctrl->lock << 4;
1384
    fdctrl_set_fifo(fdctrl, 1, 0);
1385 1386
}

B
Blue Swirl 已提交
1387
static void fdctrl_handle_dumpreg(FDCtrl *fdctrl, int direction)
1388
{
B
Blue Swirl 已提交
1389
    FDrive *cur_drv = get_cur_drv(fdctrl);
1390 1391 1392 1393

    /* Drives position */
    fdctrl->fifo[0] = drv0(fdctrl)->track;
    fdctrl->fifo[1] = drv1(fdctrl)->track;
B
blueswir1 已提交
1394 1395 1396 1397
#if MAX_FD == 4
    fdctrl->fifo[2] = drv2(fdctrl)->track;
    fdctrl->fifo[3] = drv3(fdctrl)->track;
#else
1398 1399
    fdctrl->fifo[2] = 0;
    fdctrl->fifo[3] = 0;
B
blueswir1 已提交
1400
#endif
1401 1402
    /* timers */
    fdctrl->fifo[4] = fdctrl->timer0;
B
blueswir1 已提交
1403
    fdctrl->fifo[5] = (fdctrl->timer1 << 1) | (fdctrl->dor & FD_DOR_DMAEN ? 1 : 0);
1404 1405 1406 1407 1408 1409 1410 1411
    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);
}

B
Blue Swirl 已提交
1412
static void fdctrl_handle_version(FDCtrl *fdctrl, int direction)
1413 1414 1415
{
    /* Controller's version */
    fdctrl->fifo[0] = fdctrl->version;
1416
    fdctrl_set_fifo(fdctrl, 1, 0);
1417 1418
}

B
Blue Swirl 已提交
1419
static void fdctrl_handle_partid(FDCtrl *fdctrl, int direction)
1420 1421 1422 1423 1424
{
    fdctrl->fifo[0] = 0x41; /* Stepping 1 */
    fdctrl_set_fifo(fdctrl, 1, 0);
}

B
Blue Swirl 已提交
1425
static void fdctrl_handle_restore(FDCtrl *fdctrl, int direction)
1426
{
B
Blue Swirl 已提交
1427
    FDrive *cur_drv = get_cur_drv(fdctrl);
1428 1429 1430 1431

    /* Drives position */
    drv0(fdctrl)->track = fdctrl->fifo[3];
    drv1(fdctrl)->track = fdctrl->fifo[4];
B
blueswir1 已提交
1432 1433 1434 1435
#if MAX_FD == 4
    drv2(fdctrl)->track = fdctrl->fifo[5];
    drv3(fdctrl)->track = fdctrl->fifo[6];
#endif
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447
    /* 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);
}

B
Blue Swirl 已提交
1448
static void fdctrl_handle_save(FDCtrl *fdctrl, int direction)
1449
{
B
Blue Swirl 已提交
1450
    FDrive *cur_drv = get_cur_drv(fdctrl);
1451 1452 1453 1454 1455 1456

    fdctrl->fifo[0] = 0;
    fdctrl->fifo[1] = 0;
    /* Drives position */
    fdctrl->fifo[2] = drv0(fdctrl)->track;
    fdctrl->fifo[3] = drv1(fdctrl)->track;
B
blueswir1 已提交
1457 1458 1459 1460
#if MAX_FD == 4
    fdctrl->fifo[4] = drv2(fdctrl)->track;
    fdctrl->fifo[5] = drv3(fdctrl)->track;
#else
1461 1462
    fdctrl->fifo[4] = 0;
    fdctrl->fifo[5] = 0;
B
blueswir1 已提交
1463
#endif
1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474
    /* 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;
1475
    fdctrl_set_fifo(fdctrl, 15, 0);
1476 1477
}

B
Blue Swirl 已提交
1478
static void fdctrl_handle_readid(FDCtrl *fdctrl, int direction)
1479
{
B
Blue Swirl 已提交
1480
    FDrive *cur_drv = get_cur_drv(fdctrl);
1481 1482 1483

    cur_drv->head = (fdctrl->fifo[1] >> 2) & 1;
    qemu_mod_timer(fdctrl->result_timer,
1484
                   qemu_get_clock_ns(vm_clock) + (get_ticks_per_sec() / 50));
1485 1486
}

B
Blue Swirl 已提交
1487
static void fdctrl_handle_format_track(FDCtrl *fdctrl, int direction)
1488
{
B
Blue Swirl 已提交
1489
    FDrive *cur_drv;
1490

B
blueswir1 已提交
1491
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515
    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);
}

B
Blue Swirl 已提交
1516
static void fdctrl_handle_specify(FDCtrl *fdctrl, int direction)
1517 1518 1519
{
    fdctrl->timer0 = (fdctrl->fifo[1] >> 4) & 0xF;
    fdctrl->timer1 = fdctrl->fifo[2] >> 1;
B
blueswir1 已提交
1520 1521 1522 1523
    if (fdctrl->fifo[2] & 1)
        fdctrl->dor &= ~FD_DOR_DMAEN;
    else
        fdctrl->dor |= FD_DOR_DMAEN;
1524 1525 1526 1527
    /* No result back */
    fdctrl_reset_fifo(fdctrl);
}

B
Blue Swirl 已提交
1528
static void fdctrl_handle_sense_drive_status(FDCtrl *fdctrl, int direction)
1529
{
B
Blue Swirl 已提交
1530
    FDrive *cur_drv;
1531

B
blueswir1 已提交
1532
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1533 1534 1535 1536 1537 1538
    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) |
B
blueswir1 已提交
1539
        GET_CUR_DRV(fdctrl) |
1540 1541 1542 1543
        0x28;
    fdctrl_set_fifo(fdctrl, 1, 0);
}

B
Blue Swirl 已提交
1544
static void fdctrl_handle_recalibrate(FDCtrl *fdctrl, int direction)
1545
{
B
Blue Swirl 已提交
1546
    FDrive *cur_drv;
1547

B
blueswir1 已提交
1548
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1549 1550 1551 1552 1553 1554 1555
    cur_drv = get_cur_drv(fdctrl);
    fd_recalibrate(cur_drv);
    fdctrl_reset_fifo(fdctrl);
    /* Raise Interrupt */
    fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
}

B
Blue Swirl 已提交
1556
static void fdctrl_handle_sense_interrupt_status(FDCtrl *fdctrl, int direction)
1557
{
B
Blue Swirl 已提交
1558
    FDrive *cur_drv = get_cur_drv(fdctrl);
1559

1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571
    if(fdctrl->reset_sensei > 0) {
        fdctrl->fifo[0] =
            FD_SR0_RDYCHG + FD_RESET_SENSEI_COUNT - fdctrl->reset_sensei;
        fdctrl->reset_sensei--;
    } else {
        /* XXX: status0 handling is broken for read/write
           commands, so we do this hack. It should be suppressed
           ASAP */
        fdctrl->fifo[0] =
            FD_SR0_SEEK | (cur_drv->head << 2) | GET_CUR_DRV(fdctrl);
    }

1572 1573 1574
    fdctrl->fifo[1] = cur_drv->track;
    fdctrl_set_fifo(fdctrl, 2, 0);
    fdctrl_reset_irq(fdctrl);
B
blueswir1 已提交
1575
    fdctrl->status0 = FD_SR0_RDYCHG;
1576 1577
}

B
Blue Swirl 已提交
1578
static void fdctrl_handle_seek(FDCtrl *fdctrl, int direction)
1579
{
B
Blue Swirl 已提交
1580
    FDrive *cur_drv;
1581

B
blueswir1 已提交
1582
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593
    cur_drv = get_cur_drv(fdctrl);
    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);
    }
}

B
Blue Swirl 已提交
1594
static void fdctrl_handle_perpendicular_mode(FDCtrl *fdctrl, int direction)
1595
{
B
Blue Swirl 已提交
1596
    FDrive *cur_drv = get_cur_drv(fdctrl);
1597 1598 1599 1600

    if (fdctrl->fifo[1] & 0x80)
        cur_drv->perpendicular = fdctrl->fifo[1] & 0x7;
    /* No result back */
B
blueswir1 已提交
1601
    fdctrl_reset_fifo(fdctrl);
1602 1603
}

B
Blue Swirl 已提交
1604
static void fdctrl_handle_configure(FDCtrl *fdctrl, int direction)
1605 1606 1607 1608 1609 1610 1611
{
    fdctrl->config = fdctrl->fifo[2];
    fdctrl->precomp_trk =  fdctrl->fifo[3];
    /* No result back */
    fdctrl_reset_fifo(fdctrl);
}

B
Blue Swirl 已提交
1612
static void fdctrl_handle_powerdown_mode(FDCtrl *fdctrl, int direction)
1613 1614 1615
{
    fdctrl->pwrd = fdctrl->fifo[1];
    fdctrl->fifo[0] = fdctrl->fifo[1];
1616
    fdctrl_set_fifo(fdctrl, 1, 0);
1617 1618
}

B
Blue Swirl 已提交
1619
static void fdctrl_handle_option(FDCtrl *fdctrl, int direction)
1620 1621 1622 1623 1624
{
    /* No result back */
    fdctrl_reset_fifo(fdctrl);
}

B
Blue Swirl 已提交
1625
static void fdctrl_handle_drive_specification_command(FDCtrl *fdctrl, int direction)
1626
{
B
Blue Swirl 已提交
1627
    FDrive *cur_drv = get_cur_drv(fdctrl);
1628 1629 1630 1631 1632 1633 1634

    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;
1635
            fdctrl_set_fifo(fdctrl, 4, 0);
1636 1637 1638 1639 1640 1641
        } else {
            fdctrl_reset_fifo(fdctrl);
        }
    } else if (fdctrl->data_len > 7) {
        /* ERROR */
        fdctrl->fifo[0] = 0x80 |
B
blueswir1 已提交
1642
            (cur_drv->head << 2) | GET_CUR_DRV(fdctrl);
1643
        fdctrl_set_fifo(fdctrl, 1, 0);
1644 1645 1646
    }
}

B
Blue Swirl 已提交
1647
static void fdctrl_handle_relative_seek_out(FDCtrl *fdctrl, int direction)
1648
{
B
Blue Swirl 已提交
1649
    FDrive *cur_drv;
1650

B
blueswir1 已提交
1651
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1652 1653 1654 1655 1656 1657 1658
    cur_drv = get_cur_drv(fdctrl);
    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);
B
blueswir1 已提交
1659
    /* Raise Interrupt */
1660 1661 1662
    fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
}

B
Blue Swirl 已提交
1663
static void fdctrl_handle_relative_seek_in(FDCtrl *fdctrl, int direction)
1664
{
B
Blue Swirl 已提交
1665
    FDrive *cur_drv;
1666

B
blueswir1 已提交
1667
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678
    cur_drv = get_cur_drv(fdctrl);
    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 已提交
1679 1680 1681 1682 1683
static const struct {
    uint8_t value;
    uint8_t mask;
    const char* name;
    int parameters;
B
Blue Swirl 已提交
1684
    void (*handler)(FDCtrl *fdctrl, int direction);
B
blueswir1 已提交
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
    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];

B
Blue Swirl 已提交
1723
static void fdctrl_write_data(FDCtrl *fdctrl, uint32_t value)
1724
{
B
Blue Swirl 已提交
1725
    FDrive *cur_drv;
1726
    int pos;
1727

B
bellard 已提交
1728
    /* Reset mode */
B
blueswir1 已提交
1729
    if (!(fdctrl->dor & FD_DOR_nRESET)) {
B
bellard 已提交
1730
        FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
B
bellard 已提交
1731 1732
        return;
    }
B
blueswir1 已提交
1733 1734
    if (!(fdctrl->msr & FD_MSR_RQM) || (fdctrl->msr & FD_MSR_DIO)) {
        FLOPPY_ERROR("controller not ready for writing\n");
B
bellard 已提交
1735 1736
        return;
    }
B
blueswir1 已提交
1737
    fdctrl->dsr &= ~FD_DSR_PWRDOWN;
B
bellard 已提交
1738
    /* Is it write command time ? */
B
blueswir1 已提交
1739
    if (fdctrl->msr & FD_MSR_NONDMA) {
B
bellard 已提交
1740
        /* FIFO data write */
1741 1742 1743 1744
        pos = fdctrl->data_pos++;
        pos %= FD_SECTOR_LEN;
        fdctrl->fifo[pos] = value;
        if (pos == FD_SECTOR_LEN - 1 ||
1745
            fdctrl->data_pos == fdctrl->data_len) {
B
blueswir1 已提交
1746 1747 1748 1749 1750
            cur_drv = get_cur_drv(fdctrl);
            if (bdrv_write(cur_drv->bs, fd_sector(cur_drv), fdctrl->fifo, 1) < 0) {
                FLOPPY_ERROR("writing sector %d\n", fd_sector(cur_drv));
                return;
            }
B
blueswir1 已提交
1751 1752 1753 1754 1755
            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 已提交
1756
        }
1757
        /* Switch from transfer mode to status mode
B
bellard 已提交
1758 1759
         * then from status mode to command mode
         */
B
blueswir1 已提交
1760
        if (fdctrl->data_pos == fdctrl->data_len)
1761
            fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
B
bellard 已提交
1762 1763
        return;
    }
1764
    if (fdctrl->data_pos == 0) {
B
bellard 已提交
1765
        /* Command */
B
blueswir1 已提交
1766 1767 1768
        pos = command_to_handler[value & 0xff];
        FLOPPY_DPRINTF("%s command\n", handlers[pos].name);
        fdctrl->data_len = handlers[pos].parameters + 1;
1769
        fdctrl->msr |= FD_MSR_CMDBUSY;
B
bellard 已提交
1770
    }
B
blueswir1 已提交
1771

1772
    FLOPPY_DPRINTF("%s: %02x\n", __func__, value);
B
blueswir1 已提交
1773 1774
    fdctrl->fifo[fdctrl->data_pos++] = value;
    if (fdctrl->data_pos == fdctrl->data_len) {
B
bellard 已提交
1775 1776 1777
        /* We now have all parameters
         * and will be able to treat the command
         */
1778 1779
        if (fdctrl->data_state & FD_STATE_FORMAT) {
            fdctrl_format_sector(fdctrl);
B
bellard 已提交
1780 1781
            return;
        }
1782

B
blueswir1 已提交
1783 1784 1785
        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 已提交
1786 1787
    }
}
1788 1789 1790

static void fdctrl_result_timer(void *opaque)
{
B
Blue Swirl 已提交
1791 1792
    FDCtrl *fdctrl = opaque;
    FDrive *cur_drv = get_cur_drv(fdctrl);
1793

1794 1795 1796 1797 1798 1799 1800
    /* 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;
    }
1801 1802
    fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
}
B
blueswir1 已提交
1803

1804
static void fdctrl_change_cb(void *opaque, bool load)
1805 1806 1807 1808 1809 1810 1811 1812 1813 1814
{
    FDrive *drive = opaque;

    drive->media_changed = 1;
}

static const BlockDevOps fdctrl_block_ops = {
    .change_media_cb = fdctrl_change_cb,
};

B
blueswir1 已提交
1815
/* Init functions */
1816
static int fdctrl_connect_drives(FDCtrl *fdctrl)
B
blueswir1 已提交
1817
{
B
Blue Swirl 已提交
1818
    unsigned int i;
1819
    FDrive *drive;
B
blueswir1 已提交
1820 1821

    for (i = 0; i < MAX_FD; i++) {
1822 1823
        drive = &fdctrl->drives[i];

1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834
        if (drive->bs) {
            if (bdrv_get_on_error(drive->bs, 0) != BLOCK_ERR_STOP_ENOSPC) {
                error_report("fdc doesn't support drive option werror");
                return -1;
            }
            if (bdrv_get_on_error(drive->bs, 1) != BLOCK_ERR_REPORT) {
                error_report("fdc doesn't support drive option rerror");
                return -1;
            }
        }

1835 1836 1837
        fd_init(drive);
        fd_revalidate(drive);
        if (drive->bs) {
1838 1839
            drive->media_changed = 1;
            bdrv_set_dev_ops(drive->bs, &fdctrl_block_ops, drive);
1840
        }
B
blueswir1 已提交
1841
    }
1842
    return 0;
B
blueswir1 已提交
1843 1844
}

B
Blue Swirl 已提交
1845 1846
void fdctrl_init_sysbus(qemu_irq irq, int dma_chann,
                        target_phys_addr_t mmio_base, DriveInfo **fds)
G
Gerd Hoffmann 已提交
1847
{
B
Blue Swirl 已提交
1848
    FDCtrl *fdctrl;
G
Gerd Hoffmann 已提交
1849
    DeviceState *dev;
B
Blue Swirl 已提交
1850
    FDCtrlSysBus *sys;
G
Gerd Hoffmann 已提交
1851 1852

    dev = qdev_create(NULL, "sysbus-fdc");
B
Blue Swirl 已提交
1853
    sys = DO_UPCAST(FDCtrlSysBus, busdev.qdev, dev);
1854 1855
    fdctrl = &sys->state;
    fdctrl->dma_chann = dma_chann; /* FIXME */
1856
    if (fds[0]) {
1857
        qdev_prop_set_drive_nofail(dev, "driveA", fds[0]->bdrv);
1858 1859
    }
    if (fds[1]) {
1860
        qdev_prop_set_drive_nofail(dev, "driveB", fds[1]->bdrv);
1861
    }
M
Markus Armbruster 已提交
1862
    qdev_init_nofail(dev);
G
Gerd Hoffmann 已提交
1863 1864
    sysbus_connect_irq(&sys->busdev, 0, irq);
    sysbus_mmio_map(&sys->busdev, 0, mmio_base);
B
blueswir1 已提交
1865 1866
}

B
Blue Swirl 已提交
1867 1868
void sun4m_fdctrl_init(qemu_irq irq, target_phys_addr_t io_base,
                       DriveInfo **fds, qemu_irq *fdc_tc)
B
blueswir1 已提交
1869
{
B
Blue Swirl 已提交
1870
    DeviceState *dev;
B
Blue Swirl 已提交
1871
    FDCtrlSysBus *sys;
B
blueswir1 已提交
1872

B
Blue Swirl 已提交
1873
    dev = qdev_create(NULL, "SUNW,fdtwo");
1874
    if (fds[0]) {
1875
        qdev_prop_set_drive_nofail(dev, "drive", fds[0]->bdrv);
1876
    }
M
Markus Armbruster 已提交
1877
    qdev_init_nofail(dev);
B
Blue Swirl 已提交
1878
    sys = DO_UPCAST(FDCtrlSysBus, busdev.qdev, dev);
G
Gerd Hoffmann 已提交
1879 1880
    sysbus_connect_irq(&sys->busdev, 0, irq);
    sysbus_mmio_map(&sys->busdev, 0, io_base);
B
Blue Swirl 已提交
1881
    *fdc_tc = qdev_get_gpio_in(dev, 0);
B
blueswir1 已提交
1882
}
B
Blue Swirl 已提交
1883

J
Jan Kiszka 已提交
1884
static int fdctrl_init_common(FDCtrl *fdctrl)
B
Blue Swirl 已提交
1885
{
B
Blue Swirl 已提交
1886 1887
    int i, j;
    static int command_tables_inited = 0;
B
Blue Swirl 已提交
1888

B
Blue Swirl 已提交
1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902
    /* Fill 'command_to_handler' lookup table */
    if (!command_tables_inited) {
        command_tables_inited = 1;
        for (i = ARRAY_SIZE(handlers) - 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->fifo = qemu_memalign(512, FD_SECTOR_LEN);
J
Juan Quintela 已提交
1903
    fdctrl->fifo_size = 512;
1904
    fdctrl->result_timer = qemu_new_timer_ns(vm_clock,
B
Blue Swirl 已提交
1905 1906 1907 1908
                                          fdctrl_result_timer, fdctrl);

    fdctrl->version = 0x90; /* Intel 82078 controller */
    fdctrl->config = FD_CONFIG_EIS | FD_CONFIG_EFIFO; /* Implicit seek, polling & FIFO enabled */
J
Juan Quintela 已提交
1909
    fdctrl->num_floppies = MAX_FD;
B
Blue Swirl 已提交
1910

1911 1912
    if (fdctrl->dma_chann != -1)
        DMA_register_channel(fdctrl->dma_chann, &fdctrl_transfer_handler, fdctrl);
1913
    return fdctrl_connect_drives(fdctrl);
B
Blue Swirl 已提交
1914 1915
}

1916
static const MemoryRegionPortio fdc_portio_list[] = {
1917
    { 1, 5, 1, .read = fdctrl_read, .write = fdctrl_write },
1918 1919
    { 7, 1, 1, .read = fdctrl_read, .write = fdctrl_write },
    PORTIO_END_OF_LIST(),
1920 1921
};

1922
static int isabus_fdc_init1(ISADevice *dev)
G
Gerd Hoffmann 已提交
1923
{
B
Blue Swirl 已提交
1924 1925
    FDCtrlISABus *isa = DO_UPCAST(FDCtrlISABus, busdev, dev);
    FDCtrl *fdctrl = &isa->state;
1926
    int iobase = 0x3f0;
1927
    int isairq = 6;
1928
    int dma_chann = 2;
B
Blue Swirl 已提交
1929
    int ret;
G
Gerd Hoffmann 已提交
1930

1931
    isa_register_portio_list(dev, iobase, fdc_portio_list, fdctrl, "fdc");
1932

1933
    isa_init_irq(&isa->busdev, &fdctrl->irq, isairq);
1934
    fdctrl->dma_chann = dma_chann;
G
Gerd Hoffmann 已提交
1935

J
Jan Kiszka 已提交
1936 1937
    qdev_set_legacy_instance_id(&dev->qdev, iobase, 2);
    ret = fdctrl_init_common(fdctrl);
B
Blue Swirl 已提交
1938

1939 1940 1941
    add_boot_device_path(isa->bootindexA, &dev->qdev, "/floppy@0");
    add_boot_device_path(isa->bootindexB, &dev->qdev, "/floppy@1");

B
Blue Swirl 已提交
1942
    return ret;
G
Gerd Hoffmann 已提交
1943 1944
}

1945
static int sysbus_fdc_init1(SysBusDevice *dev)
B
Blue Swirl 已提交
1946
{
B
Blue Swirl 已提交
1947 1948
    FDCtrlSysBus *sys = DO_UPCAST(FDCtrlSysBus, busdev, dev);
    FDCtrl *fdctrl = &sys->state;
B
Blue Swirl 已提交
1949
    int ret;
B
Blue Swirl 已提交
1950

A
Avi Kivity 已提交
1951
    memory_region_init_io(&fdctrl->iomem, &fdctrl_mem_ops, fdctrl, "fdc", 0x08);
1952
    sysbus_init_mmio(dev, &fdctrl->iomem);
G
Gerd Hoffmann 已提交
1953 1954
    sysbus_init_irq(dev, &fdctrl->irq);
    qdev_init_gpio_in(&dev->qdev, fdctrl_handle_tc, 1);
1955
    fdctrl->dma_chann = -1;
G
Gerd Hoffmann 已提交
1956

A
Avi Kivity 已提交
1957
    qdev_set_legacy_instance_id(&dev->qdev, 0 /* io */, 2); /* FIXME */
J
Jan Kiszka 已提交
1958
    ret = fdctrl_init_common(fdctrl);
B
Blue Swirl 已提交
1959 1960

    return ret;
B
Blue Swirl 已提交
1961 1962
}

1963
static int sun4m_fdc_init1(SysBusDevice *dev)
B
Blue Swirl 已提交
1964
{
B
Blue Swirl 已提交
1965
    FDCtrl *fdctrl = &(FROM_SYSBUS(FDCtrlSysBus, dev)->state);
B
Blue Swirl 已提交
1966

A
Avi Kivity 已提交
1967 1968
    memory_region_init_io(&fdctrl->iomem, &fdctrl_mem_strict_ops, fdctrl,
                          "fdctrl", 0x08);
1969
    sysbus_init_mmio(dev, &fdctrl->iomem);
G
Gerd Hoffmann 已提交
1970 1971 1972 1973
    sysbus_init_irq(dev, &fdctrl->irq);
    qdev_init_gpio_in(&dev->qdev, fdctrl_handle_tc, 1);

    fdctrl->sun4m = 1;
A
Avi Kivity 已提交
1974
    qdev_set_legacy_instance_id(&dev->qdev, 0 /* io */, 2); /* FIXME */
J
Jan Kiszka 已提交
1975
    return fdctrl_init_common(fdctrl);
B
Blue Swirl 已提交
1976
}
B
Blue Swirl 已提交
1977

K
Kevin Wolf 已提交
1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989
void fdc_get_bs(BlockDriverState *bs[], ISADevice *dev)
{
    FDCtrlISABus *isa = DO_UPCAST(FDCtrlISABus, busdev, dev);
    FDCtrl *fdctrl = &isa->state;
    int i;

    for (i = 0; i < MAX_FD; i++) {
        bs[i] = fdctrl->drives[i].bs;
    }
}


J
Jan Kiszka 已提交
1990 1991 1992 1993 1994 1995 1996 1997 1998 1999
static const VMStateDescription vmstate_isa_fdc ={
    .name = "fdc",
    .version_id = 2,
    .minimum_version_id = 2,
    .fields = (VMStateField []) {
        VMSTATE_STRUCT(state, FDCtrlISABus, 0, vmstate_fdc, FDCtrl),
        VMSTATE_END_OF_LIST()
    }
};

2000 2001 2002 2003 2004 2005 2006 2007
static Property isa_fdc_properties[] = {
    DEFINE_PROP_DRIVE("driveA", FDCtrlISABus, state.drives[0].bs),
    DEFINE_PROP_DRIVE("driveB", FDCtrlISABus, state.drives[1].bs),
    DEFINE_PROP_INT32("bootindexA", FDCtrlISABus, bootindexA, -1),
    DEFINE_PROP_INT32("bootindexB", FDCtrlISABus, bootindexB, -1),
    DEFINE_PROP_END_OF_LIST(),
};

2008 2009
static void isabus_fdc_class_init1(ObjectClass *klass, void *data)
{
2010
    DeviceClass *dc = DEVICE_CLASS(klass);
2011 2012
    ISADeviceClass *ic = ISA_DEVICE_CLASS(klass);
    ic->init = isabus_fdc_init1;
2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024
    dc->fw_name = "fdc";
    dc->no_user = 1;
    dc->reset = fdctrl_external_reset_isa;
    dc->vmsd = &vmstate_isa_fdc;
    dc->props = isa_fdc_properties;
}

static TypeInfo isa_fdc_info = {
    .name          = "isa-fdc",
    .parent        = TYPE_ISA_DEVICE,
    .instance_size = sizeof(FDCtrlISABus),
    .class_init    = isabus_fdc_class_init1,
G
Gerd Hoffmann 已提交
2025 2026
};

J
Jan Kiszka 已提交
2027 2028 2029 2030 2031 2032 2033 2034 2035 2036
static const VMStateDescription vmstate_sysbus_fdc ={
    .name = "fdc",
    .version_id = 2,
    .minimum_version_id = 2,
    .fields = (VMStateField []) {
        VMSTATE_STRUCT(state, FDCtrlSysBus, 0, vmstate_fdc, FDCtrl),
        VMSTATE_END_OF_LIST()
    }
};

2037 2038 2039 2040
static Property sysbus_fdc_properties[] = {
    DEFINE_PROP_DRIVE("driveA", FDCtrlSysBus, state.drives[0].bs),
    DEFINE_PROP_DRIVE("driveB", FDCtrlSysBus, state.drives[1].bs),
    DEFINE_PROP_END_OF_LIST(),
B
Blue Swirl 已提交
2041 2042
};

2043 2044
static void sysbus_fdc_class_init(ObjectClass *klass, void *data)
{
2045
    DeviceClass *dc = DEVICE_CLASS(klass);
2046 2047 2048
    SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);

    k->init = sysbus_fdc_init1;
2049 2050 2051
    dc->reset = fdctrl_external_reset_sysbus;
    dc->vmsd = &vmstate_sysbus_fdc;
    dc->props = sysbus_fdc_properties;
2052 2053
}

2054 2055 2056 2057 2058
static TypeInfo sysbus_fdc_info = {
    .name          = "sysbus-fdc",
    .parent        = TYPE_SYS_BUS_DEVICE,
    .instance_size = sizeof(FDCtrlSysBus),
    .class_init    = sysbus_fdc_class_init,
2059 2060 2061 2062 2063 2064 2065 2066 2067
};

static Property sun4m_fdc_properties[] = {
    DEFINE_PROP_DRIVE("drive", FDCtrlSysBus, state.drives[0].bs),
    DEFINE_PROP_END_OF_LIST(),
};

static void sun4m_fdc_class_init(ObjectClass *klass, void *data)
{
2068
    DeviceClass *dc = DEVICE_CLASS(klass);
2069 2070 2071
    SysBusDeviceClass *k = SYS_BUS_DEVICE_CLASS(klass);

    k->init = sun4m_fdc_init1;
2072 2073 2074
    dc->reset = fdctrl_external_reset_sysbus;
    dc->vmsd = &vmstate_sysbus_fdc;
    dc->props = sun4m_fdc_properties;
2075 2076
}

2077 2078 2079 2080 2081
static TypeInfo sun4m_fdc_info = {
    .name          = "SUNW,fdtwo",
    .parent        = TYPE_SYS_BUS_DEVICE,
    .instance_size = sizeof(FDCtrlSysBus),
    .class_init    = sun4m_fdc_class_init,
B
Blue Swirl 已提交
2082 2083
};

A
Andreas Färber 已提交
2084
static void fdc_register_types(void)
B
Blue Swirl 已提交
2085
{
2086 2087 2088
    type_register_static(&isa_fdc_info);
    type_register_static(&sysbus_fdc_info);
    type_register_static(&sun4m_fdc_info);
B
Blue Swirl 已提交
2089 2090
}

A
Andreas Färber 已提交
2091
type_init(fdc_register_types)