2004-01-05 01:09:06 +01:00
|
|
|
|
/*
|
2004-10-08 01:10:29 +02:00
|
|
|
|
* QEMU Floppy disk emulator (Intel 82078)
|
2007-09-16 23:08:06 +02:00
|
|
|
|
*
|
2007-04-14 15:01:31 +02:00
|
|
|
|
* Copyright (c) 2003, 2007 Jocelyn Mayer
|
2008-04-08 19:18:53 +02:00
|
|
|
|
* Copyright (c) 2008 Herv<EFBFBD> Poussineau
|
2007-09-16 23:08:06 +02:00
|
|
|
|
*
|
2004-01-05 01:09:06 +01:00
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2004-12-20 00:18:01 +01:00
|
|
|
|
/*
|
|
|
|
|
* The controller is used in Sun4m systems in a slightly different
|
|
|
|
|
* way. There are changes in DOR register and DMA is not available.
|
|
|
|
|
*/
|
2007-11-17 18:14:51 +01:00
|
|
|
|
#include "hw.h"
|
|
|
|
|
#include "fdc.h"
|
|
|
|
|
#include "block.h"
|
|
|
|
|
#include "qemu-timer.h"
|
|
|
|
|
#include "isa.h"
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
|
|
|
|
/********************************************************/
|
|
|
|
|
/* debug Floppy devices */
|
|
|
|
|
//#define DEBUG_FLOPPY
|
|
|
|
|
|
|
|
|
|
#ifdef DEBUG_FLOPPY
|
2009-05-13 19:53:17 +02:00
|
|
|
|
#define FLOPPY_DPRINTF(fmt, ...) \
|
|
|
|
|
do { printf("FLOPPY: " fmt , ## __VA_ARGS__); } while (0)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
#else
|
2009-05-13 19:53:17 +02:00
|
|
|
|
#define FLOPPY_DPRINTF(fmt, ...)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
#endif
|
|
|
|
|
|
2009-05-13 19:53:17 +02:00
|
|
|
|
#define FLOPPY_ERROR(fmt, ...) \
|
|
|
|
|
do { printf("FLOPPY ERROR: %s: " fmt, __func__ , ## __VA_ARGS__); } while (0)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
|
|
|
|
/********************************************************/
|
|
|
|
|
/* Floppy drive emulation */
|
|
|
|
|
|
2008-04-29 18:18:58 +02:00
|
|
|
|
#define GET_CUR_DRV(fdctrl) ((fdctrl)->cur_drv)
|
|
|
|
|
#define SET_CUR_DRV(fdctrl, drive) ((fdctrl)->cur_drv = (drive))
|
|
|
|
|
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Will always be a fixed parameter for us */
|
2009-01-24 13:09:52 +01:00
|
|
|
|
#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 */
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
|
|
|
|
/* Floppy disk drive emulation */
|
|
|
|
|
typedef enum fdisk_type_t {
|
|
|
|
|
FDRIVE_DISK_288 = 0x01, /* 2.88 MB disk */
|
|
|
|
|
FDRIVE_DISK_144 = 0x02, /* 1.44 MB disk */
|
|
|
|
|
FDRIVE_DISK_720 = 0x03, /* 720 kB disk */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
FDRIVE_DISK_USER = 0x04, /* User defined geometry */
|
|
|
|
|
FDRIVE_DISK_NONE = 0x05, /* No disk */
|
2004-01-05 01:09:06 +01:00
|
|
|
|
} fdisk_type_t;
|
|
|
|
|
|
|
|
|
|
typedef enum fdrive_type_t {
|
|
|
|
|
FDRIVE_DRV_144 = 0x00, /* 1.44 MB 3"5 drive */
|
|
|
|
|
FDRIVE_DRV_288 = 0x01, /* 2.88 MB 3"5 drive */
|
|
|
|
|
FDRIVE_DRV_120 = 0x02, /* 1.2 MB 5"25 drive */
|
|
|
|
|
FDRIVE_DRV_NONE = 0x03, /* No drive connected */
|
|
|
|
|
} fdrive_type_t;
|
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
typedef enum fdisk_flags_t {
|
|
|
|
|
FDISK_DBL_SIDES = 0x01,
|
|
|
|
|
} fdisk_flags_t;
|
|
|
|
|
|
2004-01-05 01:09:06 +01:00
|
|
|
|
typedef struct fdrive_t {
|
|
|
|
|
BlockDriverState *bs;
|
|
|
|
|
/* Drive status */
|
|
|
|
|
fdrive_type_t drive;
|
|
|
|
|
uint8_t perpendicular; /* 2.88 MB access mode */
|
|
|
|
|
/* Position */
|
|
|
|
|
uint8_t head;
|
|
|
|
|
uint8_t track;
|
|
|
|
|
uint8_t sect;
|
|
|
|
|
/* Media */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdisk_flags_t flags;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
uint8_t last_sect; /* Nb sector per track */
|
|
|
|
|
uint8_t max_track; /* Nb of tracks */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
uint16_t bps; /* Bytes per sector */
|
2004-01-05 01:09:06 +01:00
|
|
|
|
uint8_t ro; /* Is read-only */
|
|
|
|
|
} fdrive_t;
|
|
|
|
|
|
2004-03-14 22:40:43 +01:00
|
|
|
|
static void fd_init (fdrive_t *drv, BlockDriverState *bs)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
|
|
|
|
/* Drive */
|
2004-03-14 22:40:43 +01:00
|
|
|
|
drv->bs = bs;
|
2004-05-13 00:07:40 +02:00
|
|
|
|
drv->drive = FDRIVE_DRV_NONE;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
drv->perpendicular = 0;
|
|
|
|
|
/* Disk */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
drv->last_sect = 0;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
drv->max_track = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int _fd_sector (uint8_t head, uint8_t track,
|
2007-11-05 04:11:37 +01:00
|
|
|
|
uint8_t sect, uint8_t last_sect)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
|
|
|
|
return (((track * 2) + head) * last_sect) + sect - 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Returns current position, in sectors, for given drive */
|
|
|
|
|
static int fd_sector (fdrive_t *drv)
|
|
|
|
|
{
|
|
|
|
|
return _fd_sector(drv->head, drv->track, drv->sect, drv->last_sect);
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-29 18:17:08 +02:00
|
|
|
|
/* 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
|
|
|
|
|
*/
|
2004-01-05 01:09:06 +01:00
|
|
|
|
static int fd_seek (fdrive_t *drv, uint8_t head, uint8_t track, uint8_t sect,
|
|
|
|
|
int enable_seek)
|
|
|
|
|
{
|
|
|
|
|
uint32_t sector;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
if (track > drv->max_track ||
|
2007-11-05 04:11:37 +01:00
|
|
|
|
(head != 0 && (drv->flags & FDISK_DBL_SIDES) == 0)) {
|
2004-05-08 15:14:18 +02:00
|
|
|
|
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);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
return 2;
|
|
|
|
|
}
|
|
|
|
|
if (sect > drv->last_sect) {
|
2004-05-08 15:14:18 +02:00
|
|
|
|
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);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
return 3;
|
|
|
|
|
}
|
|
|
|
|
sector = _fd_sector(head, track, sect, drv->last_sect);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
ret = 0;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
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;
|
2007-11-05 04:11:37 +01:00
|
|
|
|
if (drv->track != track)
|
|
|
|
|
ret = 1;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
drv->track = track;
|
|
|
|
|
drv->sect = sect;
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
return ret;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set drive back to track 0 */
|
|
|
|
|
static void fd_recalibrate (fdrive_t *drv)
|
|
|
|
|
{
|
|
|
|
|
FLOPPY_DPRINTF("recalibrate\n");
|
|
|
|
|
drv->head = 0;
|
|
|
|
|
drv->track = 0;
|
|
|
|
|
drv->sect = 1;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-12 22:39:29 +02:00
|
|
|
|
/* Recognize floppy formats */
|
|
|
|
|
typedef struct fd_format_t {
|
|
|
|
|
fdrive_type_t drive;
|
|
|
|
|
fdisk_type_t disk;
|
|
|
|
|
uint8_t last_sect;
|
|
|
|
|
uint8_t max_track;
|
|
|
|
|
uint8_t max_head;
|
2007-12-16 04:02:09 +01:00
|
|
|
|
const char *str;
|
2004-04-12 22:39:29 +02:00
|
|
|
|
} fd_format_t;
|
|
|
|
|
|
2007-11-04 13:00:17 +01:00
|
|
|
|
static const fd_format_t fd_formats[] = {
|
2004-04-12 22:39:29 +02:00
|
|
|
|
/* 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", },
|
2007-09-16 23:08:06 +02:00
|
|
|
|
/* 320 kB 5"1/4 floppy disks */
|
2004-04-12 22:39:29 +02:00
|
|
|
|
{ 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, },
|
|
|
|
|
};
|
|
|
|
|
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Revalidate a disk drive after a disk change */
|
2004-03-14 22:40:43 +01:00
|
|
|
|
static void fd_revalidate (fdrive_t *drv)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2007-11-04 13:00:17 +01:00
|
|
|
|
const fd_format_t *parse;
|
2007-12-17 02:35:20 +01:00
|
|
|
|
uint64_t nb_sectors, size;
|
2004-04-12 22:39:29 +02:00
|
|
|
|
int i, first_match, match;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
int nb_heads, max_track, last_sect, ro;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
|
|
|
|
FLOPPY_DPRINTF("revalidate\n");
|
2004-04-12 22:39:29 +02:00
|
|
|
|
if (drv->bs != NULL && bdrv_is_inserted(drv->bs)) {
|
2007-11-05 04:11:37 +01:00
|
|
|
|
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)",
|
2004-05-08 15:14:18 +02:00
|
|
|
|
nb_heads - 1, max_track, last_sect);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
} 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,
|
2004-05-08 15:14:18 +02:00
|
|
|
|
nb_heads, max_track, last_sect, ro ? "ro" : "rw");
|
2007-11-05 04:11:37 +01:00
|
|
|
|
}
|
|
|
|
|
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;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
} else {
|
2007-11-05 04:11:37 +01:00
|
|
|
|
FLOPPY_DPRINTF("No disk in drive\n");
|
2004-03-20 00:05:34 +01:00
|
|
|
|
drv->last_sect = 0;
|
2007-11-05 04:11:37 +01:00
|
|
|
|
drv->max_track = 0;
|
|
|
|
|
drv->flags &= ~FDISK_DBL_SIDES;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
2004-03-14 22:40:43 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/********************************************************/
|
2004-10-09 18:44:33 +02:00
|
|
|
|
/* Intel 82078 floppy disk controller emulation */
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static void fdctrl_reset (fdctrl_t *fdctrl, int do_irq);
|
|
|
|
|
static void fdctrl_reset_fifo (fdctrl_t *fdctrl);
|
2004-11-07 19:04:02 +01:00
|
|
|
|
static int fdctrl_transfer_handler (void *opaque, int nchan,
|
|
|
|
|
int dma_pos, int dma_len);
|
2008-04-29 18:17:08 +02:00
|
|
|
|
static void fdctrl_raise_irq (fdctrl_t *fdctrl, uint8_t status0);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
|
2008-04-29 18:14:15 +02:00
|
|
|
|
static uint32_t fdctrl_read_statusA (fdctrl_t *fdctrl);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static uint32_t fdctrl_read_statusB (fdctrl_t *fdctrl);
|
|
|
|
|
static uint32_t fdctrl_read_dor (fdctrl_t *fdctrl);
|
|
|
|
|
static void fdctrl_write_dor (fdctrl_t *fdctrl, uint32_t value);
|
|
|
|
|
static uint32_t fdctrl_read_tape (fdctrl_t *fdctrl);
|
|
|
|
|
static void fdctrl_write_tape (fdctrl_t *fdctrl, uint32_t value);
|
|
|
|
|
static uint32_t fdctrl_read_main_status (fdctrl_t *fdctrl);
|
|
|
|
|
static void fdctrl_write_rate (fdctrl_t *fdctrl, uint32_t value);
|
|
|
|
|
static uint32_t fdctrl_read_data (fdctrl_t *fdctrl);
|
|
|
|
|
static void fdctrl_write_data (fdctrl_t *fdctrl, uint32_t value);
|
|
|
|
|
static uint32_t fdctrl_read_dir (fdctrl_t *fdctrl);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
|
FD_DIR_WRITE = 0,
|
|
|
|
|
FD_DIR_READ = 1,
|
|
|
|
|
FD_DIR_SCANE = 2,
|
|
|
|
|
FD_DIR_SCANL = 3,
|
|
|
|
|
FD_DIR_SCANH = 4,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum {
|
2008-04-29 18:16:30 +02:00
|
|
|
|
FD_STATE_MULTI = 0x01, /* multi track flag */
|
|
|
|
|
FD_STATE_FORMAT = 0x02, /* format flag */
|
|
|
|
|
FD_STATE_SEEK = 0x04, /* seek flag */
|
2004-01-05 01:09:06 +01:00
|
|
|
|
};
|
|
|
|
|
|
2008-02-29 20:24:00 +01:00
|
|
|
|
enum {
|
2008-04-29 18:14:15 +02:00
|
|
|
|
FD_REG_SRA = 0x00,
|
|
|
|
|
FD_REG_SRB = 0x01,
|
2008-02-29 20:24:00 +01:00
|
|
|
|
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 {
|
2008-04-08 19:18:53 +02:00
|
|
|
|
FD_CMD_READ_TRACK = 0x02,
|
2008-02-29 20:24:00 +01:00
|
|
|
|
FD_CMD_SPECIFY = 0x03,
|
|
|
|
|
FD_CMD_SENSE_DRIVE_STATUS = 0x04,
|
2008-04-08 19:18:53 +02:00
|
|
|
|
FD_CMD_WRITE = 0x05,
|
|
|
|
|
FD_CMD_READ = 0x06,
|
2008-02-29 20:24:00 +01:00
|
|
|
|
FD_CMD_RECALIBRATE = 0x07,
|
|
|
|
|
FD_CMD_SENSE_INTERRUPT_STATUS = 0x08,
|
2008-04-08 19:18:53 +02:00
|
|
|
|
FD_CMD_WRITE_DELETED = 0x09,
|
|
|
|
|
FD_CMD_READ_ID = 0x0a,
|
|
|
|
|
FD_CMD_READ_DELETED = 0x0c,
|
|
|
|
|
FD_CMD_FORMAT_TRACK = 0x0d,
|
2008-02-29 20:24:00 +01:00
|
|
|
|
FD_CMD_DUMPREG = 0x0e,
|
|
|
|
|
FD_CMD_SEEK = 0x0f,
|
|
|
|
|
FD_CMD_VERSION = 0x10,
|
2008-04-08 19:18:53 +02:00
|
|
|
|
FD_CMD_SCAN_EQUAL = 0x11,
|
2008-02-29 20:24:00 +01:00
|
|
|
|
FD_CMD_PERPENDICULAR_MODE = 0x12,
|
|
|
|
|
FD_CMD_CONFIGURE = 0x13,
|
2008-04-08 19:18:53 +02:00
|
|
|
|
FD_CMD_LOCK = 0x14,
|
|
|
|
|
FD_CMD_VERIFY = 0x16,
|
2008-02-29 20:24:00 +01:00
|
|
|
|
FD_CMD_POWERDOWN_MODE = 0x17,
|
|
|
|
|
FD_CMD_PART_ID = 0x18,
|
2008-04-08 19:18:53 +02:00
|
|
|
|
FD_CMD_SCAN_LOW_OR_EQUAL = 0x19,
|
|
|
|
|
FD_CMD_SCAN_HIGH_OR_EQUAL = 0x1d,
|
2008-02-29 20:24:00 +01:00
|
|
|
|
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,
|
|
|
|
|
};
|
|
|
|
|
|
2008-04-29 18:17:08 +02:00
|
|
|
|
enum {
|
|
|
|
|
FD_SR1_EC = 0x80, /* End of cylinder */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
|
FD_SR2_SNS = 0x04, /* Scan not satisfied */
|
|
|
|
|
FD_SR2_SEH = 0x08, /* Scan equal hit */
|
|
|
|
|
};
|
|
|
|
|
|
2008-04-29 18:14:15 +02:00
|
|
|
|
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,
|
|
|
|
|
};
|
|
|
|
|
|
2008-02-29 20:24:00 +01:00
|
|
|
|
enum {
|
2008-04-29 18:18:26 +02:00
|
|
|
|
#if MAX_FD == 4
|
|
|
|
|
FD_DOR_SELMASK = 0x03,
|
|
|
|
|
#else
|
2008-02-29 20:24:00 +01:00
|
|
|
|
FD_DOR_SELMASK = 0x01,
|
2008-04-29 18:18:26 +02:00
|
|
|
|
#endif
|
2008-02-29 20:24:00 +01:00
|
|
|
|
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 {
|
2008-04-29 18:18:26 +02:00
|
|
|
|
#if MAX_FD == 4
|
2008-02-29 20:24:00 +01:00
|
|
|
|
FD_TDR_BOOTSEL = 0x0c,
|
2008-04-29 18:18:26 +02:00
|
|
|
|
#else
|
|
|
|
|
FD_TDR_BOOTSEL = 0x04,
|
|
|
|
|
#endif
|
2008-02-29 20:24:00 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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,
|
|
|
|
|
};
|
|
|
|
|
|
2004-01-05 01:09:06 +01:00
|
|
|
|
#define FD_MULTI_TRACK(state) ((state) & FD_STATE_MULTI)
|
|
|
|
|
#define FD_DID_SEEK(state) ((state) & FD_STATE_SEEK)
|
2004-03-20 00:05:34 +01:00
|
|
|
|
#define FD_FORMAT_CMD(state) ((state) & FD_STATE_FORMAT)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
struct fdctrl_t {
|
2004-10-09 18:44:33 +02:00
|
|
|
|
/* Controller's identification */
|
2004-01-05 01:09:06 +01:00
|
|
|
|
uint8_t version;
|
|
|
|
|
/* HW */
|
2007-04-07 20:14:41 +02:00
|
|
|
|
qemu_irq irq;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
int dma_chann;
|
2007-05-19 14:58:30 +02:00
|
|
|
|
target_phys_addr_t io_base;
|
2004-10-09 18:44:33 +02:00
|
|
|
|
/* Controller state */
|
2004-05-08 15:14:18 +02:00
|
|
|
|
QEMUTimer *result_timer;
|
2008-04-29 18:14:15 +02:00
|
|
|
|
uint8_t sra;
|
|
|
|
|
uint8_t srb;
|
2008-04-29 18:15:12 +02:00
|
|
|
|
uint8_t dor;
|
2008-04-29 18:17:42 +02:00
|
|
|
|
uint8_t tdr;
|
2008-04-29 18:16:30 +02:00
|
|
|
|
uint8_t dsr;
|
2008-04-29 18:15:12 +02:00
|
|
|
|
uint8_t msr;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
uint8_t cur_drv;
|
2008-04-29 18:17:08 +02:00
|
|
|
|
uint8_t status0;
|
|
|
|
|
uint8_t status1;
|
|
|
|
|
uint8_t status2;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Command FIFO */
|
2007-12-24 15:33:24 +01:00
|
|
|
|
uint8_t *fifo;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
uint32_t data_pos;
|
|
|
|
|
uint32_t data_len;
|
|
|
|
|
uint8_t data_state;
|
|
|
|
|
uint8_t data_dir;
|
2004-10-08 01:10:29 +02:00
|
|
|
|
uint8_t eot; /* last wanted sector */
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* 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;
|
2007-11-04 12:59:15 +01:00
|
|
|
|
/* Sun4m quirks? */
|
2007-11-04 17:58:07 +01:00
|
|
|
|
int sun4m;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Floppy drives */
|
2008-04-29 18:18:26 +02:00
|
|
|
|
fdrive_t drives[MAX_FD];
|
2009-01-24 13:09:52 +01:00
|
|
|
|
int reset_sensei;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static uint32_t fdctrl_read (void *opaque, uint32_t reg)
|
|
|
|
|
{
|
|
|
|
|
fdctrl_t *fdctrl = opaque;
|
|
|
|
|
uint32_t retval;
|
|
|
|
|
|
2008-12-02 18:47:02 +01:00
|
|
|
|
switch (reg) {
|
2008-04-29 18:14:15 +02:00
|
|
|
|
case FD_REG_SRA:
|
|
|
|
|
retval = fdctrl_read_statusA(fdctrl);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
break;
|
2008-04-29 18:14:15 +02:00
|
|
|
|
case FD_REG_SRB:
|
2007-11-05 04:11:37 +01:00
|
|
|
|
retval = fdctrl_read_statusB(fdctrl);
|
|
|
|
|
break;
|
2008-02-29 20:24:00 +01:00
|
|
|
|
case FD_REG_DOR:
|
2007-11-05 04:11:37 +01:00
|
|
|
|
retval = fdctrl_read_dor(fdctrl);
|
|
|
|
|
break;
|
2008-02-29 20:24:00 +01:00
|
|
|
|
case FD_REG_TDR:
|
2004-03-20 00:05:34 +01:00
|
|
|
|
retval = fdctrl_read_tape(fdctrl);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
break;
|
2008-02-29 20:24:00 +01:00
|
|
|
|
case FD_REG_MSR:
|
2004-03-20 00:05:34 +01:00
|
|
|
|
retval = fdctrl_read_main_status(fdctrl);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
break;
|
2008-02-29 20:24:00 +01:00
|
|
|
|
case FD_REG_FIFO:
|
2004-03-20 00:05:34 +01:00
|
|
|
|
retval = fdctrl_read_data(fdctrl);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
break;
|
2008-02-29 20:24:00 +01:00
|
|
|
|
case FD_REG_DIR:
|
2004-03-20 00:05:34 +01:00
|
|
|
|
retval = fdctrl_read_dir(fdctrl);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
break;
|
2004-04-12 22:39:29 +02:00
|
|
|
|
default:
|
2007-11-05 04:11:37 +01:00
|
|
|
|
retval = (uint32_t)(-1);
|
|
|
|
|
break;
|
2004-04-12 22:39:29 +02:00
|
|
|
|
}
|
2004-05-08 15:14:18 +02:00
|
|
|
|
FLOPPY_DPRINTF("read reg%d: 0x%02x\n", reg & 7, retval);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_write (void *opaque, uint32_t reg, uint32_t value)
|
|
|
|
|
{
|
|
|
|
|
fdctrl_t *fdctrl = opaque;
|
|
|
|
|
|
2004-05-08 15:14:18 +02:00
|
|
|
|
FLOPPY_DPRINTF("write reg%d: 0x%02x\n", reg & 7, value);
|
|
|
|
|
|
2008-12-02 18:47:02 +01:00
|
|
|
|
switch (reg) {
|
2008-02-29 20:24:00 +01:00
|
|
|
|
case FD_REG_DOR:
|
2007-11-05 04:11:37 +01:00
|
|
|
|
fdctrl_write_dor(fdctrl, value);
|
|
|
|
|
break;
|
2008-02-29 20:24:00 +01:00
|
|
|
|
case FD_REG_TDR:
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl_write_tape(fdctrl, value);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
break;
|
2008-02-29 20:24:00 +01:00
|
|
|
|
case FD_REG_DSR:
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl_write_rate(fdctrl, value);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
break;
|
2008-02-29 20:24:00 +01:00
|
|
|
|
case FD_REG_FIFO:
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl_write_data(fdctrl, value);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
break;
|
2004-04-12 22:39:29 +02:00
|
|
|
|
default:
|
2007-11-05 04:11:37 +01:00
|
|
|
|
break;
|
2004-04-12 22:39:29 +02:00
|
|
|
|
}
|
2004-03-20 00:05:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-12-02 18:47:02 +01:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2005-01-04 00:28:27 +01:00
|
|
|
|
static uint32_t fdctrl_read_mem (void *opaque, target_phys_addr_t reg)
|
|
|
|
|
{
|
2007-05-19 14:58:30 +02:00
|
|
|
|
return fdctrl_read(opaque, (uint32_t)reg);
|
2005-01-04 00:28:27 +01:00
|
|
|
|
}
|
|
|
|
|
|
2007-09-16 23:08:06 +02:00
|
|
|
|
static void fdctrl_write_mem (void *opaque,
|
2005-01-04 00:28:27 +01:00
|
|
|
|
target_phys_addr_t reg, uint32_t value)
|
|
|
|
|
{
|
2007-05-19 14:58:30 +02:00
|
|
|
|
fdctrl_write(opaque, (uint32_t)reg, value);
|
2005-01-04 00:28:27 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-12-20 00:18:01 +01:00
|
|
|
|
static CPUReadMemoryFunc *fdctrl_mem_read[3] = {
|
2005-01-04 00:28:27 +01:00
|
|
|
|
fdctrl_read_mem,
|
|
|
|
|
fdctrl_read_mem,
|
|
|
|
|
fdctrl_read_mem,
|
2004-12-20 00:18:01 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static CPUWriteMemoryFunc *fdctrl_mem_write[3] = {
|
2005-01-04 00:28:27 +01:00
|
|
|
|
fdctrl_write_mem,
|
|
|
|
|
fdctrl_write_mem,
|
|
|
|
|
fdctrl_write_mem,
|
2004-12-20 00:18:01 +01:00
|
|
|
|
};
|
|
|
|
|
|
2008-01-01 18:06:38 +01:00
|
|
|
|
static CPUReadMemoryFunc *fdctrl_mem_read_strict[3] = {
|
|
|
|
|
fdctrl_read_mem,
|
|
|
|
|
NULL,
|
|
|
|
|
NULL,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static CPUWriteMemoryFunc *fdctrl_mem_write_strict[3] = {
|
|
|
|
|
fdctrl_write_mem,
|
|
|
|
|
NULL,
|
|
|
|
|
NULL,
|
|
|
|
|
};
|
|
|
|
|
|
2007-04-14 15:01:31 +02:00
|
|
|
|
static void fd_save (QEMUFile *f, fdrive_t *fd)
|
|
|
|
|
{
|
|
|
|
|
qemu_put_8s(f, &fd->head);
|
|
|
|
|
qemu_put_8s(f, &fd->track);
|
|
|
|
|
qemu_put_8s(f, &fd->sect);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdc_save (QEMUFile *f, void *opaque)
|
|
|
|
|
{
|
|
|
|
|
fdctrl_t *s = opaque;
|
2008-04-29 18:18:26 +02:00
|
|
|
|
uint8_t tmp;
|
|
|
|
|
int i;
|
2008-04-29 18:18:58 +02:00
|
|
|
|
uint8_t dor = s->dor | GET_CUR_DRV(s);
|
2007-04-14 15:01:31 +02:00
|
|
|
|
|
2008-04-29 18:14:15 +02:00
|
|
|
|
/* Controller state */
|
|
|
|
|
qemu_put_8s(f, &s->sra);
|
|
|
|
|
qemu_put_8s(f, &s->srb);
|
2008-04-29 18:18:58 +02:00
|
|
|
|
qemu_put_8s(f, &dor);
|
2008-04-29 18:17:42 +02:00
|
|
|
|
qemu_put_8s(f, &s->tdr);
|
2008-04-29 18:17:08 +02:00
|
|
|
|
qemu_put_8s(f, &s->dsr);
|
|
|
|
|
qemu_put_8s(f, &s->msr);
|
|
|
|
|
qemu_put_8s(f, &s->status0);
|
|
|
|
|
qemu_put_8s(f, &s->status1);
|
|
|
|
|
qemu_put_8s(f, &s->status2);
|
|
|
|
|
/* Command FIFO */
|
2007-04-14 15:01:31 +02:00
|
|
|
|
qemu_put_buffer(f, s->fifo, FD_SECTOR_LEN);
|
|
|
|
|
qemu_put_be32s(f, &s->data_pos);
|
|
|
|
|
qemu_put_be32s(f, &s->data_len);
|
|
|
|
|
qemu_put_8s(f, &s->data_state);
|
|
|
|
|
qemu_put_8s(f, &s->data_dir);
|
|
|
|
|
qemu_put_8s(f, &s->eot);
|
2008-04-29 18:17:08 +02:00
|
|
|
|
/* States kept only to be returned back */
|
2007-04-14 15:01:31 +02:00
|
|
|
|
qemu_put_8s(f, &s->timer0);
|
|
|
|
|
qemu_put_8s(f, &s->timer1);
|
|
|
|
|
qemu_put_8s(f, &s->precomp_trk);
|
|
|
|
|
qemu_put_8s(f, &s->config);
|
|
|
|
|
qemu_put_8s(f, &s->lock);
|
|
|
|
|
qemu_put_8s(f, &s->pwrd);
|
2008-04-29 18:18:26 +02:00
|
|
|
|
|
|
|
|
|
tmp = MAX_FD;
|
|
|
|
|
qemu_put_8s(f, &tmp);
|
|
|
|
|
for (i = 0; i < MAX_FD; i++)
|
|
|
|
|
fd_save(f, &s->drives[i]);
|
2007-04-14 15:01:31 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int fd_load (QEMUFile *f, fdrive_t *fd)
|
|
|
|
|
{
|
|
|
|
|
qemu_get_8s(f, &fd->head);
|
|
|
|
|
qemu_get_8s(f, &fd->track);
|
|
|
|
|
qemu_get_8s(f, &fd->sect);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int fdc_load (QEMUFile *f, void *opaque, int version_id)
|
|
|
|
|
{
|
|
|
|
|
fdctrl_t *s = opaque;
|
2008-04-29 18:18:26 +02:00
|
|
|
|
int i, ret = 0;
|
|
|
|
|
uint8_t n;
|
2007-04-14 15:01:31 +02:00
|
|
|
|
|
2008-04-29 18:17:08 +02:00
|
|
|
|
if (version_id != 2)
|
2007-04-14 15:01:31 +02:00
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
2008-04-29 18:14:15 +02:00
|
|
|
|
/* Controller state */
|
|
|
|
|
qemu_get_8s(f, &s->sra);
|
|
|
|
|
qemu_get_8s(f, &s->srb);
|
2008-04-29 18:18:58 +02:00
|
|
|
|
qemu_get_8s(f, &s->dor);
|
|
|
|
|
SET_CUR_DRV(s, s->dor & FD_DOR_SELMASK);
|
|
|
|
|
s->dor &= ~FD_DOR_SELMASK;
|
2008-04-29 18:17:42 +02:00
|
|
|
|
qemu_get_8s(f, &s->tdr);
|
2008-04-29 18:17:08 +02:00
|
|
|
|
qemu_get_8s(f, &s->dsr);
|
|
|
|
|
qemu_get_8s(f, &s->msr);
|
|
|
|
|
qemu_get_8s(f, &s->status0);
|
|
|
|
|
qemu_get_8s(f, &s->status1);
|
|
|
|
|
qemu_get_8s(f, &s->status2);
|
|
|
|
|
/* Command FIFO */
|
2007-04-14 15:01:31 +02:00
|
|
|
|
qemu_get_buffer(f, s->fifo, FD_SECTOR_LEN);
|
|
|
|
|
qemu_get_be32s(f, &s->data_pos);
|
|
|
|
|
qemu_get_be32s(f, &s->data_len);
|
|
|
|
|
qemu_get_8s(f, &s->data_state);
|
|
|
|
|
qemu_get_8s(f, &s->data_dir);
|
|
|
|
|
qemu_get_8s(f, &s->eot);
|
2008-04-29 18:17:08 +02:00
|
|
|
|
/* States kept only to be returned back */
|
2007-04-14 15:01:31 +02:00
|
|
|
|
qemu_get_8s(f, &s->timer0);
|
|
|
|
|
qemu_get_8s(f, &s->timer1);
|
|
|
|
|
qemu_get_8s(f, &s->precomp_trk);
|
|
|
|
|
qemu_get_8s(f, &s->config);
|
|
|
|
|
qemu_get_8s(f, &s->lock);
|
|
|
|
|
qemu_get_8s(f, &s->pwrd);
|
2008-04-29 18:18:26 +02:00
|
|
|
|
qemu_get_8s(f, &n);
|
2007-04-14 15:01:31 +02:00
|
|
|
|
|
2008-04-29 18:18:26 +02:00
|
|
|
|
if (n > MAX_FD)
|
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
|
ret = fd_load(f, &s->drives[i]);
|
|
|
|
|
if (ret != 0)
|
|
|
|
|
break;
|
|
|
|
|
}
|
2007-04-14 15:01:31 +02:00
|
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_external_reset(void *opaque)
|
|
|
|
|
{
|
|
|
|
|
fdctrl_t *s = opaque;
|
|
|
|
|
|
|
|
|
|
fdctrl_reset(s, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-21 19:05:23 +01:00
|
|
|
|
static void fdctrl_handle_tc(void *opaque, int irq, int level)
|
|
|
|
|
{
|
|
|
|
|
//fdctrl_t *s = opaque;
|
|
|
|
|
|
|
|
|
|
if (level) {
|
|
|
|
|
// XXX
|
|
|
|
|
FLOPPY_DPRINTF("TC pulsed\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
/* XXX: may change if moved to bdrv */
|
|
|
|
|
int fdctrl_get_drive_type(fdctrl_t *fdctrl, int drive_num)
|
2004-03-14 22:40:43 +01:00
|
|
|
|
{
|
2004-03-20 00:05:34 +01:00
|
|
|
|
return fdctrl->drives[drive_num].drive;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Change IRQ state */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static void fdctrl_reset_irq (fdctrl_t *fdctrl)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2008-04-29 18:14:15 +02:00
|
|
|
|
if (!(fdctrl->sra & FD_SRA_INTPEND))
|
|
|
|
|
return;
|
2004-05-08 15:14:18 +02:00
|
|
|
|
FLOPPY_DPRINTF("Reset interrupt\n");
|
2007-04-07 20:14:41 +02:00
|
|
|
|
qemu_set_irq(fdctrl->irq, 0);
|
2008-04-29 18:14:15 +02:00
|
|
|
|
fdctrl->sra &= ~FD_SRA_INTPEND;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-04-29 18:17:08 +02:00
|
|
|
|
static void fdctrl_raise_irq (fdctrl_t *fdctrl, uint8_t status0)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2008-04-29 18:16:30 +02:00
|
|
|
|
/* 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;
|
2008-04-29 18:17:08 +02:00
|
|
|
|
fdctrl->status0 = status0;
|
2007-11-05 04:11:37 +01:00
|
|
|
|
return;
|
2005-03-13 10:43:36 +01:00
|
|
|
|
}
|
2008-04-29 18:14:15 +02:00
|
|
|
|
if (!(fdctrl->sra & FD_SRA_INTPEND)) {
|
2007-04-07 20:14:41 +02:00
|
|
|
|
qemu_set_irq(fdctrl->irq, 1);
|
2008-04-29 18:14:15 +02:00
|
|
|
|
fdctrl->sra |= FD_SRA_INTPEND;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
2009-01-24 13:09:52 +01:00
|
|
|
|
fdctrl->reset_sensei = 0;
|
2008-04-29 18:17:08 +02:00
|
|
|
|
fdctrl->status0 = status0;
|
|
|
|
|
FLOPPY_DPRINTF("Set interrupt status to 0x%02x\n", fdctrl->status0);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2004-10-09 18:44:33 +02:00
|
|
|
|
/* Reset controller */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static void fdctrl_reset (fdctrl_t *fdctrl, int do_irq)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
2004-10-09 18:44:33 +02:00
|
|
|
|
FLOPPY_DPRINTF("reset controller\n");
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl_reset_irq(fdctrl);
|
2004-10-09 18:44:33 +02:00
|
|
|
|
/* Initialise controller */
|
2008-04-29 18:14:15 +02:00
|
|
|
|
fdctrl->sra = 0;
|
|
|
|
|
fdctrl->srb = 0xc0;
|
|
|
|
|
if (!fdctrl->drives[1].bs)
|
|
|
|
|
fdctrl->sra |= FD_SRA_nDRV2;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl->cur_drv = 0;
|
2008-04-29 18:15:53 +02:00
|
|
|
|
fdctrl->dor = FD_DOR_nRESET;
|
2008-04-29 18:15:12 +02:00
|
|
|
|
fdctrl->dor |= (fdctrl->dma_chann != -1) ? FD_DOR_DMAEN : 0;
|
2008-04-29 18:16:30 +02:00
|
|
|
|
fdctrl->msr = FD_MSR_RQM;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* FIFO state */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl->data_pos = 0;
|
|
|
|
|
fdctrl->data_len = 0;
|
2008-04-29 18:16:30 +02:00
|
|
|
|
fdctrl->data_state = 0;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl->data_dir = FD_DIR_WRITE;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
for (i = 0; i < MAX_FD; i++)
|
2008-04-29 18:15:53 +02:00
|
|
|
|
fd_recalibrate(&fdctrl->drives[i]);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl_reset_fifo(fdctrl);
|
2008-04-29 18:17:08 +02:00
|
|
|
|
if (do_irq) {
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl_raise_irq(fdctrl, FD_SR0_RDYCHG);
|
2009-01-24 13:09:52 +01:00
|
|
|
|
fdctrl->reset_sensei = FD_RESET_SENSEI_COUNT;
|
2008-04-29 18:17:08 +02:00
|
|
|
|
}
|
2004-03-20 00:05:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline fdrive_t *drv0 (fdctrl_t *fdctrl)
|
|
|
|
|
{
|
2008-04-29 18:17:42 +02:00
|
|
|
|
return &fdctrl->drives[(fdctrl->tdr & FD_TDR_BOOTSEL) >> 2];
|
2004-03-20 00:05:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline fdrive_t *drv1 (fdctrl_t *fdctrl)
|
|
|
|
|
{
|
2008-04-29 18:17:42 +02:00
|
|
|
|
if ((fdctrl->tdr & FD_TDR_BOOTSEL) < (1 << 2))
|
|
|
|
|
return &fdctrl->drives[1];
|
|
|
|
|
else
|
|
|
|
|
return &fdctrl->drives[0];
|
2004-03-20 00:05:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-04-29 18:18:26 +02:00
|
|
|
|
#if MAX_FD == 4
|
|
|
|
|
static inline fdrive_t *drv2 (fdctrl_t *fdctrl)
|
|
|
|
|
{
|
|
|
|
|
if ((fdctrl->tdr & FD_TDR_BOOTSEL) < (2 << 2))
|
|
|
|
|
return &fdctrl->drives[2];
|
|
|
|
|
else
|
|
|
|
|
return &fdctrl->drives[1];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline fdrive_t *drv3 (fdctrl_t *fdctrl)
|
|
|
|
|
{
|
|
|
|
|
if ((fdctrl->tdr & FD_TDR_BOOTSEL) < (3 << 2))
|
|
|
|
|
return &fdctrl->drives[3];
|
|
|
|
|
else
|
|
|
|
|
return &fdctrl->drives[2];
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static fdrive_t *get_cur_drv (fdctrl_t *fdctrl)
|
|
|
|
|
{
|
2008-04-29 18:18:26 +02:00
|
|
|
|
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;
|
|
|
|
|
}
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-04-29 18:14:15 +02:00
|
|
|
|
/* Status A register : 0x00 (read-only) */
|
|
|
|
|
static uint32_t fdctrl_read_statusA (fdctrl_t *fdctrl)
|
|
|
|
|
{
|
|
|
|
|
uint32_t retval = fdctrl->sra;
|
|
|
|
|
|
|
|
|
|
FLOPPY_DPRINTF("status register A: 0x%02x\n", retval);
|
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Status B register : 0x01 (read-only) */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static uint32_t fdctrl_read_statusB (fdctrl_t *fdctrl)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2008-04-29 18:14:15 +02:00
|
|
|
|
uint32_t retval = fdctrl->srb;
|
|
|
|
|
|
|
|
|
|
FLOPPY_DPRINTF("status register B: 0x%02x\n", retval);
|
|
|
|
|
|
|
|
|
|
return retval;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Digital output register : 0x02 */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static uint32_t fdctrl_read_dor (fdctrl_t *fdctrl)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2008-04-29 18:15:53 +02:00
|
|
|
|
uint32_t retval = fdctrl->dor;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
|
|
|
|
/* Selected drive */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
retval |= fdctrl->cur_drv;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
FLOPPY_DPRINTF("digital output register: 0x%02x\n", retval);
|
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static void fdctrl_write_dor (fdctrl_t *fdctrl, uint32_t value)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
|
|
|
|
FLOPPY_DPRINTF("digital output register set to 0x%02x\n", value);
|
2008-04-29 18:14:15 +02:00
|
|
|
|
|
|
|
|
|
/* 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;
|
|
|
|
|
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Reset */
|
2008-02-29 20:24:00 +01:00
|
|
|
|
if (!(value & FD_DOR_nRESET)) {
|
2008-04-29 18:15:53 +02:00
|
|
|
|
if (fdctrl->dor & FD_DOR_nRESET) {
|
2004-10-09 18:44:33 +02:00
|
|
|
|
FLOPPY_DPRINTF("controller enter RESET state\n");
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2008-04-29 18:15:53 +02:00
|
|
|
|
if (!(fdctrl->dor & FD_DOR_nRESET)) {
|
2004-10-09 18:44:33 +02:00
|
|
|
|
FLOPPY_DPRINTF("controller out of RESET state\n");
|
2004-05-04 04:04:17 +02:00
|
|
|
|
fdctrl_reset(fdctrl, 1);
|
2008-04-29 18:16:30 +02:00
|
|
|
|
fdctrl->dsr &= ~FD_DSR_PWRDOWN;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* Selected drive */
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl->cur_drv = value & FD_DOR_SELMASK;
|
2008-04-29 18:15:12 +02:00
|
|
|
|
|
|
|
|
|
fdctrl->dor = value;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Tape drive register : 0x03 */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static uint32_t fdctrl_read_tape (fdctrl_t *fdctrl)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2008-04-29 18:17:42 +02:00
|
|
|
|
uint32_t retval = fdctrl->tdr;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
|
|
|
|
FLOPPY_DPRINTF("tape drive register: 0x%02x\n", retval);
|
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static void fdctrl_write_tape (fdctrl_t *fdctrl, uint32_t value)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
|
|
|
|
/* Reset mode */
|
2008-04-29 18:15:53 +02:00
|
|
|
|
if (!(fdctrl->dor & FD_DOR_nRESET)) {
|
2004-10-09 18:44:33 +02:00
|
|
|
|
FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
|
2004-01-05 01:09:06 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
FLOPPY_DPRINTF("tape drive register set to 0x%02x\n", value);
|
|
|
|
|
/* Disk boot selection indicator */
|
2008-04-29 18:17:42 +02:00
|
|
|
|
fdctrl->tdr = value & FD_TDR_BOOTSEL;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Tape indicators: never allow */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Main status register : 0x04 (read) */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static uint32_t fdctrl_read_main_status (fdctrl_t *fdctrl)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2008-04-29 18:16:30 +02:00
|
|
|
|
uint32_t retval = fdctrl->msr;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
2008-04-29 18:16:30 +02:00
|
|
|
|
fdctrl->dsr &= ~FD_DSR_PWRDOWN;
|
2008-04-29 18:15:53 +02:00
|
|
|
|
fdctrl->dor |= FD_DOR_nRESET;
|
2008-04-29 18:16:30 +02:00
|
|
|
|
|
2004-01-05 01:09:06 +01:00
|
|
|
|
FLOPPY_DPRINTF("main status register: 0x%02x\n", retval);
|
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Data select rate register : 0x04 (write) */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static void fdctrl_write_rate (fdctrl_t *fdctrl, uint32_t value)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
|
|
|
|
/* Reset mode */
|
2008-04-29 18:15:53 +02:00
|
|
|
|
if (!(fdctrl->dor & FD_DOR_nRESET)) {
|
2007-11-05 04:11:37 +01:00
|
|
|
|
FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
2004-01-05 01:09:06 +01:00
|
|
|
|
FLOPPY_DPRINTF("select rate register set to 0x%02x\n", value);
|
|
|
|
|
/* Reset: autoclear */
|
2008-02-29 20:24:00 +01:00
|
|
|
|
if (value & FD_DSR_SWRESET) {
|
2008-04-29 18:15:53 +02:00
|
|
|
|
fdctrl->dor &= ~FD_DOR_nRESET;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl_reset(fdctrl, 1);
|
2008-04-29 18:15:53 +02:00
|
|
|
|
fdctrl->dor |= FD_DOR_nRESET;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
2008-02-29 20:24:00 +01:00
|
|
|
|
if (value & FD_DSR_PWRDOWN) {
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl_reset(fdctrl, 1);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
2008-04-29 18:16:30 +02:00
|
|
|
|
fdctrl->dsr = value;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2006-08-19 13:43:22 +02:00
|
|
|
|
static int fdctrl_media_changed(fdrive_t *drv)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
2007-11-05 04:11:37 +01:00
|
|
|
|
|
2007-09-16 23:08:06 +02:00
|
|
|
|
if (!drv->bs)
|
2006-08-19 13:43:22 +02:00
|
|
|
|
return 0;
|
|
|
|
|
ret = bdrv_media_changed(drv->bs);
|
|
|
|
|
if (ret) {
|
|
|
|
|
fd_revalidate(drv);
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Digital input register : 0x07 (read-only) */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static uint32_t fdctrl_read_dir (fdctrl_t *fdctrl)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
|
|
|
|
uint32_t retval = 0;
|
|
|
|
|
|
2008-04-29 18:18:26 +02:00
|
|
|
|
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
|
|
|
|
|
)
|
2008-02-29 20:24:00 +01:00
|
|
|
|
retval |= FD_DIR_DSKCHG;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
if (retval != 0)
|
2004-03-20 00:05:34 +01:00
|
|
|
|
FLOPPY_DPRINTF("Floppy digital input register: 0x%02x\n", retval);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* FIFO state control */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static void fdctrl_reset_fifo (fdctrl_t *fdctrl)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl->data_dir = FD_DIR_WRITE;
|
|
|
|
|
fdctrl->data_pos = 0;
|
2008-04-29 18:16:30 +02:00
|
|
|
|
fdctrl->msr &= ~(FD_MSR_CMDBUSY | FD_MSR_DIO);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set FIFO status for the host to read */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static void fdctrl_set_fifo (fdctrl_t *fdctrl, int fifo_len, int do_irq)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl->data_dir = FD_DIR_READ;
|
|
|
|
|
fdctrl->data_len = fifo_len;
|
|
|
|
|
fdctrl->data_pos = 0;
|
2008-04-29 18:16:30 +02:00
|
|
|
|
fdctrl->msr |= FD_MSR_CMDBUSY | FD_MSR_RQM | FD_MSR_DIO;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
if (do_irq)
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl_raise_irq(fdctrl, 0x00);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Set an error: unimplemented/unknown command */
|
2008-04-08 19:18:53 +02:00
|
|
|
|
static void fdctrl_unimplemented (fdctrl_t *fdctrl, int direction)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2008-04-29 18:17:08 +02:00
|
|
|
|
FLOPPY_ERROR("unimplemented command 0x%02x\n", fdctrl->fifo[0]);
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl->fifo[0] = FD_SR0_INVCMD;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl_set_fifo(fdctrl, 1, 0);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
2008-04-29 18:13:36 +02:00
|
|
|
|
/* Seek to next sector */
|
|
|
|
|
static int fdctrl_seek_to_next_sect (fdctrl_t *fdctrl, fdrive_t *cur_drv)
|
|
|
|
|
{
|
|
|
|
|
FLOPPY_DPRINTF("seek to next sector (%d %02x %02x => %d)\n",
|
|
|
|
|
cur_drv->head, cur_drv->track, cur_drv->sect,
|
|
|
|
|
fd_sector(cur_drv));
|
|
|
|
|
/* XXX: cur_drv->sect >= cur_drv->last_sect should be an
|
|
|
|
|
error in fact */
|
|
|
|
|
if (cur_drv->sect >= cur_drv->last_sect ||
|
|
|
|
|
cur_drv->sect == fdctrl->eot) {
|
|
|
|
|
cur_drv->sect = 1;
|
|
|
|
|
if (FD_MULTI_TRACK(fdctrl->data_state)) {
|
|
|
|
|
if (cur_drv->head == 0 &&
|
|
|
|
|
(cur_drv->flags & FDISK_DBL_SIDES) != 0) {
|
|
|
|
|
cur_drv->head = 1;
|
|
|
|
|
} else {
|
|
|
|
|
cur_drv->head = 0;
|
|
|
|
|
cur_drv->track++;
|
|
|
|
|
if ((cur_drv->flags & FDISK_DBL_SIDES) == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
cur_drv->track++;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
FLOPPY_DPRINTF("seek to next track (%d %02x %02x => %d)\n",
|
|
|
|
|
cur_drv->head, cur_drv->track,
|
|
|
|
|
cur_drv->sect, fd_sector(cur_drv));
|
|
|
|
|
} else {
|
|
|
|
|
cur_drv->sect++;
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Callback for transfer end (stop or abort) */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static void fdctrl_stop_transfer (fdctrl_t *fdctrl, uint8_t status0,
|
2007-11-05 04:11:37 +01:00
|
|
|
|
uint8_t status1, uint8_t status2)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdrive_t *cur_drv;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
cur_drv = get_cur_drv(fdctrl);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
FLOPPY_DPRINTF("transfer status: %02x %02x %02x (%02x)\n",
|
|
|
|
|
status0, status1, status2,
|
2008-04-29 18:18:58 +02:00
|
|
|
|
status0 | (cur_drv->head << 2) | GET_CUR_DRV(fdctrl));
|
|
|
|
|
fdctrl->fifo[0] = status0 | (cur_drv->head << 2) | GET_CUR_DRV(fdctrl);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
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;
|
2008-04-29 18:15:12 +02:00
|
|
|
|
if (!(fdctrl->msr & FD_MSR_NONDMA)) {
|
2004-03-20 00:05:34 +01:00
|
|
|
|
DMA_release_DREQ(fdctrl->dma_chann);
|
2004-05-08 15:14:18 +02:00
|
|
|
|
}
|
2008-04-29 18:16:30 +02:00
|
|
|
|
fdctrl->msr |= FD_MSR_RQM | FD_MSR_DIO;
|
2008-04-29 18:15:12 +02:00
|
|
|
|
fdctrl->msr &= ~FD_MSR_NONDMA;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl_set_fifo(fdctrl, 7, 1);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepare a data transfer (either DMA or FIFO) */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static void fdctrl_start_transfer (fdctrl_t *fdctrl, int direction)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdrive_t *cur_drv;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
uint8_t kh, kt, ks;
|
2008-04-29 18:17:08 +02:00
|
|
|
|
int did_seek = 0;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
2008-04-29 18:18:58 +02:00
|
|
|
|
SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
cur_drv = get_cur_drv(fdctrl);
|
|
|
|
|
kt = fdctrl->fifo[2];
|
|
|
|
|
kh = fdctrl->fifo[3];
|
|
|
|
|
ks = fdctrl->fifo[4];
|
2004-10-09 18:44:33 +02:00
|
|
|
|
FLOPPY_DPRINTF("Start transfer at %d %d %02x %02x (%d)\n",
|
2008-04-29 18:18:58 +02:00
|
|
|
|
GET_CUR_DRV(fdctrl), kh, kt, ks,
|
2004-01-05 01:09:06 +01:00
|
|
|
|
_fd_sector(kh, kt, ks, cur_drv->last_sect));
|
2008-04-29 18:17:08 +02:00
|
|
|
|
switch (fd_seek(cur_drv, kh, kt, ks, fdctrl->config & FD_CONFIG_EIS)) {
|
2004-01-05 01:09:06 +01:00
|
|
|
|
case 2:
|
|
|
|
|
/* sect too big */
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl->fifo[3] = kt;
|
|
|
|
|
fdctrl->fifo[4] = kh;
|
|
|
|
|
fdctrl->fifo[5] = ks;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
return;
|
|
|
|
|
case 3:
|
|
|
|
|
/* track too big */
|
2008-04-29 18:17:08 +02:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, FD_SR1_EC, 0x00);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl->fifo[3] = kt;
|
|
|
|
|
fdctrl->fifo[4] = kh;
|
|
|
|
|
fdctrl->fifo[5] = ks;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
return;
|
|
|
|
|
case 4:
|
|
|
|
|
/* No seek enabled */
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl->fifo[3] = kt;
|
|
|
|
|
fdctrl->fifo[4] = kh;
|
|
|
|
|
fdctrl->fifo[5] = ks;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
return;
|
|
|
|
|
case 1:
|
|
|
|
|
did_seek = 1;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
2008-04-29 18:16:30 +02:00
|
|
|
|
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Set the FIFO state */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl->data_dir = direction;
|
|
|
|
|
fdctrl->data_pos = 0;
|
2008-04-29 18:16:30 +02:00
|
|
|
|
fdctrl->msr |= FD_MSR_CMDBUSY;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
if (fdctrl->fifo[0] & 0x80)
|
|
|
|
|
fdctrl->data_state |= FD_STATE_MULTI;
|
|
|
|
|
else
|
|
|
|
|
fdctrl->data_state &= ~FD_STATE_MULTI;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
if (did_seek)
|
2004-03-20 00:05:34 +01:00
|
|
|
|
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 {
|
2007-11-05 04:11:37 +01:00
|
|
|
|
int tmp;
|
2006-12-11 00:07:39 +01:00
|
|
|
|
fdctrl->data_len = 128 << (fdctrl->fifo[5] > 7 ? 7 : fdctrl->fifo[5]);
|
2008-05-01 21:05:12 +02:00
|
|
|
|
tmp = (fdctrl->fifo[6] - ks + 1);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
if (fdctrl->fifo[0] & 0x80)
|
2008-05-01 21:05:12 +02:00
|
|
|
|
tmp += fdctrl->fifo[6];
|
2007-11-05 04:11:37 +01:00
|
|
|
|
fdctrl->data_len *= tmp;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
}
|
2004-10-08 01:10:29 +02:00
|
|
|
|
fdctrl->eot = fdctrl->fifo[6];
|
2008-04-29 18:15:12 +02:00
|
|
|
|
if (fdctrl->dor & FD_DOR_DMAEN) {
|
2004-01-05 01:09:06 +01:00
|
|
|
|
int dma_mode;
|
|
|
|
|
/* DMA transfer are enabled. Check if DMA channel is well programmed */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
dma_mode = DMA_get_channel_mode(fdctrl->dma_chann);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
dma_mode = (dma_mode >> 2) & 3;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
FLOPPY_DPRINTF("dma_mode=%d direction=%d (%d - %d)\n",
|
2007-11-05 04:11:37 +01:00
|
|
|
|
dma_mode, direction,
|
2004-03-20 00:05:34 +01:00
|
|
|
|
(128 << fdctrl->fifo[5]) *
|
2007-11-05 04:11:37 +01:00
|
|
|
|
(cur_drv->last_sect - ks + 1), fdctrl->data_len);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
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 */
|
2008-04-29 18:16:30 +02:00
|
|
|
|
fdctrl->msr &= ~FD_MSR_RQM;
|
2004-10-09 18:44:33 +02:00
|
|
|
|
/* Now, we just have to wait for the DMA controller to
|
2004-01-05 01:09:06 +01:00
|
|
|
|
* recall us...
|
|
|
|
|
*/
|
2004-03-20 00:05:34 +01:00
|
|
|
|
DMA_hold_DREQ(fdctrl->dma_chann);
|
|
|
|
|
DMA_schedule(fdctrl->dma_chann);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
return;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
} else {
|
2007-11-05 04:11:37 +01:00
|
|
|
|
FLOPPY_ERROR("dma_mode=%d direction=%d\n", dma_mode, direction);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
FLOPPY_DPRINTF("start non-DMA transfer\n");
|
2008-04-29 18:15:12 +02:00
|
|
|
|
fdctrl->msr |= FD_MSR_NONDMA;
|
2008-04-29 18:16:30 +02:00
|
|
|
|
if (direction != FD_DIR_WRITE)
|
|
|
|
|
fdctrl->msr |= FD_MSR_DIO;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* IO based transfer: calculate len */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl_raise_irq(fdctrl, 0x00);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Prepare a transfer of deleted data */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static void fdctrl_start_transfer_del (fdctrl_t *fdctrl, int direction)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2008-04-29 18:17:08 +02:00
|
|
|
|
FLOPPY_ERROR("fdctrl_start_transfer_del() unimplemented\n");
|
|
|
|
|
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* We don't handle deleted data,
|
|
|
|
|
* so we don't return *ANYTHING*
|
|
|
|
|
*/
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* handlers for DMA transfers */
|
2004-11-07 19:04:02 +01:00
|
|
|
|
static int fdctrl_transfer_handler (void *opaque, int nchan,
|
|
|
|
|
int dma_pos, int dma_len)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl_t *fdctrl;
|
|
|
|
|
fdrive_t *cur_drv;
|
|
|
|
|
int len, start_pos, rel_pos;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
uint8_t status0 = 0x00, status1 = 0x00, status2 = 0x00;
|
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl = opaque;
|
2008-04-29 18:16:30 +02:00
|
|
|
|
if (fdctrl->msr & FD_MSR_RQM) {
|
2004-01-05 01:09:06 +01:00
|
|
|
|
FLOPPY_DPRINTF("Not in DMA transfer mode !\n");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2004-03-20 00:05:34 +01:00
|
|
|
|
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)
|
2008-04-29 18:17:08 +02:00
|
|
|
|
status2 = FD_SR2_SNS;
|
2004-11-07 19:04:02 +01:00
|
|
|
|
if (dma_len > fdctrl->data_len)
|
|
|
|
|
dma_len = fdctrl->data_len;
|
2004-10-08 01:10:29 +02:00
|
|
|
|
if (cur_drv->bs == NULL) {
|
2007-11-05 04:11:37 +01:00
|
|
|
|
if (fdctrl->data_dir == FD_DIR_WRITE)
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
else
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
len = 0;
|
2004-10-08 01:10:29 +02:00
|
|
|
|
goto transfer_error;
|
|
|
|
|
}
|
2004-03-20 00:05:34 +01:00
|
|
|
|
rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
|
2004-11-07 19:04:02 +01:00
|
|
|
|
for (start_pos = fdctrl->data_pos; fdctrl->data_pos < dma_len;) {
|
|
|
|
|
len = dma_len - fdctrl->data_pos;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
if (len + rel_pos > FD_SECTOR_LEN)
|
|
|
|
|
len = FD_SECTOR_LEN - rel_pos;
|
2005-03-13 10:43:36 +01:00
|
|
|
|
FLOPPY_DPRINTF("copy %d bytes (%d %d %d) %d pos %d %02x "
|
|
|
|
|
"(%d-0x%08x 0x%08x)\n", len, dma_len, fdctrl->data_pos,
|
2008-04-29 18:18:58 +02:00
|
|
|
|
fdctrl->data_len, GET_CUR_DRV(fdctrl), cur_drv->head,
|
2004-03-20 00:05:34 +01:00
|
|
|
|
cur_drv->track, cur_drv->sect, fd_sector(cur_drv),
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fd_sector(cur_drv) * FD_SECTOR_LEN);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
if (fdctrl->data_dir != FD_DIR_WRITE ||
|
2007-11-05 04:11:37 +01:00
|
|
|
|
len < FD_SECTOR_LEN || rel_pos != 0) {
|
2004-03-20 00:05:34 +01:00
|
|
|
|
/* READ & SCAN commands and realign to a sector for WRITE */
|
|
|
|
|
if (bdrv_read(cur_drv->bs, fd_sector(cur_drv),
|
2007-11-05 04:11:37 +01:00
|
|
|
|
fdctrl->fifo, 1) < 0) {
|
2004-01-05 01:09:06 +01:00
|
|
|
|
FLOPPY_DPRINTF("Floppy: error getting sector %d\n",
|
|
|
|
|
fd_sector(cur_drv));
|
|
|
|
|
/* Sure, image size is too small... */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
memset(fdctrl->fifo, 0, FD_SECTOR_LEN);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
2004-10-08 01:10:29 +02:00
|
|
|
|
}
|
2007-11-05 04:11:37 +01:00
|
|
|
|
switch (fdctrl->data_dir) {
|
|
|
|
|
case FD_DIR_READ:
|
|
|
|
|
/* READ commands */
|
2004-11-07 19:04:02 +01:00
|
|
|
|
DMA_write_memory (nchan, fdctrl->fifo + rel_pos,
|
|
|
|
|
fdctrl->data_pos, len);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
break;
|
|
|
|
|
case FD_DIR_WRITE:
|
2004-03-20 00:05:34 +01:00
|
|
|
|
/* WRITE commands */
|
2004-11-07 19:04:02 +01:00
|
|
|
|
DMA_read_memory (nchan, fdctrl->fifo + rel_pos,
|
|
|
|
|
fdctrl->data_pos, len);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
if (bdrv_write(cur_drv->bs, fd_sector(cur_drv),
|
2007-11-05 04:11:37 +01:00
|
|
|
|
fdctrl->fifo, 1) < 0) {
|
2008-04-29 18:17:08 +02:00
|
|
|
|
FLOPPY_ERROR("writing sector %d\n", fd_sector(cur_drv));
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
goto transfer_error;
|
2004-10-08 01:10:29 +02:00
|
|
|
|
}
|
2007-11-05 04:11:37 +01:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
/* SCAN commands */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
{
|
2007-11-05 04:11:37 +01:00
|
|
|
|
uint8_t tmpbuf[FD_SECTOR_LEN];
|
2004-03-20 00:05:34 +01:00
|
|
|
|
int ret;
|
2004-11-07 19:04:02 +01:00
|
|
|
|
DMA_read_memory (nchan, tmpbuf, fdctrl->data_pos, len);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
ret = memcmp(tmpbuf, fdctrl->fifo + rel_pos, len);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
if (ret == 0) {
|
2008-04-29 18:17:08 +02:00
|
|
|
|
status2 = FD_SR2_SEH;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
goto end_transfer;
|
|
|
|
|
}
|
2004-03-20 00:05:34 +01:00
|
|
|
|
if ((ret < 0 && fdctrl->data_dir == FD_DIR_SCANL) ||
|
|
|
|
|
(ret > 0 && fdctrl->data_dir == FD_DIR_SCANH)) {
|
2004-01-05 01:09:06 +01:00
|
|
|
|
status2 = 0x00;
|
|
|
|
|
goto end_transfer;
|
|
|
|
|
}
|
|
|
|
|
}
|
2007-11-05 04:11:37 +01:00
|
|
|
|
break;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
2007-11-05 04:11:37 +01:00
|
|
|
|
fdctrl->data_pos += len;
|
|
|
|
|
rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
if (rel_pos == 0) {
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Seek to next sector */
|
2008-04-29 18:13:36 +02:00
|
|
|
|
if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv))
|
|
|
|
|
break;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2007-11-05 04:11:37 +01:00
|
|
|
|
end_transfer:
|
2004-03-20 00:05:34 +01:00
|
|
|
|
len = fdctrl->data_pos - start_pos;
|
|
|
|
|
FLOPPY_DPRINTF("end transfer %d %d %d\n",
|
2007-11-05 04:11:37 +01:00
|
|
|
|
fdctrl->data_pos, len, fdctrl->data_len);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
if (fdctrl->data_dir == FD_DIR_SCANE ||
|
|
|
|
|
fdctrl->data_dir == FD_DIR_SCANL ||
|
|
|
|
|
fdctrl->data_dir == FD_DIR_SCANH)
|
2008-04-29 18:17:08 +02:00
|
|
|
|
status2 = FD_SR2_SEH;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
if (FD_DID_SEEK(fdctrl->data_state))
|
2008-02-29 20:24:00 +01:00
|
|
|
|
status0 |= FD_SR0_SEEK;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl->data_len -= len;
|
2004-10-08 01:10:29 +02:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, status0, status1, status2);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
transfer_error:
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
return len;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Data register : 0x05 */
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static uint32_t fdctrl_read_data (fdctrl_t *fdctrl)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdrive_t *cur_drv;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
uint32_t retval = 0;
|
2008-04-29 18:13:36 +02:00
|
|
|
|
int pos;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
cur_drv = get_cur_drv(fdctrl);
|
2008-04-29 18:16:30 +02:00
|
|
|
|
fdctrl->dsr &= ~FD_DSR_PWRDOWN;
|
|
|
|
|
if (!(fdctrl->msr & FD_MSR_RQM) || !(fdctrl->msr & FD_MSR_DIO)) {
|
|
|
|
|
FLOPPY_ERROR("controller not ready for reading\n");
|
2004-01-05 01:09:06 +01:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
2004-03-20 00:05:34 +01:00
|
|
|
|
pos = fdctrl->data_pos;
|
2008-04-29 18:15:12 +02:00
|
|
|
|
if (fdctrl->msr & FD_MSR_NONDMA) {
|
2004-01-05 01:09:06 +01:00
|
|
|
|
pos %= FD_SECTOR_LEN;
|
|
|
|
|
if (pos == 0) {
|
2008-04-29 18:13:36 +02:00
|
|
|
|
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;
|
|
|
|
|
}
|
2008-04-29 18:17:08 +02:00
|
|
|
|
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);
|
|
|
|
|
}
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2004-03-20 00:05:34 +01:00
|
|
|
|
retval = fdctrl->fifo[pos];
|
|
|
|
|
if (++fdctrl->data_pos == fdctrl->data_len) {
|
|
|
|
|
fdctrl->data_pos = 0;
|
2004-10-08 01:10:29 +02:00
|
|
|
|
/* Switch from transfer mode to status mode
|
2004-01-05 01:09:06 +01:00
|
|
|
|
* then from status mode to command mode
|
|
|
|
|
*/
|
2008-04-29 18:15:12 +02:00
|
|
|
|
if (fdctrl->msr & FD_MSR_NONDMA) {
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
|
2004-05-08 15:14:18 +02:00
|
|
|
|
} else {
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl_reset_fifo(fdctrl);
|
2004-05-08 15:14:18 +02:00
|
|
|
|
fdctrl_reset_irq(fdctrl);
|
|
|
|
|
}
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
FLOPPY_DPRINTF("data register: 0x%02x\n", retval);
|
|
|
|
|
|
|
|
|
|
return retval;
|
|
|
|
|
}
|
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static void fdctrl_format_sector (fdctrl_t *fdctrl)
|
2004-01-05 01:09:06 +01:00
|
|
|
|
{
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdrive_t *cur_drv;
|
|
|
|
|
uint8_t kh, kt, ks;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
|
2008-04-29 18:18:58 +02:00
|
|
|
|
SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
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",
|
2008-04-29 18:18:58 +02:00
|
|
|
|
GET_CUR_DRV(fdctrl), kh, kt, ks,
|
2004-03-20 00:05:34 +01:00
|
|
|
|
_fd_sector(kh, kt, ks, cur_drv->last_sect));
|
2008-02-29 20:24:00 +01:00
|
|
|
|
switch (fd_seek(cur_drv, kh, kt, ks, fdctrl->config & FD_CONFIG_EIS)) {
|
2004-03-20 00:05:34 +01:00
|
|
|
|
case 2:
|
|
|
|
|
/* sect too big */
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl->fifo[3] = kt;
|
|
|
|
|
fdctrl->fifo[4] = kh;
|
|
|
|
|
fdctrl->fifo[5] = ks;
|
|
|
|
|
return;
|
|
|
|
|
case 3:
|
|
|
|
|
/* track too big */
|
2008-04-29 18:17:08 +02:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, FD_SR1_EC, 0x00);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl->fifo[3] = kt;
|
|
|
|
|
fdctrl->fifo[4] = kh;
|
|
|
|
|
fdctrl->fifo[5] = ks;
|
|
|
|
|
return;
|
|
|
|
|
case 4:
|
|
|
|
|
/* No seek enabled */
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
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) {
|
2007-07-12 00:50:53 +02:00
|
|
|
|
FLOPPY_ERROR("formatting sector %d\n", fd_sector(cur_drv));
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
|
2004-03-20 00:05:34 +01:00
|
|
|
|
} else {
|
2007-11-05 04:11:37 +01:00
|
|
|
|
if (cur_drv->sect == cur_drv->last_sect) {
|
|
|
|
|
fdctrl->data_state &= ~FD_STATE_FORMAT;
|
|
|
|
|
/* Last sector done */
|
|
|
|
|
if (FD_DID_SEEK(fdctrl->data_state))
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
else
|
|
|
|
|
fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
|
|
|
|
|
} else {
|
|
|
|
|
/* More to do */
|
|
|
|
|
fdctrl->data_pos = 0;
|
|
|
|
|
fdctrl->data_len = 4;
|
|
|
|
|
}
|
2004-03-20 00:05:34 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-08 19:18:53 +02:00
|
|
|
|
static void fdctrl_handle_lock (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdctrl->lock = (fdctrl->fifo[0] & 0x80) ? 1 : 0;
|
|
|
|
|
fdctrl->fifo[0] = fdctrl->lock << 4;
|
|
|
|
|
fdctrl_set_fifo(fdctrl, 1, fdctrl->lock);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_dumpreg (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdrive_t *cur_drv = get_cur_drv(fdctrl);
|
|
|
|
|
|
|
|
|
|
/* Drives position */
|
|
|
|
|
fdctrl->fifo[0] = drv0(fdctrl)->track;
|
|
|
|
|
fdctrl->fifo[1] = drv1(fdctrl)->track;
|
2008-04-29 18:18:26 +02:00
|
|
|
|
#if MAX_FD == 4
|
|
|
|
|
fdctrl->fifo[2] = drv2(fdctrl)->track;
|
|
|
|
|
fdctrl->fifo[3] = drv3(fdctrl)->track;
|
|
|
|
|
#else
|
2008-04-08 19:18:53 +02:00
|
|
|
|
fdctrl->fifo[2] = 0;
|
|
|
|
|
fdctrl->fifo[3] = 0;
|
2008-04-29 18:18:26 +02:00
|
|
|
|
#endif
|
2008-04-08 19:18:53 +02:00
|
|
|
|
/* timers */
|
|
|
|
|
fdctrl->fifo[4] = fdctrl->timer0;
|
2008-04-29 18:15:12 +02:00
|
|
|
|
fdctrl->fifo[5] = (fdctrl->timer1 << 1) | (fdctrl->dor & FD_DOR_DMAEN ? 1 : 0);
|
2008-04-08 19:18:53 +02:00
|
|
|
|
fdctrl->fifo[6] = cur_drv->last_sect;
|
|
|
|
|
fdctrl->fifo[7] = (fdctrl->lock << 7) |
|
|
|
|
|
(cur_drv->perpendicular << 2);
|
|
|
|
|
fdctrl->fifo[8] = fdctrl->config;
|
|
|
|
|
fdctrl->fifo[9] = fdctrl->precomp_trk;
|
|
|
|
|
fdctrl_set_fifo(fdctrl, 10, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_version (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
/* Controller's version */
|
|
|
|
|
fdctrl->fifo[0] = fdctrl->version;
|
|
|
|
|
fdctrl_set_fifo(fdctrl, 1, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_partid (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdctrl->fifo[0] = 0x41; /* Stepping 1 */
|
|
|
|
|
fdctrl_set_fifo(fdctrl, 1, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_restore (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdrive_t *cur_drv = get_cur_drv(fdctrl);
|
|
|
|
|
|
|
|
|
|
/* Drives position */
|
|
|
|
|
drv0(fdctrl)->track = fdctrl->fifo[3];
|
|
|
|
|
drv1(fdctrl)->track = fdctrl->fifo[4];
|
2008-04-29 18:18:26 +02:00
|
|
|
|
#if MAX_FD == 4
|
|
|
|
|
drv2(fdctrl)->track = fdctrl->fifo[5];
|
|
|
|
|
drv3(fdctrl)->track = fdctrl->fifo[6];
|
|
|
|
|
#endif
|
2008-04-08 19:18:53 +02:00
|
|
|
|
/* timers */
|
|
|
|
|
fdctrl->timer0 = fdctrl->fifo[7];
|
|
|
|
|
fdctrl->timer1 = fdctrl->fifo[8];
|
|
|
|
|
cur_drv->last_sect = fdctrl->fifo[9];
|
|
|
|
|
fdctrl->lock = fdctrl->fifo[10] >> 7;
|
|
|
|
|
cur_drv->perpendicular = (fdctrl->fifo[10] >> 2) & 0xF;
|
|
|
|
|
fdctrl->config = fdctrl->fifo[11];
|
|
|
|
|
fdctrl->precomp_trk = fdctrl->fifo[12];
|
|
|
|
|
fdctrl->pwrd = fdctrl->fifo[13];
|
|
|
|
|
fdctrl_reset_fifo(fdctrl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_save (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdrive_t *cur_drv = get_cur_drv(fdctrl);
|
|
|
|
|
|
|
|
|
|
fdctrl->fifo[0] = 0;
|
|
|
|
|
fdctrl->fifo[1] = 0;
|
|
|
|
|
/* Drives position */
|
|
|
|
|
fdctrl->fifo[2] = drv0(fdctrl)->track;
|
|
|
|
|
fdctrl->fifo[3] = drv1(fdctrl)->track;
|
2008-04-29 18:18:26 +02:00
|
|
|
|
#if MAX_FD == 4
|
|
|
|
|
fdctrl->fifo[4] = drv2(fdctrl)->track;
|
|
|
|
|
fdctrl->fifo[5] = drv3(fdctrl)->track;
|
|
|
|
|
#else
|
2008-04-08 19:18:53 +02:00
|
|
|
|
fdctrl->fifo[4] = 0;
|
|
|
|
|
fdctrl->fifo[5] = 0;
|
2008-04-29 18:18:26 +02:00
|
|
|
|
#endif
|
2008-04-08 19:18:53 +02:00
|
|
|
|
/* timers */
|
|
|
|
|
fdctrl->fifo[6] = fdctrl->timer0;
|
|
|
|
|
fdctrl->fifo[7] = fdctrl->timer1;
|
|
|
|
|
fdctrl->fifo[8] = cur_drv->last_sect;
|
|
|
|
|
fdctrl->fifo[9] = (fdctrl->lock << 7) |
|
|
|
|
|
(cur_drv->perpendicular << 2);
|
|
|
|
|
fdctrl->fifo[10] = fdctrl->config;
|
|
|
|
|
fdctrl->fifo[11] = fdctrl->precomp_trk;
|
|
|
|
|
fdctrl->fifo[12] = fdctrl->pwrd;
|
|
|
|
|
fdctrl->fifo[13] = 0;
|
|
|
|
|
fdctrl->fifo[14] = 0;
|
|
|
|
|
fdctrl_set_fifo(fdctrl, 15, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_readid (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdrive_t *cur_drv = get_cur_drv(fdctrl);
|
|
|
|
|
|
|
|
|
|
/* XXX: should set main status register to busy */
|
|
|
|
|
cur_drv->head = (fdctrl->fifo[1] >> 2) & 1;
|
|
|
|
|
qemu_mod_timer(fdctrl->result_timer,
|
|
|
|
|
qemu_get_clock(vm_clock) + (ticks_per_sec / 50));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_format_track (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdrive_t *cur_drv;
|
|
|
|
|
|
2008-04-29 18:18:58 +02:00
|
|
|
|
SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
|
2008-04-08 19:18:53 +02:00
|
|
|
|
cur_drv = get_cur_drv(fdctrl);
|
|
|
|
|
fdctrl->data_state |= FD_STATE_FORMAT;
|
|
|
|
|
if (fdctrl->fifo[0] & 0x80)
|
|
|
|
|
fdctrl->data_state |= FD_STATE_MULTI;
|
|
|
|
|
else
|
|
|
|
|
fdctrl->data_state &= ~FD_STATE_MULTI;
|
|
|
|
|
fdctrl->data_state &= ~FD_STATE_SEEK;
|
|
|
|
|
cur_drv->bps =
|
|
|
|
|
fdctrl->fifo[2] > 7 ? 16384 : 128 << fdctrl->fifo[2];
|
|
|
|
|
#if 0
|
|
|
|
|
cur_drv->last_sect =
|
|
|
|
|
cur_drv->flags & FDISK_DBL_SIDES ? fdctrl->fifo[3] :
|
|
|
|
|
fdctrl->fifo[3] / 2;
|
|
|
|
|
#else
|
|
|
|
|
cur_drv->last_sect = fdctrl->fifo[3];
|
|
|
|
|
#endif
|
|
|
|
|
/* TODO: implement format using DMA expected by the Bochs BIOS
|
|
|
|
|
* and Linux fdformat (read 3 bytes per sector via DMA and fill
|
|
|
|
|
* the sector with the specified fill byte
|
|
|
|
|
*/
|
|
|
|
|
fdctrl->data_state &= ~FD_STATE_FORMAT;
|
|
|
|
|
fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_specify (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdctrl->timer0 = (fdctrl->fifo[1] >> 4) & 0xF;
|
|
|
|
|
fdctrl->timer1 = fdctrl->fifo[2] >> 1;
|
2008-04-29 18:15:12 +02:00
|
|
|
|
if (fdctrl->fifo[2] & 1)
|
|
|
|
|
fdctrl->dor &= ~FD_DOR_DMAEN;
|
|
|
|
|
else
|
|
|
|
|
fdctrl->dor |= FD_DOR_DMAEN;
|
2008-04-08 19:18:53 +02:00
|
|
|
|
/* No result back */
|
|
|
|
|
fdctrl_reset_fifo(fdctrl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_sense_drive_status (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdrive_t *cur_drv;
|
|
|
|
|
|
2008-04-29 18:18:58 +02:00
|
|
|
|
SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
|
2008-04-08 19:18:53 +02:00
|
|
|
|
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) |
|
2008-04-29 18:18:58 +02:00
|
|
|
|
GET_CUR_DRV(fdctrl) |
|
2008-04-08 19:18:53 +02:00
|
|
|
|
0x28;
|
|
|
|
|
fdctrl_set_fifo(fdctrl, 1, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_recalibrate (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdrive_t *cur_drv;
|
|
|
|
|
|
2008-04-29 18:18:58 +02:00
|
|
|
|
SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
|
2008-04-08 19:18:53 +02:00
|
|
|
|
cur_drv = get_cur_drv(fdctrl);
|
|
|
|
|
fd_recalibrate(cur_drv);
|
|
|
|
|
fdctrl_reset_fifo(fdctrl);
|
|
|
|
|
/* Raise Interrupt */
|
|
|
|
|
fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_sense_interrupt_status (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdrive_t *cur_drv = get_cur_drv(fdctrl);
|
|
|
|
|
|
2009-01-24 13:09:52 +01:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-08 19:18:53 +02:00
|
|
|
|
fdctrl->fifo[1] = cur_drv->track;
|
|
|
|
|
fdctrl_set_fifo(fdctrl, 2, 0);
|
|
|
|
|
fdctrl_reset_irq(fdctrl);
|
2008-04-29 18:17:08 +02:00
|
|
|
|
fdctrl->status0 = FD_SR0_RDYCHG;
|
2008-04-08 19:18:53 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_seek (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdrive_t *cur_drv;
|
|
|
|
|
|
2008-04-29 18:18:58 +02:00
|
|
|
|
SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
|
2008-04-08 19:18:53 +02:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_perpendicular_mode (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdrive_t *cur_drv = get_cur_drv(fdctrl);
|
|
|
|
|
|
|
|
|
|
if (fdctrl->fifo[1] & 0x80)
|
|
|
|
|
cur_drv->perpendicular = fdctrl->fifo[1] & 0x7;
|
|
|
|
|
/* No result back */
|
2008-04-29 18:15:53 +02:00
|
|
|
|
fdctrl_reset_fifo(fdctrl);
|
2008-04-08 19:18:53 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_configure (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdctrl->config = fdctrl->fifo[2];
|
|
|
|
|
fdctrl->precomp_trk = fdctrl->fifo[3];
|
|
|
|
|
/* No result back */
|
|
|
|
|
fdctrl_reset_fifo(fdctrl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_powerdown_mode (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdctrl->pwrd = fdctrl->fifo[1];
|
|
|
|
|
fdctrl->fifo[0] = fdctrl->fifo[1];
|
|
|
|
|
fdctrl_set_fifo(fdctrl, 1, 1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_option (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
/* No result back */
|
|
|
|
|
fdctrl_reset_fifo(fdctrl);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_drive_specification_command (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
|
|
|
|
fdrive_t *cur_drv = get_cur_drv(fdctrl);
|
|
|
|
|
|
|
|
|
|
if (fdctrl->fifo[fdctrl->data_pos - 1] & 0x80) {
|
|
|
|
|
/* Command parameters done */
|
|
|
|
|
if (fdctrl->fifo[fdctrl->data_pos - 1] & 0x40) {
|
|
|
|
|
fdctrl->fifo[0] = fdctrl->fifo[1];
|
|
|
|
|
fdctrl->fifo[2] = 0;
|
|
|
|
|
fdctrl->fifo[3] = 0;
|
|
|
|
|
fdctrl_set_fifo(fdctrl, 4, 1);
|
|
|
|
|
} else {
|
|
|
|
|
fdctrl_reset_fifo(fdctrl);
|
|
|
|
|
}
|
|
|
|
|
} else if (fdctrl->data_len > 7) {
|
|
|
|
|
/* ERROR */
|
|
|
|
|
fdctrl->fifo[0] = 0x80 |
|
2008-04-29 18:18:58 +02:00
|
|
|
|
(cur_drv->head << 2) | GET_CUR_DRV(fdctrl);
|
2008-04-08 19:18:53 +02:00
|
|
|
|
fdctrl_set_fifo(fdctrl, 1, 1);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_relative_seek_out (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
2008-04-29 18:17:08 +02:00
|
|
|
|
fdrive_t *cur_drv;
|
2008-04-08 19:18:53 +02:00
|
|
|
|
|
2008-04-29 18:18:58 +02:00
|
|
|
|
SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
|
2008-04-08 19:18:53 +02:00
|
|
|
|
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);
|
2008-04-29 18:17:08 +02:00
|
|
|
|
/* Raise Interrupt */
|
2008-04-08 19:18:53 +02:00
|
|
|
|
fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void fdctrl_handle_relative_seek_in (fdctrl_t *fdctrl, int direction)
|
|
|
|
|
{
|
2008-04-29 18:17:08 +02:00
|
|
|
|
fdrive_t *cur_drv;
|
2008-04-08 19:18:53 +02:00
|
|
|
|
|
2008-04-29 18:18:58 +02:00
|
|
|
|
SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
|
2008-04-08 19:18:53 +02:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2008-04-29 18:12:30 +02:00
|
|
|
|
static const struct {
|
|
|
|
|
uint8_t value;
|
|
|
|
|
uint8_t mask;
|
|
|
|
|
const char* name;
|
|
|
|
|
int parameters;
|
|
|
|
|
void (*handler)(fdctrl_t *fdctrl, int direction);
|
|
|
|
|
int direction;
|
|
|
|
|
} handlers[] = {
|
|
|
|
|
{ FD_CMD_READ, 0x1f, "READ", 8, fdctrl_start_transfer, FD_DIR_READ },
|
|
|
|
|
{ FD_CMD_WRITE, 0x3f, "WRITE", 8, fdctrl_start_transfer, FD_DIR_WRITE },
|
|
|
|
|
{ FD_CMD_SEEK, 0xff, "SEEK", 2, fdctrl_handle_seek },
|
|
|
|
|
{ FD_CMD_SENSE_INTERRUPT_STATUS, 0xff, "SENSE INTERRUPT STATUS", 0, fdctrl_handle_sense_interrupt_status },
|
|
|
|
|
{ FD_CMD_RECALIBRATE, 0xff, "RECALIBRATE", 1, fdctrl_handle_recalibrate },
|
|
|
|
|
{ FD_CMD_FORMAT_TRACK, 0xbf, "FORMAT TRACK", 5, fdctrl_handle_format_track },
|
|
|
|
|
{ FD_CMD_READ_TRACK, 0xbf, "READ TRACK", 8, fdctrl_start_transfer, FD_DIR_READ },
|
|
|
|
|
{ FD_CMD_RESTORE, 0xff, "RESTORE", 17, fdctrl_handle_restore }, /* part of READ DELETED DATA */
|
|
|
|
|
{ FD_CMD_SAVE, 0xff, "SAVE", 0, fdctrl_handle_save }, /* part of READ DELETED DATA */
|
|
|
|
|
{ FD_CMD_READ_DELETED, 0x1f, "READ DELETED DATA", 8, fdctrl_start_transfer_del, FD_DIR_READ },
|
|
|
|
|
{ FD_CMD_SCAN_EQUAL, 0x1f, "SCAN EQUAL", 8, fdctrl_start_transfer, FD_DIR_SCANE },
|
|
|
|
|
{ FD_CMD_VERIFY, 0x1f, "VERIFY", 8, fdctrl_unimplemented },
|
|
|
|
|
{ FD_CMD_SCAN_LOW_OR_EQUAL, 0x1f, "SCAN LOW OR EQUAL", 8, fdctrl_start_transfer, FD_DIR_SCANL },
|
|
|
|
|
{ FD_CMD_SCAN_HIGH_OR_EQUAL, 0x1f, "SCAN HIGH OR EQUAL", 8, fdctrl_start_transfer, FD_DIR_SCANH },
|
|
|
|
|
{ FD_CMD_WRITE_DELETED, 0x3f, "WRITE DELETED DATA", 8, fdctrl_start_transfer_del, FD_DIR_WRITE },
|
|
|
|
|
{ FD_CMD_READ_ID, 0xbf, "READ ID", 1, fdctrl_handle_readid },
|
|
|
|
|
{ FD_CMD_SPECIFY, 0xff, "SPECIFY", 2, fdctrl_handle_specify },
|
|
|
|
|
{ FD_CMD_SENSE_DRIVE_STATUS, 0xff, "SENSE DRIVE STATUS", 1, fdctrl_handle_sense_drive_status },
|
|
|
|
|
{ FD_CMD_PERPENDICULAR_MODE, 0xff, "PERPENDICULAR MODE", 1, fdctrl_handle_perpendicular_mode },
|
|
|
|
|
{ FD_CMD_CONFIGURE, 0xff, "CONFIGURE", 3, fdctrl_handle_configure },
|
|
|
|
|
{ FD_CMD_POWERDOWN_MODE, 0xff, "POWERDOWN MODE", 2, fdctrl_handle_powerdown_mode },
|
|
|
|
|
{ FD_CMD_OPTION, 0xff, "OPTION", 1, fdctrl_handle_option },
|
|
|
|
|
{ FD_CMD_DRIVE_SPECIFICATION_COMMAND, 0xff, "DRIVE SPECIFICATION COMMAND", 5, fdctrl_handle_drive_specification_command },
|
|
|
|
|
{ FD_CMD_RELATIVE_SEEK_OUT, 0xff, "RELATIVE SEEK OUT", 2, fdctrl_handle_relative_seek_out },
|
|
|
|
|
{ FD_CMD_FORMAT_AND_WRITE, 0xff, "FORMAT AND WRITE", 10, fdctrl_unimplemented },
|
|
|
|
|
{ FD_CMD_RELATIVE_SEEK_IN, 0xff, "RELATIVE SEEK IN", 2, fdctrl_handle_relative_seek_in },
|
|
|
|
|
{ FD_CMD_LOCK, 0x7f, "LOCK", 0, fdctrl_handle_lock },
|
|
|
|
|
{ FD_CMD_DUMPREG, 0xff, "DUMPREG", 0, fdctrl_handle_dumpreg },
|
|
|
|
|
{ FD_CMD_VERSION, 0xff, "VERSION", 0, fdctrl_handle_version },
|
|
|
|
|
{ FD_CMD_PART_ID, 0xff, "PART ID", 0, fdctrl_handle_partid },
|
|
|
|
|
{ FD_CMD_WRITE, 0x1f, "WRITE (BeOS)", 8, fdctrl_start_transfer, FD_DIR_WRITE }, /* not in specification ; BeOS 4.5 bug */
|
|
|
|
|
{ 0, 0, "unknown", 0, fdctrl_unimplemented }, /* default handler */
|
|
|
|
|
};
|
|
|
|
|
/* Associate command to an index in the 'handlers' array */
|
|
|
|
|
static uint8_t command_to_handler[256];
|
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
static void fdctrl_write_data (fdctrl_t *fdctrl, uint32_t value)
|
|
|
|
|
{
|
|
|
|
|
fdrive_t *cur_drv;
|
2008-04-08 19:18:53 +02:00
|
|
|
|
int pos;
|
2004-03-20 00:05:34 +01:00
|
|
|
|
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Reset mode */
|
2008-04-29 18:15:53 +02:00
|
|
|
|
if (!(fdctrl->dor & FD_DOR_nRESET)) {
|
2004-10-09 18:44:33 +02:00
|
|
|
|
FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
|
2004-01-05 01:09:06 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
2008-04-29 18:16:30 +02:00
|
|
|
|
if (!(fdctrl->msr & FD_MSR_RQM) || (fdctrl->msr & FD_MSR_DIO)) {
|
|
|
|
|
FLOPPY_ERROR("controller not ready for writing\n");
|
2004-01-05 01:09:06 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
2008-04-29 18:16:30 +02:00
|
|
|
|
fdctrl->dsr &= ~FD_DSR_PWRDOWN;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Is it write command time ? */
|
2008-04-29 18:15:12 +02:00
|
|
|
|
if (fdctrl->msr & FD_MSR_NONDMA) {
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* FIFO data write */
|
2008-05-01 21:03:31 +02:00
|
|
|
|
pos = fdctrl->data_pos++;
|
|
|
|
|
pos %= FD_SECTOR_LEN;
|
|
|
|
|
fdctrl->fifo[pos] = value;
|
|
|
|
|
if (pos == FD_SECTOR_LEN - 1 ||
|
2004-03-20 00:05:34 +01:00
|
|
|
|
fdctrl->data_pos == fdctrl->data_len) {
|
2008-04-29 18:17:08 +02:00
|
|
|
|
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;
|
|
|
|
|
}
|
2008-04-29 18:13:36 +02:00
|
|
|
|
if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv)) {
|
|
|
|
|
FLOPPY_DPRINTF("error seeking to next sector %d\n",
|
|
|
|
|
fd_sector(cur_drv));
|
|
|
|
|
return;
|
|
|
|
|
}
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
2004-10-08 01:10:29 +02:00
|
|
|
|
/* Switch from transfer mode to status mode
|
2004-01-05 01:09:06 +01:00
|
|
|
|
* then from status mode to command mode
|
|
|
|
|
*/
|
2008-04-29 18:16:30 +02:00
|
|
|
|
if (fdctrl->data_pos == fdctrl->data_len)
|
2008-02-29 20:24:00 +01:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
2004-03-20 00:05:34 +01:00
|
|
|
|
if (fdctrl->data_pos == 0) {
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* Command */
|
2008-04-29 18:12:30 +02:00
|
|
|
|
pos = command_to_handler[value & 0xff];
|
|
|
|
|
FLOPPY_DPRINTF("%s command\n", handlers[pos].name);
|
|
|
|
|
fdctrl->data_len = handlers[pos].parameters + 1;
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
2008-04-29 18:12:30 +02:00
|
|
|
|
|
2004-03-20 00:05:34 +01:00
|
|
|
|
FLOPPY_DPRINTF("%s: %02x\n", __func__, value);
|
2008-04-29 18:17:08 +02:00
|
|
|
|
fdctrl->fifo[fdctrl->data_pos++] = value;
|
|
|
|
|
if (fdctrl->data_pos == fdctrl->data_len) {
|
2004-01-05 01:09:06 +01:00
|
|
|
|
/* We now have all parameters
|
|
|
|
|
* and will be able to treat the command
|
|
|
|
|
*/
|
2007-11-05 04:11:37 +01:00
|
|
|
|
if (fdctrl->data_state & FD_STATE_FORMAT) {
|
|
|
|
|
fdctrl_format_sector(fdctrl);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
return;
|
|
|
|
|
}
|
2008-04-08 19:18:53 +02:00
|
|
|
|
|
2008-04-29 18:12:30 +02:00
|
|
|
|
pos = command_to_handler[fdctrl->fifo[0] & 0xff];
|
|
|
|
|
FLOPPY_DPRINTF("treat %s command\n", handlers[pos].name);
|
|
|
|
|
(*handlers[pos].handler)(fdctrl, handlers[pos].direction);
|
2004-01-05 01:09:06 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2004-05-08 15:14:18 +02:00
|
|
|
|
|
|
|
|
|
static void fdctrl_result_timer(void *opaque)
|
|
|
|
|
{
|
|
|
|
|
fdctrl_t *fdctrl = opaque;
|
2007-09-13 14:40:37 +02:00
|
|
|
|
fdrive_t *cur_drv = get_cur_drv(fdctrl);
|
2007-11-05 04:11:37 +01:00
|
|
|
|
|
2007-09-13 14:40:37 +02:00
|
|
|
|
/* 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;
|
|
|
|
|
}
|
2004-05-08 15:14:18 +02:00
|
|
|
|
fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
|
|
|
|
|
}
|
2008-04-29 18:12:30 +02:00
|
|
|
|
|
|
|
|
|
/* Init functions */
|
|
|
|
|
static fdctrl_t *fdctrl_init_common (qemu_irq irq, int dma_chann,
|
|
|
|
|
target_phys_addr_t io_base,
|
|
|
|
|
BlockDriverState **fds)
|
|
|
|
|
{
|
|
|
|
|
fdctrl_t *fdctrl;
|
|
|
|
|
int i, j;
|
|
|
|
|
|
|
|
|
|
/* Fill 'command_to_handler' lookup table */
|
2008-12-22 21:33:55 +01:00
|
|
|
|
for (i = ARRAY_SIZE(handlers) - 1; i >= 0; i--) {
|
2008-04-29 18:12:30 +02:00
|
|
|
|
for (j = 0; j < sizeof(command_to_handler); j++) {
|
|
|
|
|
if ((j & handlers[i].mask) == handlers[i].value)
|
|
|
|
|
command_to_handler[j] = i;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
FLOPPY_DPRINTF("init controller\n");
|
|
|
|
|
fdctrl = qemu_mallocz(sizeof(fdctrl_t));
|
|
|
|
|
fdctrl->fifo = qemu_memalign(512, FD_SECTOR_LEN);
|
|
|
|
|
fdctrl->result_timer = qemu_new_timer(vm_clock,
|
|
|
|
|
fdctrl_result_timer, fdctrl);
|
|
|
|
|
|
|
|
|
|
fdctrl->version = 0x90; /* Intel 82078 controller */
|
|
|
|
|
fdctrl->irq = irq;
|
|
|
|
|
fdctrl->dma_chann = dma_chann;
|
|
|
|
|
fdctrl->io_base = io_base;
|
|
|
|
|
fdctrl->config = FD_CONFIG_EIS | FD_CONFIG_EFIFO; /* Implicit seek, polling & FIFO enabled */
|
|
|
|
|
if (fdctrl->dma_chann != -1) {
|
|
|
|
|
DMA_register_channel(dma_chann, &fdctrl_transfer_handler, fdctrl);
|
|
|
|
|
}
|
|
|
|
|
for (i = 0; i < MAX_FD; i++) {
|
|
|
|
|
fd_init(&fdctrl->drives[i], fds[i]);
|
|
|
|
|
}
|
2008-04-29 18:17:08 +02:00
|
|
|
|
fdctrl_external_reset(fdctrl);
|
|
|
|
|
register_savevm("fdc", io_base, 2, fdc_save, fdc_load, fdctrl);
|
2009-05-02 00:29:37 +02:00
|
|
|
|
qemu_register_reset(fdctrl_external_reset, 0, fdctrl);
|
2008-04-29 18:12:30 +02:00
|
|
|
|
for (i = 0; i < MAX_FD; i++) {
|
|
|
|
|
fd_revalidate(&fdctrl->drives[i]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return fdctrl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fdctrl_t *fdctrl_init (qemu_irq irq, int dma_chann, int mem_mapped,
|
|
|
|
|
target_phys_addr_t io_base,
|
|
|
|
|
BlockDriverState **fds)
|
|
|
|
|
{
|
|
|
|
|
fdctrl_t *fdctrl;
|
|
|
|
|
int io_mem;
|
|
|
|
|
|
|
|
|
|
fdctrl = fdctrl_init_common(irq, dma_chann, io_base, fds);
|
|
|
|
|
|
|
|
|
|
fdctrl->sun4m = 0;
|
|
|
|
|
if (mem_mapped) {
|
|
|
|
|
io_mem = cpu_register_io_memory(0, fdctrl_mem_read, fdctrl_mem_write,
|
|
|
|
|
fdctrl);
|
|
|
|
|
cpu_register_physical_memory(io_base, 0x08, io_mem);
|
|
|
|
|
} else {
|
2008-12-02 18:47:02 +01:00
|
|
|
|
register_ioport_read((uint32_t)io_base + 0x01, 5, 1,
|
|
|
|
|
&fdctrl_read_port, fdctrl);
|
|
|
|
|
register_ioport_read((uint32_t)io_base + 0x07, 1, 1,
|
|
|
|
|
&fdctrl_read_port, fdctrl);
|
|
|
|
|
register_ioport_write((uint32_t)io_base + 0x01, 5, 1,
|
|
|
|
|
&fdctrl_write_port, fdctrl);
|
|
|
|
|
register_ioport_write((uint32_t)io_base + 0x07, 1, 1,
|
|
|
|
|
&fdctrl_write_port, fdctrl);
|
2008-04-29 18:12:30 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return fdctrl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fdctrl_t *sun4m_fdctrl_init (qemu_irq irq, target_phys_addr_t io_base,
|
|
|
|
|
BlockDriverState **fds, qemu_irq *fdc_tc)
|
|
|
|
|
{
|
|
|
|
|
fdctrl_t *fdctrl;
|
|
|
|
|
int io_mem;
|
|
|
|
|
|
2008-04-29 18:15:12 +02:00
|
|
|
|
fdctrl = fdctrl_init_common(irq, -1, io_base, fds);
|
2008-04-29 18:12:30 +02:00
|
|
|
|
fdctrl->sun4m = 1;
|
|
|
|
|
io_mem = cpu_register_io_memory(0, fdctrl_mem_read_strict,
|
|
|
|
|
fdctrl_mem_write_strict,
|
|
|
|
|
fdctrl);
|
|
|
|
|
cpu_register_physical_memory(io_base, 0x08, io_mem);
|
|
|
|
|
*fdc_tc = *qemu_allocate_irqs(fdctrl_handle_tc, fdctrl, 1);
|
|
|
|
|
|
|
|
|
|
return fdctrl;
|
|
|
|
|
}
|