fdc.c 61.5 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 32 33 34
#include "hw.h"
#include "fdc.h"
#include "block.h"
#include "qemu-timer.h"
#include "isa.h"
B
Blue Swirl 已提交
35
#include "sysbus.h"
B
Blue Swirl 已提交
36
#include "qdev-addr.h"
B
bellard 已提交
37 38 39 40 41 42

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

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

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

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

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

B
bellard 已提交
58
/* Will always be a fixed parameter for us */
59 60 61
#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 已提交
62 63

/* Floppy disk drive emulation */
M
malc 已提交
64
typedef enum fdisk_type {
B
bellard 已提交
65 66 67
    FDRIVE_DISK_288   = 0x01, /* 2.88 MB disk           */
    FDRIVE_DISK_144   = 0x02, /* 1.44 MB disk           */
    FDRIVE_DISK_720   = 0x03, /* 720 kB disk            */
68 69
    FDRIVE_DISK_USER  = 0x04, /* User defined geometry  */
    FDRIVE_DISK_NONE  = 0x05, /* No disk                */
M
malc 已提交
70
} e_fdisk_type;
B
bellard 已提交
71

M
malc 已提交
72
typedef enum fdrive_type {
B
bellard 已提交
73 74 75 76
    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     */
M
malc 已提交
77
} e_fdrive_type;
B
bellard 已提交
78

M
malc 已提交
79
typedef enum fdisk_flags {
80
    FDISK_DBL_SIDES  = 0x01,
M
malc 已提交
81
} e_fdisk_flags;
82

M
malc 已提交
83
typedef struct fdrive {
B
bellard 已提交
84 85
    BlockDriverState *bs;
    /* Drive status */
M
malc 已提交
86
    e_fdrive_type drive;
B
bellard 已提交
87 88 89 90 91 92
    uint8_t perpendicular;    /* 2.88 MB access mode    */
    /* Position */
    uint8_t head;
    uint8_t track;
    uint8_t sect;
    /* Media */
M
malc 已提交
93
    e_fdisk_flags flags;
B
bellard 已提交
94 95
    uint8_t last_sect;        /* Nb sector per track    */
    uint8_t max_track;        /* Nb of tracks           */
96
    uint16_t bps;             /* Bytes per sector       */
B
bellard 已提交
97
    uint8_t ro;               /* Is read-only           */
M
malc 已提交
98
} a_fdrive;
B
bellard 已提交
99

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

static int _fd_sector (uint8_t head, uint8_t track,
112
                       uint8_t sect, uint8_t last_sect)
B
bellard 已提交
113 114 115 116 117
{
    return (((track * 2) + head) * last_sect) + sect - 1;
}

/* Returns current position, in sectors, for given drive */
M
malc 已提交
118
static int fd_sector (a_fdrive *drv)
B
bellard 已提交
119 120 121 122
{
    return _fd_sector(drv->head, drv->track, drv->sect, drv->last_sect);
}

B
blueswir1 已提交
123 124 125 126 127 128 129
/* 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
 */
M
malc 已提交
130
static int fd_seek (a_fdrive *drv, uint8_t head, uint8_t track, uint8_t sect,
B
bellard 已提交
131 132 133
                    int enable_seek)
{
    uint32_t sector;
134 135 136
    int ret;

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

168
    return ret;
B
bellard 已提交
169 170 171
}

/* Set drive back to track 0 */
M
malc 已提交
172
static void fd_recalibrate (a_fdrive *drv)
B
bellard 已提交
173 174 175 176 177 178 179
{
    FLOPPY_DPRINTF("recalibrate\n");
    drv->head = 0;
    drv->track = 0;
    drv->sect = 1;
}

180
/* Recognize floppy formats */
M
malc 已提交
181 182 183
typedef struct fd_format {
    e_fdrive_type drive;
    e_fdisk_type  disk;
184 185 186
    uint8_t last_sect;
    uint8_t max_track;
    uint8_t max_head;
T
ths 已提交
187
    const char *str;
M
malc 已提交
188
} a_fd_format;
189

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

    FLOPPY_DPRINTF("revalidate\n");
246
    if (drv->bs != NULL && bdrv_is_inserted(drv->bs)) {
247 248 249 250
        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)",
251
                           nb_heads - 1, max_track, last_sect);
252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
        } 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,
284
                           nb_heads, max_track, last_sect, ro ? "ro" : "rw");
285 286 287 288 289 290 291 292 293
        }
        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 已提交
294
    } else {
295
        FLOPPY_DPRINTF("No disk in drive\n");
296
        drv->last_sect = 0;
297 298
        drv->max_track = 0;
        drv->flags &= ~FDISK_DBL_SIDES;
B
bellard 已提交
299
    }
300 301
}

B
bellard 已提交
302
/********************************************************/
B
bellard 已提交
303
/* Intel 82078 floppy disk controller emulation          */
B
bellard 已提交
304

M
malc 已提交
305 306
static void fdctrl_reset (a_fdctrl *fdctrl, int do_irq);
static void fdctrl_reset_fifo (a_fdctrl *fdctrl);
B
bellard 已提交
307
static int fdctrl_transfer_handler (void *opaque, int nchan,
M
malc 已提交
308 309 310 311 312 313 314 315 316 317 318 319 320 321
                                      int dma_pos, int dma_len);
static void fdctrl_raise_irq (a_fdctrl *fdctrl, uint8_t status0);

static uint32_t fdctrl_read_statusA (a_fdctrl *fdctrl);
static uint32_t fdctrl_read_statusB (a_fdctrl *fdctrl);
static uint32_t fdctrl_read_dor (a_fdctrl *fdctrl);
static void fdctrl_write_dor (a_fdctrl *fdctrl, uint32_t value);
static uint32_t fdctrl_read_tape (a_fdctrl *fdctrl);
static void fdctrl_write_tape (a_fdctrl *fdctrl, uint32_t value);
static uint32_t fdctrl_read_main_status (a_fdctrl *fdctrl);
static void fdctrl_write_rate (a_fdctrl *fdctrl, uint32_t value);
static uint32_t fdctrl_read_data (a_fdctrl *fdctrl);
static void fdctrl_write_data (a_fdctrl *fdctrl, uint32_t value);
static uint32_t fdctrl_read_dir (a_fdctrl *fdctrl);
B
bellard 已提交
322 323 324 325 326 327 328 329 330 331

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

enum {
B
blueswir1 已提交
332 333 334
    FD_STATE_MULTI  = 0x01,	/* multi track flag */
    FD_STATE_FORMAT = 0x02,	/* format flag */
    FD_STATE_SEEK   = 0x04,	/* seek flag */
B
bellard 已提交
335 336
};

337
enum {
B
blueswir1 已提交
338 339
    FD_REG_SRA = 0x00,
    FD_REG_SRB = 0x01,
340 341 342 343 344 345 346 347 348
    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 {
349
    FD_CMD_READ_TRACK = 0x02,
350 351
    FD_CMD_SPECIFY = 0x03,
    FD_CMD_SENSE_DRIVE_STATUS = 0x04,
352 353
    FD_CMD_WRITE = 0x05,
    FD_CMD_READ = 0x06,
354 355
    FD_CMD_RECALIBRATE = 0x07,
    FD_CMD_SENSE_INTERRUPT_STATUS = 0x08,
356 357 358 359
    FD_CMD_WRITE_DELETED = 0x09,
    FD_CMD_READ_ID = 0x0a,
    FD_CMD_READ_DELETED = 0x0c,
    FD_CMD_FORMAT_TRACK = 0x0d,
360 361 362
    FD_CMD_DUMPREG = 0x0e,
    FD_CMD_SEEK = 0x0f,
    FD_CMD_VERSION = 0x10,
363
    FD_CMD_SCAN_EQUAL = 0x11,
364 365
    FD_CMD_PERPENDICULAR_MODE = 0x12,
    FD_CMD_CONFIGURE = 0x13,
366 367
    FD_CMD_LOCK = 0x14,
    FD_CMD_VERIFY = 0x16,
368 369
    FD_CMD_POWERDOWN_MODE = 0x17,
    FD_CMD_PART_ID = 0x18,
370 371
    FD_CMD_SCAN_LOW_OR_EQUAL = 0x19,
    FD_CMD_SCAN_HIGH_OR_EQUAL = 0x1d,
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
    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 已提交
397 398 399 400 401 402 403 404 405
enum {
    FD_SR1_EC       = 0x80, /* End of cylinder */
};

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

B
blueswir1 已提交
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
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,
};

426
enum {
B
blueswir1 已提交
427 428 429
#if MAX_FD == 4
    FD_DOR_SELMASK  = 0x03,
#else
430
    FD_DOR_SELMASK  = 0x01,
B
blueswir1 已提交
431
#endif
432 433 434 435 436 437 438 439 440
    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 已提交
441
#if MAX_FD == 4
442
    FD_TDR_BOOTSEL  = 0x0c,
B
blueswir1 已提交
443 444 445
#else
    FD_TDR_BOOTSEL  = 0x04,
#endif
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
};

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 已提交
469 470
#define FD_MULTI_TRACK(state) ((state) & FD_STATE_MULTI)
#define FD_DID_SEEK(state) ((state) & FD_STATE_SEEK)
471
#define FD_FORMAT_CMD(state) ((state) & FD_STATE_FORMAT)
B
bellard 已提交
472

M
malc 已提交
473
struct fdctrl {
B
bellard 已提交
474
    /* Controller's identification */
B
bellard 已提交
475 476
    uint8_t version;
    /* HW */
P
pbrook 已提交
477
    qemu_irq irq;
B
bellard 已提交
478
    int dma_chann;
B
bellard 已提交
479
    /* Controller state */
480
    QEMUTimer *result_timer;
B
blueswir1 已提交
481 482
    uint8_t sra;
    uint8_t srb;
B
blueswir1 已提交
483
    uint8_t dor;
J
Juan Quintela 已提交
484
    uint8_t dor_vmstate; /* only used as temp during vmstate */
B
blueswir1 已提交
485
    uint8_t tdr;
B
blueswir1 已提交
486
    uint8_t dsr;
B
blueswir1 已提交
487
    uint8_t msr;
B
bellard 已提交
488
    uint8_t cur_drv;
B
blueswir1 已提交
489 490 491
    uint8_t status0;
    uint8_t status1;
    uint8_t status2;
B
bellard 已提交
492
    /* Command FIFO */
493
    uint8_t *fifo;
J
Juan Quintela 已提交
494
    int32_t fifo_size;
B
bellard 已提交
495 496 497 498
    uint32_t data_pos;
    uint32_t data_len;
    uint8_t data_state;
    uint8_t data_dir;
499
    uint8_t eot; /* last wanted sector */
B
bellard 已提交
500 501 502 503 504 505 506 507 508 509
    /* 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 已提交
510
    /* Sun4m quirks? */
B
blueswir1 已提交
511
    int sun4m;
B
bellard 已提交
512
    /* Floppy drives */
J
Juan Quintela 已提交
513
    uint8_t num_floppies;
M
malc 已提交
514
    a_fdrive drives[MAX_FD];
515
    int reset_sensei;
516 517
};

M
malc 已提交
518
typedef struct fdctrl_sysbus {
G
Gerd Hoffmann 已提交
519
    SysBusDevice busdev;
M
malc 已提交
520 521
    struct fdctrl state;
} a_fdctrl_sysbus;
G
Gerd Hoffmann 已提交
522

M
malc 已提交
523
typedef struct fdctrl_isabus {
G
Gerd Hoffmann 已提交
524
    ISADevice busdev;
M
malc 已提交
525 526
    struct fdctrl state;
} a_fdctrl_isabus;
G
Gerd Hoffmann 已提交
527

528 529
static uint32_t fdctrl_read (void *opaque, uint32_t reg)
{
M
malc 已提交
530
    a_fdctrl *fdctrl = opaque;
531 532
    uint32_t retval;

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

    return retval;
}

static void fdctrl_write (void *opaque, uint32_t reg, uint32_t value)
{
M
malc 已提交
566
    a_fdctrl *fdctrl = opaque;
567

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

B
blueswir1 已提交
570
    switch (reg) {
571
    case FD_REG_DOR:
572 573
        fdctrl_write_dor(fdctrl, value);
        break;
574
    case FD_REG_TDR:
575
        fdctrl_write_tape(fdctrl, value);
576
        break;
577
    case FD_REG_DSR:
578
        fdctrl_write_rate(fdctrl, value);
579
        break;
580
    case FD_REG_FIFO:
581
        fdctrl_write_data(fdctrl, value);
582
        break;
583
    default:
584
        break;
585
    }
586 587
}

B
blueswir1 已提交
588 589 590 591 592 593 594 595 596 597
static uint32_t fdctrl_read_port (void *opaque, uint32_t reg)
{
    return fdctrl_read(opaque, reg & 7);
}

static void fdctrl_write_port (void *opaque, uint32_t reg, uint32_t value)
{
    fdctrl_write(opaque, reg & 7, value);
}

M
malc 已提交
598
static uint32_t fdctrl_read_mem (void *opaque, a_target_phys_addr reg)
B
bellard 已提交
599
{
600
    return fdctrl_read(opaque, (uint32_t)reg);
B
bellard 已提交
601 602
}

603
static void fdctrl_write_mem (void *opaque,
M
malc 已提交
604
                              a_target_phys_addr reg, uint32_t value)
B
bellard 已提交
605
{
606
    fdctrl_write(opaque, (uint32_t)reg, value);
B
bellard 已提交
607 608
}

609
static CPUReadMemoryFunc * const fdctrl_mem_read[3] = {
B
bellard 已提交
610 611 612
    fdctrl_read_mem,
    fdctrl_read_mem,
    fdctrl_read_mem,
B
bellard 已提交
613 614
};

615
static CPUWriteMemoryFunc * const fdctrl_mem_write[3] = {
B
bellard 已提交
616 617 618
    fdctrl_write_mem,
    fdctrl_write_mem,
    fdctrl_write_mem,
B
bellard 已提交
619 620
};

621
static CPUReadMemoryFunc * const fdctrl_mem_read_strict[3] = {
622 623 624 625 626
    fdctrl_read_mem,
    NULL,
    NULL,
};

627
static CPUWriteMemoryFunc * const fdctrl_mem_write_strict[3] = {
628 629 630 631 632
    fdctrl_write_mem,
    NULL,
    NULL,
};

J
Juan Quintela 已提交
633 634 635 636 637 638
static const VMStateDescription vmstate_fdrive = {
    .name = "fdrive",
    .version_id = 1,
    .minimum_version_id = 1,
    .minimum_version_id_old = 1,
    .fields      = (VMStateField []) {
M
malc 已提交
639 640 641
        VMSTATE_UINT8(head, a_fdrive),
        VMSTATE_UINT8(track, a_fdrive),
        VMSTATE_UINT8(sect, a_fdrive),
J
Juan Quintela 已提交
642 643 644
        VMSTATE_END_OF_LIST()
    }
};
645

J
Juan Quintela 已提交
646
static void fdc_pre_save(const void *opaque)
647
{
M
malc 已提交
648
    a_fdctrl *s = (void *)opaque;
649

J
Juan Quintela 已提交
650
    s->dor_vmstate = s->dor | GET_CUR_DRV(s);
651 652
}

J
Juan Quintela 已提交
653
static int fdc_post_load(void *opaque)
654
{
M
malc 已提交
655
    a_fdctrl *s = opaque;
656

J
Juan Quintela 已提交
657 658
    SET_CUR_DRV(s, s->dor_vmstate & FD_DOR_SELMASK);
    s->dor = s->dor_vmstate & ~FD_DOR_SELMASK;
659 660 661
    return 0;
}

J
Juan Quintela 已提交
662 663 664 665 666 667 668 669 670
static const VMStateDescription vmstate_fdc = {
    .name = "fdc",
    .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 */
M
malc 已提交
671 672 673 674 675 676 677 678 679
        VMSTATE_UINT8(sra, a_fdctrl),
        VMSTATE_UINT8(srb, a_fdctrl),
        VMSTATE_UINT8(dor_vmstate, a_fdctrl),
        VMSTATE_UINT8(tdr, a_fdctrl),
        VMSTATE_UINT8(dsr, a_fdctrl),
        VMSTATE_UINT8(msr, a_fdctrl),
        VMSTATE_UINT8(status0, a_fdctrl),
        VMSTATE_UINT8(status1, a_fdctrl),
        VMSTATE_UINT8(status2, a_fdctrl),
J
Juan Quintela 已提交
680
        /* Command FIFO */
M
malc 已提交
681 682 683 684 685 686
        VMSTATE_VARRAY(fifo, a_fdctrl, fifo_size, 0, vmstate_info_uint8, uint8),
        VMSTATE_UINT32(data_pos, a_fdctrl),
        VMSTATE_UINT32(data_len, a_fdctrl),
        VMSTATE_UINT8(data_state, a_fdctrl),
        VMSTATE_UINT8(data_dir, a_fdctrl),
        VMSTATE_UINT8(eot, a_fdctrl),
J
Juan Quintela 已提交
687
        /* States kept only to be returned back */
M
malc 已提交
688 689 690 691 692 693 694 695 696
        VMSTATE_UINT8(timer0, a_fdctrl),
        VMSTATE_UINT8(timer1, a_fdctrl),
        VMSTATE_UINT8(precomp_trk, a_fdctrl),
        VMSTATE_UINT8(config, a_fdctrl),
        VMSTATE_UINT8(lock, a_fdctrl),
        VMSTATE_UINT8(pwrd, a_fdctrl),
        VMSTATE_UINT8_EQUAL(num_floppies, a_fdctrl),
        VMSTATE_STRUCT_ARRAY(drives, a_fdctrl, MAX_FD, 1,
                             vmstate_fdrive, a_fdrive),
J
Juan Quintela 已提交
697
        VMSTATE_END_OF_LIST()
B
blueswir1 已提交
698
    }
J
Juan Quintela 已提交
699
};
700 701 702

static void fdctrl_external_reset(void *opaque)
{
M
malc 已提交
703
    a_fdctrl *s = opaque;
704 705 706 707

    fdctrl_reset(s, 0);
}

B
blueswir1 已提交
708 709
static void fdctrl_handle_tc(void *opaque, int irq, int level)
{
M
malc 已提交
710
    //a_fdctrl *s = opaque;
B
blueswir1 已提交
711 712 713 714 715 716 717

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

718
/* XXX: may change if moved to bdrv */
M
malc 已提交
719
int fdctrl_get_drive_type(a_fdctrl *fdctrl, int drive_num)
720
{
721
    return fdctrl->drives[drive_num].drive;
B
bellard 已提交
722 723 724
}

/* Change IRQ state */
M
malc 已提交
725
static void fdctrl_reset_irq (a_fdctrl *fdctrl)
B
bellard 已提交
726
{
B
blueswir1 已提交
727 728
    if (!(fdctrl->sra & FD_SRA_INTPEND))
        return;
729
    FLOPPY_DPRINTF("Reset interrupt\n");
P
pbrook 已提交
730
    qemu_set_irq(fdctrl->irq, 0);
B
blueswir1 已提交
731
    fdctrl->sra &= ~FD_SRA_INTPEND;
B
bellard 已提交
732 733
}

M
malc 已提交
734
static void fdctrl_raise_irq (a_fdctrl *fdctrl, uint8_t status0)
B
bellard 已提交
735
{
B
blueswir1 已提交
736 737 738 739 740
    /* 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 已提交
741
        fdctrl->status0 = status0;
742
        return;
B
bellard 已提交
743
    }
B
blueswir1 已提交
744
    if (!(fdctrl->sra & FD_SRA_INTPEND)) {
P
pbrook 已提交
745
        qemu_set_irq(fdctrl->irq, 1);
B
blueswir1 已提交
746
        fdctrl->sra |= FD_SRA_INTPEND;
B
bellard 已提交
747
    }
748
    fdctrl->reset_sensei = 0;
B
blueswir1 已提交
749 750
    fdctrl->status0 = status0;
    FLOPPY_DPRINTF("Set interrupt status to 0x%02x\n", fdctrl->status0);
B
bellard 已提交
751 752
}

B
bellard 已提交
753
/* Reset controller */
M
malc 已提交
754
static void fdctrl_reset (a_fdctrl *fdctrl, int do_irq)
B
bellard 已提交
755 756 757
{
    int i;

B
bellard 已提交
758
    FLOPPY_DPRINTF("reset controller\n");
759
    fdctrl_reset_irq(fdctrl);
B
bellard 已提交
760
    /* Initialise controller */
B
blueswir1 已提交
761 762 763 764
    fdctrl->sra = 0;
    fdctrl->srb = 0xc0;
    if (!fdctrl->drives[1].bs)
        fdctrl->sra |= FD_SRA_nDRV2;
765
    fdctrl->cur_drv = 0;
B
blueswir1 已提交
766
    fdctrl->dor = FD_DOR_nRESET;
B
blueswir1 已提交
767
    fdctrl->dor |= (fdctrl->dma_chann != -1) ? FD_DOR_DMAEN : 0;
B
blueswir1 已提交
768
    fdctrl->msr = FD_MSR_RQM;
B
bellard 已提交
769
    /* FIFO state */
770 771
    fdctrl->data_pos = 0;
    fdctrl->data_len = 0;
B
blueswir1 已提交
772
    fdctrl->data_state = 0;
773
    fdctrl->data_dir = FD_DIR_WRITE;
B
bellard 已提交
774
    for (i = 0; i < MAX_FD; i++)
B
blueswir1 已提交
775
        fd_recalibrate(&fdctrl->drives[i]);
776
    fdctrl_reset_fifo(fdctrl);
B
blueswir1 已提交
777
    if (do_irq) {
778
        fdctrl_raise_irq(fdctrl, FD_SR0_RDYCHG);
779
        fdctrl->reset_sensei = FD_RESET_SENSEI_COUNT;
B
blueswir1 已提交
780
    }
781 782
}

M
malc 已提交
783
static inline a_fdrive *drv0 (a_fdctrl *fdctrl)
784
{
B
blueswir1 已提交
785
    return &fdctrl->drives[(fdctrl->tdr & FD_TDR_BOOTSEL) >> 2];
786 787
}

M
malc 已提交
788
static inline a_fdrive *drv1 (a_fdctrl *fdctrl)
789
{
B
blueswir1 已提交
790 791 792 793
    if ((fdctrl->tdr & FD_TDR_BOOTSEL) < (1 << 2))
        return &fdctrl->drives[1];
    else
        return &fdctrl->drives[0];
794 795
}

B
blueswir1 已提交
796
#if MAX_FD == 4
M
malc 已提交
797
static inline a_fdrive *drv2 (a_fdctrl *fdctrl)
B
blueswir1 已提交
798 799 800 801 802 803 804
{
    if ((fdctrl->tdr & FD_TDR_BOOTSEL) < (2 << 2))
        return &fdctrl->drives[2];
    else
        return &fdctrl->drives[1];
}

M
malc 已提交
805
static inline a_fdrive *drv3 (a_fdctrl *fdctrl)
B
blueswir1 已提交
806 807 808 809 810 811 812 813
{
    if ((fdctrl->tdr & FD_TDR_BOOTSEL) < (3 << 2))
        return &fdctrl->drives[3];
    else
        return &fdctrl->drives[2];
}
#endif

M
malc 已提交
814
static a_fdrive *get_cur_drv (a_fdctrl *fdctrl)
815
{
B
blueswir1 已提交
816 817 818 819 820 821 822 823 824
    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 已提交
825 826
}

B
blueswir1 已提交
827
/* Status A register : 0x00 (read-only) */
M
malc 已提交
828
static uint32_t fdctrl_read_statusA (a_fdctrl *fdctrl)
B
blueswir1 已提交
829 830 831 832 833 834 835 836
{
    uint32_t retval = fdctrl->sra;

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

    return retval;
}

B
bellard 已提交
837
/* Status B register : 0x01 (read-only) */
M
malc 已提交
838
static uint32_t fdctrl_read_statusB (a_fdctrl *fdctrl)
B
bellard 已提交
839
{
B
blueswir1 已提交
840 841 842 843 844
    uint32_t retval = fdctrl->srb;

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

    return retval;
B
bellard 已提交
845 846 847
}

/* Digital output register : 0x02 */
M
malc 已提交
848
static uint32_t fdctrl_read_dor (a_fdctrl *fdctrl)
B
bellard 已提交
849
{
B
blueswir1 已提交
850
    uint32_t retval = fdctrl->dor;
B
bellard 已提交
851 852

    /* Selected drive */
853
    retval |= fdctrl->cur_drv;
B
bellard 已提交
854 855 856 857 858
    FLOPPY_DPRINTF("digital output register: 0x%02x\n", retval);

    return retval;
}

M
malc 已提交
859
static void fdctrl_write_dor (a_fdctrl *fdctrl, uint32_t value)
B
bellard 已提交
860 861
{
    FLOPPY_DPRINTF("digital output register set to 0x%02x\n", value);
B
blueswir1 已提交
862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878

    /* 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 已提交
879
    /* Reset */
880
    if (!(value & FD_DOR_nRESET)) {
B
blueswir1 已提交
881
        if (fdctrl->dor & FD_DOR_nRESET) {
B
bellard 已提交
882
            FLOPPY_DPRINTF("controller enter RESET state\n");
B
bellard 已提交
883 884
        }
    } else {
B
blueswir1 已提交
885
        if (!(fdctrl->dor & FD_DOR_nRESET)) {
B
bellard 已提交
886
            FLOPPY_DPRINTF("controller out of RESET state\n");
887
            fdctrl_reset(fdctrl, 1);
B
blueswir1 已提交
888
            fdctrl->dsr &= ~FD_DSR_PWRDOWN;
B
bellard 已提交
889 890 891
        }
    }
    /* Selected drive */
892
    fdctrl->cur_drv = value & FD_DOR_SELMASK;
B
blueswir1 已提交
893 894

    fdctrl->dor = value;
B
bellard 已提交
895 896 897
}

/* Tape drive register : 0x03 */
M
malc 已提交
898
static uint32_t fdctrl_read_tape (a_fdctrl *fdctrl)
B
bellard 已提交
899
{
B
blueswir1 已提交
900
    uint32_t retval = fdctrl->tdr;
B
bellard 已提交
901 902 903 904 905 906

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

    return retval;
}

M
malc 已提交
907
static void fdctrl_write_tape (a_fdctrl *fdctrl, uint32_t value)
B
bellard 已提交
908 909
{
    /* Reset mode */
B
blueswir1 已提交
910
    if (!(fdctrl->dor & FD_DOR_nRESET)) {
B
bellard 已提交
911
        FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
B
bellard 已提交
912 913 914 915
        return;
    }
    FLOPPY_DPRINTF("tape drive register set to 0x%02x\n", value);
    /* Disk boot selection indicator */
B
blueswir1 已提交
916
    fdctrl->tdr = value & FD_TDR_BOOTSEL;
B
bellard 已提交
917 918 919 920
    /* Tape indicators: never allow */
}

/* Main status register : 0x04 (read) */
M
malc 已提交
921
static uint32_t fdctrl_read_main_status (a_fdctrl *fdctrl)
B
bellard 已提交
922
{
B
blueswir1 已提交
923
    uint32_t retval = fdctrl->msr;
B
bellard 已提交
924

B
blueswir1 已提交
925
    fdctrl->dsr &= ~FD_DSR_PWRDOWN;
B
blueswir1 已提交
926
    fdctrl->dor |= FD_DOR_nRESET;
B
blueswir1 已提交
927

B
bellard 已提交
928 929 930 931 932 933
    FLOPPY_DPRINTF("main status register: 0x%02x\n", retval);

    return retval;
}

/* Data select rate register : 0x04 (write) */
M
malc 已提交
934
static void fdctrl_write_rate (a_fdctrl *fdctrl, uint32_t value)
B
bellard 已提交
935 936
{
    /* Reset mode */
B
blueswir1 已提交
937
    if (!(fdctrl->dor & FD_DOR_nRESET)) {
938 939 940
        FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
        return;
    }
B
bellard 已提交
941 942
    FLOPPY_DPRINTF("select rate register set to 0x%02x\n", value);
    /* Reset: autoclear */
943
    if (value & FD_DSR_SWRESET) {
B
blueswir1 已提交
944
        fdctrl->dor &= ~FD_DOR_nRESET;
945
        fdctrl_reset(fdctrl, 1);
B
blueswir1 已提交
946
        fdctrl->dor |= FD_DOR_nRESET;
B
bellard 已提交
947
    }
948
    if (value & FD_DSR_PWRDOWN) {
949
        fdctrl_reset(fdctrl, 1);
B
bellard 已提交
950
    }
B
blueswir1 已提交
951
    fdctrl->dsr = value;
B
bellard 已提交
952 953
}

M
malc 已提交
954
static int fdctrl_media_changed(a_fdrive *drv)
B
bellard 已提交
955 956
{
    int ret;
957

958
    if (!drv->bs)
B
bellard 已提交
959 960 961 962 963 964 965 966
        return 0;
    ret = bdrv_media_changed(drv->bs);
    if (ret) {
        fd_revalidate(drv);
    }
    return ret;
}

B
bellard 已提交
967
/* Digital input register : 0x07 (read-only) */
M
malc 已提交
968
static uint32_t fdctrl_read_dir (a_fdctrl *fdctrl)
B
bellard 已提交
969 970 971
{
    uint32_t retval = 0;

B
blueswir1 已提交
972 973 974 975 976 977 978
    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
        )
979
        retval |= FD_DIR_DSKCHG;
B
bellard 已提交
980
    if (retval != 0)
981
        FLOPPY_DPRINTF("Floppy digital input register: 0x%02x\n", retval);
B
bellard 已提交
982 983 984 985 986

    return retval;
}

/* FIFO state control */
M
malc 已提交
987
static void fdctrl_reset_fifo (a_fdctrl *fdctrl)
B
bellard 已提交
988
{
989 990
    fdctrl->data_dir = FD_DIR_WRITE;
    fdctrl->data_pos = 0;
B
blueswir1 已提交
991
    fdctrl->msr &= ~(FD_MSR_CMDBUSY | FD_MSR_DIO);
B
bellard 已提交
992 993 994
}

/* Set FIFO status for the host to read */
M
malc 已提交
995
static void fdctrl_set_fifo (a_fdctrl *fdctrl, int fifo_len, int do_irq)
B
bellard 已提交
996
{
997 998 999
    fdctrl->data_dir = FD_DIR_READ;
    fdctrl->data_len = fifo_len;
    fdctrl->data_pos = 0;
B
blueswir1 已提交
1000
    fdctrl->msr |= FD_MSR_CMDBUSY | FD_MSR_RQM | FD_MSR_DIO;
B
bellard 已提交
1001
    if (do_irq)
1002
        fdctrl_raise_irq(fdctrl, 0x00);
B
bellard 已提交
1003 1004 1005
}

/* Set an error: unimplemented/unknown command */
M
malc 已提交
1006
static void fdctrl_unimplemented (a_fdctrl *fdctrl, int direction)
B
bellard 已提交
1007
{
B
blueswir1 已提交
1008
    FLOPPY_ERROR("unimplemented command 0x%02x\n", fdctrl->fifo[0]);
1009
    fdctrl->fifo[0] = FD_SR0_INVCMD;
1010
    fdctrl_set_fifo(fdctrl, 1, 0);
B
bellard 已提交
1011 1012
}

B
blueswir1 已提交
1013
/* Seek to next sector */
M
malc 已提交
1014
static int fdctrl_seek_to_next_sect (a_fdctrl *fdctrl, a_fdrive *cur_drv)
B
blueswir1 已提交
1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046
{
    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 已提交
1047
/* Callback for transfer end (stop or abort) */
M
malc 已提交
1048
static void fdctrl_stop_transfer (a_fdctrl *fdctrl, uint8_t status0,
1049
                                  uint8_t status1, uint8_t status2)
B
bellard 已提交
1050
{
M
malc 已提交
1051
    a_fdrive *cur_drv;
B
bellard 已提交
1052

1053
    cur_drv = get_cur_drv(fdctrl);
B
bellard 已提交
1054 1055
    FLOPPY_DPRINTF("transfer status: %02x %02x %02x (%02x)\n",
                   status0, status1, status2,
B
blueswir1 已提交
1056 1057
                   status0 | (cur_drv->head << 2) | GET_CUR_DRV(fdctrl));
    fdctrl->fifo[0] = status0 | (cur_drv->head << 2) | GET_CUR_DRV(fdctrl);
1058 1059 1060 1061 1062 1063 1064
    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 已提交
1065
    if (!(fdctrl->msr & FD_MSR_NONDMA)) {
1066
        DMA_release_DREQ(fdctrl->dma_chann);
1067
    }
B
blueswir1 已提交
1068
    fdctrl->msr |= FD_MSR_RQM | FD_MSR_DIO;
B
blueswir1 已提交
1069
    fdctrl->msr &= ~FD_MSR_NONDMA;
1070
    fdctrl_set_fifo(fdctrl, 7, 1);
B
bellard 已提交
1071 1072 1073
}

/* Prepare a data transfer (either DMA or FIFO) */
M
malc 已提交
1074
static void fdctrl_start_transfer (a_fdctrl *fdctrl, int direction)
B
bellard 已提交
1075
{
M
malc 已提交
1076
    a_fdrive *cur_drv;
B
bellard 已提交
1077
    uint8_t kh, kt, ks;
B
blueswir1 已提交
1078
    int did_seek = 0;
B
bellard 已提交
1079

B
blueswir1 已提交
1080
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1081 1082 1083 1084
    cur_drv = get_cur_drv(fdctrl);
    kt = fdctrl->fifo[2];
    kh = fdctrl->fifo[3];
    ks = fdctrl->fifo[4];
B
bellard 已提交
1085
    FLOPPY_DPRINTF("Start transfer at %d %d %02x %02x (%d)\n",
B
blueswir1 已提交
1086
                   GET_CUR_DRV(fdctrl), kh, kt, ks,
B
bellard 已提交
1087
                   _fd_sector(kh, kt, ks, cur_drv->last_sect));
B
blueswir1 已提交
1088
    switch (fd_seek(cur_drv, kh, kt, ks, fdctrl->config & FD_CONFIG_EIS)) {
B
bellard 已提交
1089 1090
    case 2:
        /* sect too big */
1091
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1092 1093 1094
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
1095 1096 1097
        return;
    case 3:
        /* track too big */
B
blueswir1 已提交
1098
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, FD_SR1_EC, 0x00);
1099 1100 1101
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
1102 1103 1104
        return;
    case 4:
        /* No seek enabled */
1105
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1106 1107 1108
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
B
bellard 已提交
1109 1110 1111 1112 1113 1114 1115
        return;
    case 1:
        did_seek = 1;
        break;
    default:
        break;
    }
B
blueswir1 已提交
1116

B
bellard 已提交
1117
    /* Set the FIFO state */
1118 1119
    fdctrl->data_dir = direction;
    fdctrl->data_pos = 0;
B
blueswir1 已提交
1120
    fdctrl->msr |= FD_MSR_CMDBUSY;
1121 1122 1123 1124
    if (fdctrl->fifo[0] & 0x80)
        fdctrl->data_state |= FD_STATE_MULTI;
    else
        fdctrl->data_state &= ~FD_STATE_MULTI;
B
bellard 已提交
1125
    if (did_seek)
1126 1127 1128 1129 1130 1131
        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 {
1132
        int tmp;
T
ths 已提交
1133
        fdctrl->data_len = 128 << (fdctrl->fifo[5] > 7 ? 7 : fdctrl->fifo[5]);
1134
        tmp = (fdctrl->fifo[6] - ks + 1);
1135
        if (fdctrl->fifo[0] & 0x80)
1136
            tmp += fdctrl->fifo[6];
1137
        fdctrl->data_len *= tmp;
1138
    }
1139
    fdctrl->eot = fdctrl->fifo[6];
B
blueswir1 已提交
1140
    if (fdctrl->dor & FD_DOR_DMAEN) {
B
bellard 已提交
1141 1142
        int dma_mode;
        /* DMA transfer are enabled. Check if DMA channel is well programmed */
1143
        dma_mode = DMA_get_channel_mode(fdctrl->dma_chann);
B
bellard 已提交
1144
        dma_mode = (dma_mode >> 2) & 3;
1145
        FLOPPY_DPRINTF("dma_mode=%d direction=%d (%d - %d)\n",
1146
                       dma_mode, direction,
1147
                       (128 << fdctrl->fifo[5]) *
1148
                       (cur_drv->last_sect - ks + 1), fdctrl->data_len);
B
bellard 已提交
1149 1150 1151 1152 1153
        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 已提交
1154
            fdctrl->msr &= ~FD_MSR_RQM;
B
bellard 已提交
1155
            /* Now, we just have to wait for the DMA controller to
B
bellard 已提交
1156 1157
             * recall us...
             */
1158 1159
            DMA_hold_DREQ(fdctrl->dma_chann);
            DMA_schedule(fdctrl->dma_chann);
B
bellard 已提交
1160
            return;
1161
        } else {
1162
            FLOPPY_ERROR("dma_mode=%d direction=%d\n", dma_mode, direction);
B
bellard 已提交
1163 1164 1165
        }
    }
    FLOPPY_DPRINTF("start non-DMA transfer\n");
B
blueswir1 已提交
1166
    fdctrl->msr |= FD_MSR_NONDMA;
B
blueswir1 已提交
1167 1168
    if (direction != FD_DIR_WRITE)
        fdctrl->msr |= FD_MSR_DIO;
B
bellard 已提交
1169
    /* IO based transfer: calculate len */
1170
    fdctrl_raise_irq(fdctrl, 0x00);
B
bellard 已提交
1171 1172 1173 1174 1175

    return;
}

/* Prepare a transfer of deleted data */
M
malc 已提交
1176
static void fdctrl_start_transfer_del (a_fdctrl *fdctrl, int direction)
B
bellard 已提交
1177
{
B
blueswir1 已提交
1178 1179
    FLOPPY_ERROR("fdctrl_start_transfer_del() unimplemented\n");

B
bellard 已提交
1180 1181 1182
    /* We don't handle deleted data,
     * so we don't return *ANYTHING*
     */
1183
    fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
B
bellard 已提交
1184 1185 1186
}

/* handlers for DMA transfers */
B
bellard 已提交
1187 1188
static int fdctrl_transfer_handler (void *opaque, int nchan,
                                    int dma_pos, int dma_len)
B
bellard 已提交
1189
{
M
malc 已提交
1190 1191
    a_fdctrl *fdctrl;
    a_fdrive *cur_drv;
1192
    int len, start_pos, rel_pos;
B
bellard 已提交
1193 1194
    uint8_t status0 = 0x00, status1 = 0x00, status2 = 0x00;

1195
    fdctrl = opaque;
B
blueswir1 已提交
1196
    if (fdctrl->msr & FD_MSR_RQM) {
B
bellard 已提交
1197 1198 1199
        FLOPPY_DPRINTF("Not in DMA transfer mode !\n");
        return 0;
    }
1200 1201 1202
    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 已提交
1203
        status2 = FD_SR2_SNS;
B
bellard 已提交
1204 1205
    if (dma_len > fdctrl->data_len)
        dma_len = fdctrl->data_len;
1206
    if (cur_drv->bs == NULL) {
1207
        if (fdctrl->data_dir == FD_DIR_WRITE)
1208
            fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
1209
        else
1210
            fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1211
        len = 0;
1212 1213
        goto transfer_error;
    }
1214
    rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
B
bellard 已提交
1215 1216
    for (start_pos = fdctrl->data_pos; fdctrl->data_pos < dma_len;) {
        len = dma_len - fdctrl->data_pos;
1217 1218
        if (len + rel_pos > FD_SECTOR_LEN)
            len = FD_SECTOR_LEN - rel_pos;
B
bellard 已提交
1219 1220
        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 已提交
1221
                       fdctrl->data_len, GET_CUR_DRV(fdctrl), cur_drv->head,
1222
                       cur_drv->track, cur_drv->sect, fd_sector(cur_drv),
1223
                       fd_sector(cur_drv) * FD_SECTOR_LEN);
1224
        if (fdctrl->data_dir != FD_DIR_WRITE ||
1225
            len < FD_SECTOR_LEN || rel_pos != 0) {
1226 1227
            /* READ & SCAN commands and realign to a sector for WRITE */
            if (bdrv_read(cur_drv->bs, fd_sector(cur_drv),
1228
                          fdctrl->fifo, 1) < 0) {
B
bellard 已提交
1229 1230 1231
                FLOPPY_DPRINTF("Floppy: error getting sector %d\n",
                               fd_sector(cur_drv));
                /* Sure, image size is too small... */
1232
                memset(fdctrl->fifo, 0, FD_SECTOR_LEN);
B
bellard 已提交
1233
            }
1234
        }
1235 1236 1237
        switch (fdctrl->data_dir) {
        case FD_DIR_READ:
            /* READ commands */
B
bellard 已提交
1238 1239
            DMA_write_memory (nchan, fdctrl->fifo + rel_pos,
                              fdctrl->data_pos, len);
1240 1241
            break;
        case FD_DIR_WRITE:
1242
            /* WRITE commands */
B
bellard 已提交
1243 1244
            DMA_read_memory (nchan, fdctrl->fifo + rel_pos,
                             fdctrl->data_pos, len);
1245
            if (bdrv_write(cur_drv->bs, fd_sector(cur_drv),
1246
                           fdctrl->fifo, 1) < 0) {
B
blueswir1 已提交
1247
                FLOPPY_ERROR("writing sector %d\n", fd_sector(cur_drv));
1248
                fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
1249
                goto transfer_error;
1250
            }
1251 1252 1253
            break;
        default:
            /* SCAN commands */
1254
            {
1255
                uint8_t tmpbuf[FD_SECTOR_LEN];
1256
                int ret;
B
bellard 已提交
1257
                DMA_read_memory (nchan, tmpbuf, fdctrl->data_pos, len);
1258
                ret = memcmp(tmpbuf, fdctrl->fifo + rel_pos, len);
B
bellard 已提交
1259
                if (ret == 0) {
B
blueswir1 已提交
1260
                    status2 = FD_SR2_SEH;
B
bellard 已提交
1261 1262
                    goto end_transfer;
                }
1263 1264
                if ((ret < 0 && fdctrl->data_dir == FD_DIR_SCANL) ||
                    (ret > 0 && fdctrl->data_dir == FD_DIR_SCANH)) {
B
bellard 已提交
1265 1266 1267 1268
                    status2 = 0x00;
                    goto end_transfer;
                }
            }
1269
            break;
B
bellard 已提交
1270
        }
1271 1272
        fdctrl->data_pos += len;
        rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
1273
        if (rel_pos == 0) {
B
bellard 已提交
1274
            /* Seek to next sector */
B
blueswir1 已提交
1275 1276
            if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv))
                break;
B
bellard 已提交
1277 1278
        }
    }
1279
 end_transfer:
1280 1281
    len = fdctrl->data_pos - start_pos;
    FLOPPY_DPRINTF("end transfer %d %d %d\n",
1282
                   fdctrl->data_pos, len, fdctrl->data_len);
1283 1284 1285
    if (fdctrl->data_dir == FD_DIR_SCANE ||
        fdctrl->data_dir == FD_DIR_SCANL ||
        fdctrl->data_dir == FD_DIR_SCANH)
B
blueswir1 已提交
1286
        status2 = FD_SR2_SEH;
1287
    if (FD_DID_SEEK(fdctrl->data_state))
1288
        status0 |= FD_SR0_SEEK;
1289
    fdctrl->data_len -= len;
1290
    fdctrl_stop_transfer(fdctrl, status0, status1, status2);
1291
 transfer_error:
B
bellard 已提交
1292

1293
    return len;
B
bellard 已提交
1294 1295 1296
}

/* Data register : 0x05 */
M
malc 已提交
1297
static uint32_t fdctrl_read_data (a_fdctrl *fdctrl)
B
bellard 已提交
1298
{
M
malc 已提交
1299
    a_fdrive *cur_drv;
B
bellard 已提交
1300
    uint32_t retval = 0;
B
blueswir1 已提交
1301
    int pos;
B
bellard 已提交
1302

1303
    cur_drv = get_cur_drv(fdctrl);
B
blueswir1 已提交
1304 1305 1306
    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 已提交
1307 1308
        return 0;
    }
1309
    pos = fdctrl->data_pos;
B
blueswir1 已提交
1310
    if (fdctrl->msr & FD_MSR_NONDMA) {
B
bellard 已提交
1311 1312
        pos %= FD_SECTOR_LEN;
        if (pos == 0) {
B
blueswir1 已提交
1313 1314 1315 1316 1317 1318
            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 已提交
1319 1320 1321 1322 1323 1324
            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 已提交
1325 1326
        }
    }
1327 1328 1329
    retval = fdctrl->fifo[pos];
    if (++fdctrl->data_pos == fdctrl->data_len) {
        fdctrl->data_pos = 0;
1330
        /* Switch from transfer mode to status mode
B
bellard 已提交
1331 1332
         * then from status mode to command mode
         */
B
blueswir1 已提交
1333
        if (fdctrl->msr & FD_MSR_NONDMA) {
1334
            fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
1335
        } else {
1336
            fdctrl_reset_fifo(fdctrl);
1337 1338
            fdctrl_reset_irq(fdctrl);
        }
B
bellard 已提交
1339 1340 1341 1342 1343 1344
    }
    FLOPPY_DPRINTF("data register: 0x%02x\n", retval);

    return retval;
}

M
malc 已提交
1345
static void fdctrl_format_sector (a_fdctrl *fdctrl)
B
bellard 已提交
1346
{
M
malc 已提交
1347
    a_fdrive *cur_drv;
1348
    uint8_t kh, kt, ks;
B
bellard 已提交
1349

B
blueswir1 已提交
1350
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1351 1352 1353 1354 1355
    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 已提交
1356
                   GET_CUR_DRV(fdctrl), kh, kt, ks,
1357
                   _fd_sector(kh, kt, ks, cur_drv->last_sect));
1358
    switch (fd_seek(cur_drv, kh, kt, ks, fdctrl->config & FD_CONFIG_EIS)) {
1359 1360
    case 2:
        /* sect too big */
1361
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1362 1363 1364 1365 1366 1367
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
        return;
    case 3:
        /* track too big */
B
blueswir1 已提交
1368
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, FD_SR1_EC, 0x00);
1369 1370 1371 1372 1373 1374
        fdctrl->fifo[3] = kt;
        fdctrl->fifo[4] = kh;
        fdctrl->fifo[5] = ks;
        return;
    case 4:
        /* No seek enabled */
1375
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388
        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 已提交
1389
        FLOPPY_ERROR("formatting sector %d\n", fd_sector(cur_drv));
1390
        fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
1391
    } else {
1392 1393 1394 1395
        if (cur_drv->sect == cur_drv->last_sect) {
            fdctrl->data_state &= ~FD_STATE_FORMAT;
            /* Last sector done */
            if (FD_DID_SEEK(fdctrl->data_state))
1396
                fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
1397 1398 1399 1400 1401 1402 1403
            else
                fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
        } else {
            /* More to do */
            fdctrl->data_pos = 0;
            fdctrl->data_len = 4;
        }
1404 1405 1406
    }
}

M
malc 已提交
1407
static void fdctrl_handle_lock (a_fdctrl *fdctrl, int direction)
1408 1409 1410 1411 1412 1413
{
    fdctrl->lock = (fdctrl->fifo[0] & 0x80) ? 1 : 0;
    fdctrl->fifo[0] = fdctrl->lock << 4;
    fdctrl_set_fifo(fdctrl, 1, fdctrl->lock);
}

M
malc 已提交
1414
static void fdctrl_handle_dumpreg (a_fdctrl *fdctrl, int direction)
1415
{
M
malc 已提交
1416
    a_fdrive *cur_drv = get_cur_drv(fdctrl);
1417 1418 1419 1420

    /* Drives position */
    fdctrl->fifo[0] = drv0(fdctrl)->track;
    fdctrl->fifo[1] = drv1(fdctrl)->track;
B
blueswir1 已提交
1421 1422 1423 1424
#if MAX_FD == 4
    fdctrl->fifo[2] = drv2(fdctrl)->track;
    fdctrl->fifo[3] = drv3(fdctrl)->track;
#else
1425 1426
    fdctrl->fifo[2] = 0;
    fdctrl->fifo[3] = 0;
B
blueswir1 已提交
1427
#endif
1428 1429
    /* timers */
    fdctrl->fifo[4] = fdctrl->timer0;
B
blueswir1 已提交
1430
    fdctrl->fifo[5] = (fdctrl->timer1 << 1) | (fdctrl->dor & FD_DOR_DMAEN ? 1 : 0);
1431 1432 1433 1434 1435 1436 1437 1438
    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);
}

M
malc 已提交
1439
static void fdctrl_handle_version (a_fdctrl *fdctrl, int direction)
1440 1441 1442 1443 1444 1445
{
    /* Controller's version */
    fdctrl->fifo[0] = fdctrl->version;
    fdctrl_set_fifo(fdctrl, 1, 1);
}

M
malc 已提交
1446
static void fdctrl_handle_partid (a_fdctrl *fdctrl, int direction)
1447 1448 1449 1450 1451
{
    fdctrl->fifo[0] = 0x41; /* Stepping 1 */
    fdctrl_set_fifo(fdctrl, 1, 0);
}

M
malc 已提交
1452
static void fdctrl_handle_restore (a_fdctrl *fdctrl, int direction)
1453
{
M
malc 已提交
1454
    a_fdrive *cur_drv = get_cur_drv(fdctrl);
1455 1456 1457 1458

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

M
malc 已提交
1475
static void fdctrl_handle_save (a_fdctrl *fdctrl, int direction)
1476
{
M
malc 已提交
1477
    a_fdrive *cur_drv = get_cur_drv(fdctrl);
1478 1479 1480 1481 1482 1483

    fdctrl->fifo[0] = 0;
    fdctrl->fifo[1] = 0;
    /* Drives position */
    fdctrl->fifo[2] = drv0(fdctrl)->track;
    fdctrl->fifo[3] = drv1(fdctrl)->track;
B
blueswir1 已提交
1484 1485 1486 1487
#if MAX_FD == 4
    fdctrl->fifo[4] = drv2(fdctrl)->track;
    fdctrl->fifo[5] = drv3(fdctrl)->track;
#else
1488 1489
    fdctrl->fifo[4] = 0;
    fdctrl->fifo[5] = 0;
B
blueswir1 已提交
1490
#endif
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504
    /* 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);
}

M
malc 已提交
1505
static void fdctrl_handle_readid (a_fdctrl *fdctrl, int direction)
1506
{
M
malc 已提交
1507
    a_fdrive *cur_drv = get_cur_drv(fdctrl);
1508 1509 1510 1511

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

M
malc 已提交
1515
static void fdctrl_handle_format_track (a_fdctrl *fdctrl, int direction)
1516
{
M
malc 已提交
1517
    a_fdrive *cur_drv;
1518

B
blueswir1 已提交
1519
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543
    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);
}

M
malc 已提交
1544
static void fdctrl_handle_specify (a_fdctrl *fdctrl, int direction)
1545 1546 1547
{
    fdctrl->timer0 = (fdctrl->fifo[1] >> 4) & 0xF;
    fdctrl->timer1 = fdctrl->fifo[2] >> 1;
B
blueswir1 已提交
1548 1549 1550 1551
    if (fdctrl->fifo[2] & 1)
        fdctrl->dor &= ~FD_DOR_DMAEN;
    else
        fdctrl->dor |= FD_DOR_DMAEN;
1552 1553 1554 1555
    /* No result back */
    fdctrl_reset_fifo(fdctrl);
}

M
malc 已提交
1556
static void fdctrl_handle_sense_drive_status (a_fdctrl *fdctrl, int direction)
1557
{
M
malc 已提交
1558
    a_fdrive *cur_drv;
1559

B
blueswir1 已提交
1560
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1561 1562 1563 1564 1565 1566
    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 已提交
1567
        GET_CUR_DRV(fdctrl) |
1568 1569 1570 1571
        0x28;
    fdctrl_set_fifo(fdctrl, 1, 0);
}

M
malc 已提交
1572
static void fdctrl_handle_recalibrate (a_fdctrl *fdctrl, int direction)
1573
{
M
malc 已提交
1574
    a_fdrive *cur_drv;
1575

B
blueswir1 已提交
1576
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1577 1578 1579 1580 1581 1582 1583
    cur_drv = get_cur_drv(fdctrl);
    fd_recalibrate(cur_drv);
    fdctrl_reset_fifo(fdctrl);
    /* Raise Interrupt */
    fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
}

M
malc 已提交
1584
static void fdctrl_handle_sense_interrupt_status (a_fdctrl *fdctrl, int direction)
1585
{
M
malc 已提交
1586
    a_fdrive *cur_drv = get_cur_drv(fdctrl);
1587

1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599
    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);
    }

1600 1601 1602
    fdctrl->fifo[1] = cur_drv->track;
    fdctrl_set_fifo(fdctrl, 2, 0);
    fdctrl_reset_irq(fdctrl);
B
blueswir1 已提交
1603
    fdctrl->status0 = FD_SR0_RDYCHG;
1604 1605
}

M
malc 已提交
1606
static void fdctrl_handle_seek (a_fdctrl *fdctrl, int direction)
1607
{
M
malc 已提交
1608
    a_fdrive *cur_drv;
1609

B
blueswir1 已提交
1610
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621
    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);
    }
}

M
malc 已提交
1622
static void fdctrl_handle_perpendicular_mode (a_fdctrl *fdctrl, int direction)
1623
{
M
malc 已提交
1624
    a_fdrive *cur_drv = get_cur_drv(fdctrl);
1625 1626 1627 1628

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

M
malc 已提交
1632
static void fdctrl_handle_configure (a_fdctrl *fdctrl, int direction)
1633 1634 1635 1636 1637 1638 1639
{
    fdctrl->config = fdctrl->fifo[2];
    fdctrl->precomp_trk =  fdctrl->fifo[3];
    /* No result back */
    fdctrl_reset_fifo(fdctrl);
}

M
malc 已提交
1640
static void fdctrl_handle_powerdown_mode (a_fdctrl *fdctrl, int direction)
1641 1642 1643 1644 1645 1646
{
    fdctrl->pwrd = fdctrl->fifo[1];
    fdctrl->fifo[0] = fdctrl->fifo[1];
    fdctrl_set_fifo(fdctrl, 1, 1);
}

M
malc 已提交
1647
static void fdctrl_handle_option (a_fdctrl *fdctrl, int direction)
1648 1649 1650 1651 1652
{
    /* No result back */
    fdctrl_reset_fifo(fdctrl);
}

M
malc 已提交
1653
static void fdctrl_handle_drive_specification_command (a_fdctrl *fdctrl, int direction)
1654
{
M
malc 已提交
1655
    a_fdrive *cur_drv = get_cur_drv(fdctrl);
1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669

    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 |
B
blueswir1 已提交
1670
            (cur_drv->head << 2) | GET_CUR_DRV(fdctrl);
1671 1672 1673 1674
        fdctrl_set_fifo(fdctrl, 1, 1);
    }
}

M
malc 已提交
1675
static void fdctrl_handle_relative_seek_out (a_fdctrl *fdctrl, int direction)
1676
{
M
malc 已提交
1677
    a_fdrive *cur_drv;
1678

B
blueswir1 已提交
1679
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1680 1681 1682 1683 1684 1685 1686
    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 已提交
1687
    /* Raise Interrupt */
1688 1689 1690
    fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
}

M
malc 已提交
1691
static void fdctrl_handle_relative_seek_in (a_fdctrl *fdctrl, int direction)
1692
{
M
malc 已提交
1693
    a_fdrive *cur_drv;
1694

B
blueswir1 已提交
1695
    SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706
    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 已提交
1707 1708 1709 1710 1711
static const struct {
    uint8_t value;
    uint8_t mask;
    const char* name;
    int parameters;
M
malc 已提交
1712
    void (*handler)(a_fdctrl *fdctrl, int direction);
B
blueswir1 已提交
1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 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
    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];

M
malc 已提交
1751
static void fdctrl_write_data (a_fdctrl *fdctrl, uint32_t value)
1752
{
M
malc 已提交
1753
    a_fdrive *cur_drv;
1754
    int pos;
1755

B
bellard 已提交
1756
    /* Reset mode */
B
blueswir1 已提交
1757
    if (!(fdctrl->dor & FD_DOR_nRESET)) {
B
bellard 已提交
1758
        FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
B
bellard 已提交
1759 1760
        return;
    }
B
blueswir1 已提交
1761 1762
    if (!(fdctrl->msr & FD_MSR_RQM) || (fdctrl->msr & FD_MSR_DIO)) {
        FLOPPY_ERROR("controller not ready for writing\n");
B
bellard 已提交
1763 1764
        return;
    }
B
blueswir1 已提交
1765
    fdctrl->dsr &= ~FD_DSR_PWRDOWN;
B
bellard 已提交
1766
    /* Is it write command time ? */
B
blueswir1 已提交
1767
    if (fdctrl->msr & FD_MSR_NONDMA) {
B
bellard 已提交
1768
        /* FIFO data write */
1769 1770 1771 1772
        pos = fdctrl->data_pos++;
        pos %= FD_SECTOR_LEN;
        fdctrl->fifo[pos] = value;
        if (pos == FD_SECTOR_LEN - 1 ||
1773
            fdctrl->data_pos == fdctrl->data_len) {
B
blueswir1 已提交
1774 1775 1776 1777 1778
            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 已提交
1779 1780 1781 1782 1783
            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 已提交
1784
        }
1785
        /* Switch from transfer mode to status mode
B
bellard 已提交
1786 1787
         * then from status mode to command mode
         */
B
blueswir1 已提交
1788
        if (fdctrl->data_pos == fdctrl->data_len)
1789
            fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
B
bellard 已提交
1790 1791
        return;
    }
1792
    if (fdctrl->data_pos == 0) {
B
bellard 已提交
1793
        /* Command */
B
blueswir1 已提交
1794 1795 1796
        pos = command_to_handler[value & 0xff];
        FLOPPY_DPRINTF("%s command\n", handlers[pos].name);
        fdctrl->data_len = handlers[pos].parameters + 1;
B
bellard 已提交
1797
    }
B
blueswir1 已提交
1798

1799
    FLOPPY_DPRINTF("%s: %02x\n", __func__, value);
B
blueswir1 已提交
1800 1801
    fdctrl->fifo[fdctrl->data_pos++] = value;
    if (fdctrl->data_pos == fdctrl->data_len) {
B
bellard 已提交
1802 1803 1804
        /* We now have all parameters
         * and will be able to treat the command
         */
1805 1806
        if (fdctrl->data_state & FD_STATE_FORMAT) {
            fdctrl_format_sector(fdctrl);
B
bellard 已提交
1807 1808
            return;
        }
1809

B
blueswir1 已提交
1810 1811 1812
        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 已提交
1813 1814
    }
}
1815 1816 1817

static void fdctrl_result_timer(void *opaque)
{
M
malc 已提交
1818 1819
    a_fdctrl *fdctrl = opaque;
    a_fdrive *cur_drv = get_cur_drv(fdctrl);
1820

1821 1822 1823 1824 1825 1826 1827
    /* 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;
    }
1828 1829
    fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
}
B
blueswir1 已提交
1830 1831

/* Init functions */
M
malc 已提交
1832
static void fdctrl_connect_drives(a_fdctrl *fdctrl, BlockDriverState **fds)
B
blueswir1 已提交
1833
{
B
Blue Swirl 已提交
1834
    unsigned int i;
B
blueswir1 已提交
1835 1836 1837 1838 1839 1840 1841

    for (i = 0; i < MAX_FD; i++) {
        fd_init(&fdctrl->drives[i], fds[i]);
        fd_revalidate(&fdctrl->drives[i]);
    }
}

M
malc 已提交
1842
a_fdctrl *fdctrl_init_isa(BlockDriverState **fds)
B
blueswir1 已提交
1843
{
M
malc 已提交
1844
    a_fdctrl *fdctrl;
G
Gerd Hoffmann 已提交
1845
    ISADevice *dev;
1846
    int dma_chann = 2;
B
blueswir1 已提交
1847

1848
    dev = isa_create_simple("isa-fdc");
M
malc 已提交
1849
    fdctrl = &(DO_UPCAST(a_fdctrl_isabus, busdev, dev)->state);
G
Gerd Hoffmann 已提交
1850

G
Gerd Hoffmann 已提交
1851 1852
    fdctrl->dma_chann = dma_chann;
    DMA_register_channel(dma_chann, &fdctrl_transfer_handler, fdctrl);
G
Gerd Hoffmann 已提交
1853

G
Gerd Hoffmann 已提交
1854 1855 1856 1857 1858
    fdctrl_connect_drives(fdctrl, fds);

    return fdctrl;
}

M
malc 已提交
1859 1860
a_fdctrl *fdctrl_init_sysbus(qemu_irq irq, int dma_chann,
                             a_target_phys_addr mmio_base,
G
Gerd Hoffmann 已提交
1861 1862
                             BlockDriverState **fds)
{
M
malc 已提交
1863
    a_fdctrl *fdctrl;
G
Gerd Hoffmann 已提交
1864
    DeviceState *dev;
M
malc 已提交
1865
    a_fdctrl_sysbus *sys;
G
Gerd Hoffmann 已提交
1866 1867 1868

    dev = qdev_create(NULL, "sysbus-fdc");
    qdev_init(dev);
M
malc 已提交
1869
    sys = DO_UPCAST(a_fdctrl_sysbus, busdev.qdev, dev);
G
Gerd Hoffmann 已提交
1870 1871 1872
    fdctrl = &sys->state;
    sysbus_connect_irq(&sys->busdev, 0, irq);
    sysbus_mmio_map(&sys->busdev, 0, mmio_base);
G
Gerd Hoffmann 已提交
1873

B
Blue Swirl 已提交
1874 1875 1876
    fdctrl->dma_chann = dma_chann;
    DMA_register_channel(dma_chann, &fdctrl_transfer_handler, fdctrl);
    fdctrl_connect_drives(fdctrl, fds);
B
Blue Swirl 已提交
1877

B
blueswir1 已提交
1878 1879 1880
    return fdctrl;
}

M
malc 已提交
1881
a_fdctrl *sun4m_fdctrl_init (qemu_irq irq, a_target_phys_addr io_base,
B
blueswir1 已提交
1882 1883
                             BlockDriverState **fds, qemu_irq *fdc_tc)
{
B
Blue Swirl 已提交
1884
    DeviceState *dev;
M
malc 已提交
1885 1886
    a_fdctrl_sysbus *sys;
    a_fdctrl *fdctrl;
B
blueswir1 已提交
1887

B
Blue Swirl 已提交
1888
    dev = qdev_create(NULL, "SUNW,fdtwo");
B
Blue Swirl 已提交
1889
    qdev_init(dev);
M
malc 已提交
1890
    sys = DO_UPCAST(a_fdctrl_sysbus, busdev.qdev, dev);
G
Gerd Hoffmann 已提交
1891 1892 1893
    fdctrl = &sys->state;
    sysbus_connect_irq(&sys->busdev, 0, irq);
    sysbus_mmio_map(&sys->busdev, 0, io_base);
B
Blue Swirl 已提交
1894 1895
    *fdc_tc = qdev_get_gpio_in(dev, 0);

B
Blue Swirl 已提交
1896 1897 1898
    fdctrl->dma_chann = -1;

    fdctrl_connect_drives(fdctrl, fds);
B
blueswir1 已提交
1899 1900 1901

    return fdctrl;
}
B
Blue Swirl 已提交
1902

M
malc 已提交
1903
static int fdctrl_init_common(a_fdctrl *fdctrl)
B
Blue Swirl 已提交
1904
{
B
Blue Swirl 已提交
1905 1906
    int i, j;
    static int command_tables_inited = 0;
B
Blue Swirl 已提交
1907

B
Blue Swirl 已提交
1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921
    /* 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 已提交
1922
    fdctrl->fifo_size = 512;
B
Blue Swirl 已提交
1923 1924 1925 1926 1927
    fdctrl->result_timer = qemu_new_timer(vm_clock,
                                          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 已提交
1928
    fdctrl->num_floppies = MAX_FD;
B
Blue Swirl 已提交
1929 1930

    fdctrl_external_reset(fdctrl);
J
Juan Quintela 已提交
1931
    vmstate_register(-1, &vmstate_fdc, fdctrl);
B
Blue Swirl 已提交
1932
    qemu_register_reset(fdctrl_external_reset, fdctrl);
1933
    return 0;
B
Blue Swirl 已提交
1934 1935
}

1936
static int isabus_fdc_init1(ISADevice *dev)
G
Gerd Hoffmann 已提交
1937
{
M
malc 已提交
1938 1939
    a_fdctrl_isabus *isa = DO_UPCAST(a_fdctrl_isabus, busdev, dev);
    a_fdctrl *fdctrl = &isa->state;
1940
    int iobase = 0x3f0;
1941
    int isairq = 6;
G
Gerd Hoffmann 已提交
1942

1943
    register_ioport_read(iobase + 0x01, 5, 1,
G
Gerd Hoffmann 已提交
1944
                         &fdctrl_read_port, fdctrl);
1945
    register_ioport_read(iobase + 0x07, 1, 1,
G
Gerd Hoffmann 已提交
1946
                         &fdctrl_read_port, fdctrl);
1947
    register_ioport_write(iobase + 0x01, 5, 1,
G
Gerd Hoffmann 已提交
1948
                          &fdctrl_write_port, fdctrl);
1949
    register_ioport_write(iobase + 0x07, 1, 1,
G
Gerd Hoffmann 已提交
1950
                          &fdctrl_write_port, fdctrl);
1951
    isa_init_irq(&isa->busdev, &fdctrl->irq, isairq);
G
Gerd Hoffmann 已提交
1952

1953
    return fdctrl_init_common(fdctrl);
G
Gerd Hoffmann 已提交
1954 1955
}

1956
static int sysbus_fdc_init1(SysBusDevice *dev)
B
Blue Swirl 已提交
1957
{
M
malc 已提交
1958
    a_fdctrl *fdctrl = &(FROM_SYSBUS(a_fdctrl_sysbus, dev)->state);
B
Blue Swirl 已提交
1959 1960 1961
    int io;

    io = cpu_register_io_memory(fdctrl_mem_read, fdctrl_mem_write, fdctrl);
G
Gerd Hoffmann 已提交
1962 1963 1964 1965
    sysbus_init_mmio(dev, 0x08, io);
    sysbus_init_irq(dev, &fdctrl->irq);
    qdev_init_gpio_in(&dev->qdev, fdctrl_handle_tc, 1);

1966
    return fdctrl_init_common(fdctrl);
B
Blue Swirl 已提交
1967 1968
}

1969
static int sun4m_fdc_init1(SysBusDevice *dev)
B
Blue Swirl 已提交
1970
{
M
malc 已提交
1971
    a_fdctrl *fdctrl = &(FROM_SYSBUS(a_fdctrl_sysbus, dev)->state);
B
Blue Swirl 已提交
1972 1973 1974 1975
    int io;

    io = cpu_register_io_memory(fdctrl_mem_read_strict,
                                fdctrl_mem_write_strict, fdctrl);
G
Gerd Hoffmann 已提交
1976 1977 1978 1979 1980
    sysbus_init_mmio(dev, 0x08, io);
    sysbus_init_irq(dev, &fdctrl->irq);
    qdev_init_gpio_in(&dev->qdev, fdctrl_handle_tc, 1);

    fdctrl->sun4m = 1;
1981
    return fdctrl_init_common(fdctrl);
B
Blue Swirl 已提交
1982
}
B
Blue Swirl 已提交
1983

G
Gerd Hoffmann 已提交
1984 1985 1986
static ISADeviceInfo isa_fdc_info = {
    .init = isabus_fdc_init1,
    .qdev.name  = "isa-fdc",
M
malc 已提交
1987
    .qdev.size  = sizeof(a_fdctrl_isabus),
G
Gerd Hoffmann 已提交
1988 1989 1990 1991 1992
};

static SysBusDeviceInfo sysbus_fdc_info = {
    .init = sysbus_fdc_init1,
    .qdev.name  = "sysbus-fdc",
M
malc 已提交
1993
    .qdev.size  = sizeof(a_fdctrl_sysbus),
B
Blue Swirl 已提交
1994 1995 1996 1997 1998
};

static SysBusDeviceInfo sun4m_fdc_info = {
    .init = sun4m_fdc_init1,
    .qdev.name  = "SUNW,fdtwo",
M
malc 已提交
1999
    .qdev.size  = sizeof(a_fdctrl_sysbus),
B
Blue Swirl 已提交
2000 2001 2002 2003
};

static void fdc_register_devices(void)
{
G
Gerd Hoffmann 已提交
2004 2005
    isa_qdev_register(&isa_fdc_info);
    sysbus_register_withprop(&sysbus_fdc_info);
B
Blue Swirl 已提交
2006
    sysbus_register_withprop(&sun4m_fdc_info);
B
Blue Swirl 已提交
2007 2008 2009
}

device_init(fdc_register_devices)