Fix 32-bit overflow in parallels image support
[qemu-kvm/fedora.git] / hw / fdc.c
blob4ad5e5ee816bc9c4069f8893a174f0f77e73c764
1 /*
2 * QEMU Floppy disk emulator (Intel 82078)
4 * Copyright (c) 2003, 2007 Jocelyn Mayer
5 * Copyright (c) 2008 Hervé Poussineau
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
26 * The controller is used in Sun4m systems in a slightly different
27 * way. There are changes in DOR register and DMA is not available.
30 #include "hw.h"
31 #include "fdc.h"
32 #include "block.h"
33 #include "qemu-timer.h"
34 #include "isa.h"
35 #include "sysbus.h"
36 #include "qdev-addr.h"
38 /********************************************************/
39 /* debug Floppy devices */
40 //#define DEBUG_FLOPPY
42 #ifdef DEBUG_FLOPPY
43 #define FLOPPY_DPRINTF(fmt, ...) \
44 do { printf("FLOPPY: " fmt , ## __VA_ARGS__); } while (0)
45 #else
46 #define FLOPPY_DPRINTF(fmt, ...)
47 #endif
49 #define FLOPPY_ERROR(fmt, ...) \
50 do { printf("FLOPPY ERROR: %s: " fmt, __func__ , ## __VA_ARGS__); } while (0)
52 /********************************************************/
53 /* Floppy drive emulation */
55 #define GET_CUR_DRV(fdctrl) ((fdctrl)->cur_drv)
56 #define SET_CUR_DRV(fdctrl, drive) ((fdctrl)->cur_drv = (drive))
58 /* Will always be a fixed parameter for us */
59 #define FD_SECTOR_LEN 512
60 #define FD_SECTOR_SC 2 /* Sector size code */
61 #define FD_RESET_SENSEI_COUNT 4 /* Number of sense interrupts on RESET */
63 /* Floppy disk drive emulation */
64 typedef enum fdisk_type_t {
65 FDRIVE_DISK_288 = 0x01, /* 2.88 MB disk */
66 FDRIVE_DISK_144 = 0x02, /* 1.44 MB disk */
67 FDRIVE_DISK_720 = 0x03, /* 720 kB disk */
68 FDRIVE_DISK_USER = 0x04, /* User defined geometry */
69 FDRIVE_DISK_NONE = 0x05, /* No disk */
70 } fdisk_type_t;
72 typedef enum fdrive_type_t {
73 FDRIVE_DRV_144 = 0x00, /* 1.44 MB 3"5 drive */
74 FDRIVE_DRV_288 = 0x01, /* 2.88 MB 3"5 drive */
75 FDRIVE_DRV_120 = 0x02, /* 1.2 MB 5"25 drive */
76 FDRIVE_DRV_NONE = 0x03, /* No drive connected */
77 } fdrive_type_t;
79 typedef enum fdisk_flags_t {
80 FDISK_DBL_SIDES = 0x01,
81 } fdisk_flags_t;
83 typedef struct fdrive_t {
84 BlockDriverState *bs;
85 /* Drive status */
86 fdrive_type_t drive;
87 uint8_t perpendicular; /* 2.88 MB access mode */
88 /* Position */
89 uint8_t head;
90 uint8_t track;
91 uint8_t sect;
92 /* Media */
93 fdisk_flags_t flags;
94 uint8_t last_sect; /* Nb sector per track */
95 uint8_t max_track; /* Nb of tracks */
96 uint16_t bps; /* Bytes per sector */
97 uint8_t ro; /* Is read-only */
98 } fdrive_t;
100 static void fd_init (fdrive_t *drv, BlockDriverState *bs)
102 /* Drive */
103 drv->bs = bs;
104 drv->drive = FDRIVE_DRV_NONE;
105 drv->perpendicular = 0;
106 /* Disk */
107 drv->last_sect = 0;
108 drv->max_track = 0;
111 static int _fd_sector (uint8_t head, uint8_t track,
112 uint8_t sect, uint8_t last_sect)
114 return (((track * 2) + head) * last_sect) + sect - 1;
117 /* Returns current position, in sectors, for given drive */
118 static int fd_sector (fdrive_t *drv)
120 return _fd_sector(drv->head, drv->track, drv->sect, drv->last_sect);
123 /* Seek to a new position:
124 * returns 0 if already on right track
125 * returns 1 if track changed
126 * returns 2 if track is invalid
127 * returns 3 if sector is invalid
128 * returns 4 if seek is disabled
130 static int fd_seek (fdrive_t *drv, uint8_t head, uint8_t track, uint8_t sect,
131 int enable_seek)
133 uint32_t sector;
134 int ret;
136 if (track > drv->max_track ||
137 (head != 0 && (drv->flags & FDISK_DBL_SIDES) == 0)) {
138 FLOPPY_DPRINTF("try to read %d %02x %02x (max=%d %d %02x %02x)\n",
139 head, track, sect, 1,
140 (drv->flags & FDISK_DBL_SIDES) == 0 ? 0 : 1,
141 drv->max_track, drv->last_sect);
142 return 2;
144 if (sect > drv->last_sect) {
145 FLOPPY_DPRINTF("try to read %d %02x %02x (max=%d %d %02x %02x)\n",
146 head, track, sect, 1,
147 (drv->flags & FDISK_DBL_SIDES) == 0 ? 0 : 1,
148 drv->max_track, drv->last_sect);
149 return 3;
151 sector = _fd_sector(head, track, sect, drv->last_sect);
152 ret = 0;
153 if (sector != fd_sector(drv)) {
154 #if 0
155 if (!enable_seek) {
156 FLOPPY_ERROR("no implicit seek %d %02x %02x (max=%d %02x %02x)\n",
157 head, track, sect, 1, drv->max_track, drv->last_sect);
158 return 4;
160 #endif
161 drv->head = head;
162 if (drv->track != track)
163 ret = 1;
164 drv->track = track;
165 drv->sect = sect;
168 return ret;
171 /* Set drive back to track 0 */
172 static void fd_recalibrate (fdrive_t *drv)
174 FLOPPY_DPRINTF("recalibrate\n");
175 drv->head = 0;
176 drv->track = 0;
177 drv->sect = 1;
180 /* Recognize floppy formats */
181 typedef struct fd_format_t {
182 fdrive_type_t drive;
183 fdisk_type_t disk;
184 uint8_t last_sect;
185 uint8_t max_track;
186 uint8_t max_head;
187 const char *str;
188 } fd_format_t;
190 static const fd_format_t fd_formats[] = {
191 /* First entry is default format */
192 /* 1.44 MB 3"1/2 floppy disks */
193 { FDRIVE_DRV_144, FDRIVE_DISK_144, 18, 80, 1, "1.44 MB 3\"1/2", },
194 { FDRIVE_DRV_144, FDRIVE_DISK_144, 20, 80, 1, "1.6 MB 3\"1/2", },
195 { FDRIVE_DRV_144, FDRIVE_DISK_144, 21, 80, 1, "1.68 MB 3\"1/2", },
196 { FDRIVE_DRV_144, FDRIVE_DISK_144, 21, 82, 1, "1.72 MB 3\"1/2", },
197 { FDRIVE_DRV_144, FDRIVE_DISK_144, 21, 83, 1, "1.74 MB 3\"1/2", },
198 { FDRIVE_DRV_144, FDRIVE_DISK_144, 22, 80, 1, "1.76 MB 3\"1/2", },
199 { FDRIVE_DRV_144, FDRIVE_DISK_144, 23, 80, 1, "1.84 MB 3\"1/2", },
200 { FDRIVE_DRV_144, FDRIVE_DISK_144, 24, 80, 1, "1.92 MB 3\"1/2", },
201 /* 2.88 MB 3"1/2 floppy disks */
202 { FDRIVE_DRV_288, FDRIVE_DISK_288, 36, 80, 1, "2.88 MB 3\"1/2", },
203 { FDRIVE_DRV_288, FDRIVE_DISK_288, 39, 80, 1, "3.12 MB 3\"1/2", },
204 { FDRIVE_DRV_288, FDRIVE_DISK_288, 40, 80, 1, "3.2 MB 3\"1/2", },
205 { FDRIVE_DRV_288, FDRIVE_DISK_288, 44, 80, 1, "3.52 MB 3\"1/2", },
206 { FDRIVE_DRV_288, FDRIVE_DISK_288, 48, 80, 1, "3.84 MB 3\"1/2", },
207 /* 720 kB 3"1/2 floppy disks */
208 { FDRIVE_DRV_144, FDRIVE_DISK_720, 9, 80, 1, "720 kB 3\"1/2", },
209 { FDRIVE_DRV_144, FDRIVE_DISK_720, 10, 80, 1, "800 kB 3\"1/2", },
210 { FDRIVE_DRV_144, FDRIVE_DISK_720, 10, 82, 1, "820 kB 3\"1/2", },
211 { FDRIVE_DRV_144, FDRIVE_DISK_720, 10, 83, 1, "830 kB 3\"1/2", },
212 { FDRIVE_DRV_144, FDRIVE_DISK_720, 13, 80, 1, "1.04 MB 3\"1/2", },
213 { FDRIVE_DRV_144, FDRIVE_DISK_720, 14, 80, 1, "1.12 MB 3\"1/2", },
214 /* 1.2 MB 5"1/4 floppy disks */
215 { FDRIVE_DRV_120, FDRIVE_DISK_288, 15, 80, 1, "1.2 kB 5\"1/4", },
216 { FDRIVE_DRV_120, FDRIVE_DISK_288, 18, 80, 1, "1.44 MB 5\"1/4", },
217 { FDRIVE_DRV_120, FDRIVE_DISK_288, 18, 82, 1, "1.48 MB 5\"1/4", },
218 { FDRIVE_DRV_120, FDRIVE_DISK_288, 18, 83, 1, "1.49 MB 5\"1/4", },
219 { FDRIVE_DRV_120, FDRIVE_DISK_288, 20, 80, 1, "1.6 MB 5\"1/4", },
220 /* 720 kB 5"1/4 floppy disks */
221 { FDRIVE_DRV_120, FDRIVE_DISK_288, 9, 80, 1, "720 kB 5\"1/4", },
222 { FDRIVE_DRV_120, FDRIVE_DISK_288, 11, 80, 1, "880 kB 5\"1/4", },
223 /* 360 kB 5"1/4 floppy disks */
224 { FDRIVE_DRV_120, FDRIVE_DISK_288, 9, 40, 1, "360 kB 5\"1/4", },
225 { FDRIVE_DRV_120, FDRIVE_DISK_288, 9, 40, 0, "180 kB 5\"1/4", },
226 { FDRIVE_DRV_120, FDRIVE_DISK_288, 10, 41, 1, "410 kB 5\"1/4", },
227 { FDRIVE_DRV_120, FDRIVE_DISK_288, 10, 42, 1, "420 kB 5\"1/4", },
228 /* 320 kB 5"1/4 floppy disks */
229 { FDRIVE_DRV_120, FDRIVE_DISK_288, 8, 40, 1, "320 kB 5\"1/4", },
230 { FDRIVE_DRV_120, FDRIVE_DISK_288, 8, 40, 0, "160 kB 5\"1/4", },
231 /* 360 kB must match 5"1/4 better than 3"1/2... */
232 { FDRIVE_DRV_144, FDRIVE_DISK_720, 9, 80, 0, "360 kB 3\"1/2", },
233 /* end */
234 { FDRIVE_DRV_NONE, FDRIVE_DISK_NONE, -1, -1, 0, NULL, },
237 /* Revalidate a disk drive after a disk change */
238 static void fd_revalidate (fdrive_t *drv)
240 const fd_format_t *parse;
241 uint64_t nb_sectors, size;
242 int i, first_match, match;
243 int nb_heads, max_track, last_sect, ro;
245 FLOPPY_DPRINTF("revalidate\n");
246 if (drv->bs != NULL && bdrv_is_inserted(drv->bs)) {
247 ro = bdrv_is_read_only(drv->bs);
248 bdrv_get_geometry_hint(drv->bs, &nb_heads, &max_track, &last_sect);
249 if (nb_heads != 0 && max_track != 0 && last_sect != 0) {
250 FLOPPY_DPRINTF("User defined disk (%d %d %d)",
251 nb_heads - 1, max_track, last_sect);
252 } else {
253 bdrv_get_geometry(drv->bs, &nb_sectors);
254 match = -1;
255 first_match = -1;
256 for (i = 0;; i++) {
257 parse = &fd_formats[i];
258 if (parse->drive == FDRIVE_DRV_NONE)
259 break;
260 if (drv->drive == parse->drive ||
261 drv->drive == FDRIVE_DRV_NONE) {
262 size = (parse->max_head + 1) * parse->max_track *
263 parse->last_sect;
264 if (nb_sectors == size) {
265 match = i;
266 break;
268 if (first_match == -1)
269 first_match = i;
272 if (match == -1) {
273 if (first_match == -1)
274 match = 1;
275 else
276 match = first_match;
277 parse = &fd_formats[match];
279 nb_heads = parse->max_head + 1;
280 max_track = parse->max_track;
281 last_sect = parse->last_sect;
282 drv->drive = parse->drive;
283 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");
286 if (nb_heads == 1) {
287 drv->flags &= ~FDISK_DBL_SIDES;
288 } else {
289 drv->flags |= FDISK_DBL_SIDES;
291 drv->max_track = max_track;
292 drv->last_sect = last_sect;
293 drv->ro = ro;
294 } else {
295 FLOPPY_DPRINTF("No disk in drive\n");
296 drv->last_sect = 0;
297 drv->max_track = 0;
298 drv->flags &= ~FDISK_DBL_SIDES;
302 /********************************************************/
303 /* Intel 82078 floppy disk controller emulation */
305 static void fdctrl_reset (fdctrl_t *fdctrl, int do_irq);
306 static void fdctrl_reset_fifo (fdctrl_t *fdctrl);
307 static int fdctrl_transfer_handler (void *opaque, int nchan,
308 int dma_pos, int dma_len);
309 static void fdctrl_raise_irq (fdctrl_t *fdctrl, uint8_t status0);
311 static uint32_t fdctrl_read_statusA (fdctrl_t *fdctrl);
312 static uint32_t fdctrl_read_statusB (fdctrl_t *fdctrl);
313 static uint32_t fdctrl_read_dor (fdctrl_t *fdctrl);
314 static void fdctrl_write_dor (fdctrl_t *fdctrl, uint32_t value);
315 static uint32_t fdctrl_read_tape (fdctrl_t *fdctrl);
316 static void fdctrl_write_tape (fdctrl_t *fdctrl, uint32_t value);
317 static uint32_t fdctrl_read_main_status (fdctrl_t *fdctrl);
318 static void fdctrl_write_rate (fdctrl_t *fdctrl, uint32_t value);
319 static uint32_t fdctrl_read_data (fdctrl_t *fdctrl);
320 static void fdctrl_write_data (fdctrl_t *fdctrl, uint32_t value);
321 static uint32_t fdctrl_read_dir (fdctrl_t *fdctrl);
323 enum {
324 FD_DIR_WRITE = 0,
325 FD_DIR_READ = 1,
326 FD_DIR_SCANE = 2,
327 FD_DIR_SCANL = 3,
328 FD_DIR_SCANH = 4,
331 enum {
332 FD_STATE_MULTI = 0x01, /* multi track flag */
333 FD_STATE_FORMAT = 0x02, /* format flag */
334 FD_STATE_SEEK = 0x04, /* seek flag */
337 enum {
338 FD_REG_SRA = 0x00,
339 FD_REG_SRB = 0x01,
340 FD_REG_DOR = 0x02,
341 FD_REG_TDR = 0x03,
342 FD_REG_MSR = 0x04,
343 FD_REG_DSR = 0x04,
344 FD_REG_FIFO = 0x05,
345 FD_REG_DIR = 0x07,
348 enum {
349 FD_CMD_READ_TRACK = 0x02,
350 FD_CMD_SPECIFY = 0x03,
351 FD_CMD_SENSE_DRIVE_STATUS = 0x04,
352 FD_CMD_WRITE = 0x05,
353 FD_CMD_READ = 0x06,
354 FD_CMD_RECALIBRATE = 0x07,
355 FD_CMD_SENSE_INTERRUPT_STATUS = 0x08,
356 FD_CMD_WRITE_DELETED = 0x09,
357 FD_CMD_READ_ID = 0x0a,
358 FD_CMD_READ_DELETED = 0x0c,
359 FD_CMD_FORMAT_TRACK = 0x0d,
360 FD_CMD_DUMPREG = 0x0e,
361 FD_CMD_SEEK = 0x0f,
362 FD_CMD_VERSION = 0x10,
363 FD_CMD_SCAN_EQUAL = 0x11,
364 FD_CMD_PERPENDICULAR_MODE = 0x12,
365 FD_CMD_CONFIGURE = 0x13,
366 FD_CMD_LOCK = 0x14,
367 FD_CMD_VERIFY = 0x16,
368 FD_CMD_POWERDOWN_MODE = 0x17,
369 FD_CMD_PART_ID = 0x18,
370 FD_CMD_SCAN_LOW_OR_EQUAL = 0x19,
371 FD_CMD_SCAN_HIGH_OR_EQUAL = 0x1d,
372 FD_CMD_SAVE = 0x2c,
373 FD_CMD_OPTION = 0x33,
374 FD_CMD_RESTORE = 0x4c,
375 FD_CMD_DRIVE_SPECIFICATION_COMMAND = 0x8e,
376 FD_CMD_RELATIVE_SEEK_OUT = 0x8f,
377 FD_CMD_FORMAT_AND_WRITE = 0xcd,
378 FD_CMD_RELATIVE_SEEK_IN = 0xcf,
381 enum {
382 FD_CONFIG_PRETRK = 0xff, /* Pre-compensation set to track 0 */
383 FD_CONFIG_FIFOTHR = 0x0f, /* FIFO threshold set to 1 byte */
384 FD_CONFIG_POLL = 0x10, /* Poll enabled */
385 FD_CONFIG_EFIFO = 0x20, /* FIFO disabled */
386 FD_CONFIG_EIS = 0x40, /* No implied seeks */
389 enum {
390 FD_SR0_EQPMT = 0x10,
391 FD_SR0_SEEK = 0x20,
392 FD_SR0_ABNTERM = 0x40,
393 FD_SR0_INVCMD = 0x80,
394 FD_SR0_RDYCHG = 0xc0,
397 enum {
398 FD_SR1_EC = 0x80, /* End of cylinder */
401 enum {
402 FD_SR2_SNS = 0x04, /* Scan not satisfied */
403 FD_SR2_SEH = 0x08, /* Scan equal hit */
406 enum {
407 FD_SRA_DIR = 0x01,
408 FD_SRA_nWP = 0x02,
409 FD_SRA_nINDX = 0x04,
410 FD_SRA_HDSEL = 0x08,
411 FD_SRA_nTRK0 = 0x10,
412 FD_SRA_STEP = 0x20,
413 FD_SRA_nDRV2 = 0x40,
414 FD_SRA_INTPEND = 0x80,
417 enum {
418 FD_SRB_MTR0 = 0x01,
419 FD_SRB_MTR1 = 0x02,
420 FD_SRB_WGATE = 0x04,
421 FD_SRB_RDATA = 0x08,
422 FD_SRB_WDATA = 0x10,
423 FD_SRB_DR0 = 0x20,
426 enum {
427 #if MAX_FD == 4
428 FD_DOR_SELMASK = 0x03,
429 #else
430 FD_DOR_SELMASK = 0x01,
431 #endif
432 FD_DOR_nRESET = 0x04,
433 FD_DOR_DMAEN = 0x08,
434 FD_DOR_MOTEN0 = 0x10,
435 FD_DOR_MOTEN1 = 0x20,
436 FD_DOR_MOTEN2 = 0x40,
437 FD_DOR_MOTEN3 = 0x80,
440 enum {
441 #if MAX_FD == 4
442 FD_TDR_BOOTSEL = 0x0c,
443 #else
444 FD_TDR_BOOTSEL = 0x04,
445 #endif
448 enum {
449 FD_DSR_DRATEMASK= 0x03,
450 FD_DSR_PWRDOWN = 0x40,
451 FD_DSR_SWRESET = 0x80,
454 enum {
455 FD_MSR_DRV0BUSY = 0x01,
456 FD_MSR_DRV1BUSY = 0x02,
457 FD_MSR_DRV2BUSY = 0x04,
458 FD_MSR_DRV3BUSY = 0x08,
459 FD_MSR_CMDBUSY = 0x10,
460 FD_MSR_NONDMA = 0x20,
461 FD_MSR_DIO = 0x40,
462 FD_MSR_RQM = 0x80,
465 enum {
466 FD_DIR_DSKCHG = 0x80,
469 #define FD_MULTI_TRACK(state) ((state) & FD_STATE_MULTI)
470 #define FD_DID_SEEK(state) ((state) & FD_STATE_SEEK)
471 #define FD_FORMAT_CMD(state) ((state) & FD_STATE_FORMAT)
473 struct fdctrl_t {
474 SysBusDevice busdev;
475 /* Controller's identification */
476 uint8_t version;
477 /* HW */
478 qemu_irq irq;
479 int dma_chann;
480 target_phys_addr_t io_base;
481 /* Controller state */
482 QEMUTimer *result_timer;
483 uint8_t sra;
484 uint8_t srb;
485 uint8_t dor;
486 uint8_t tdr;
487 uint8_t dsr;
488 uint8_t msr;
489 uint8_t cur_drv;
490 uint8_t status0;
491 uint8_t status1;
492 uint8_t status2;
493 /* Command FIFO */
494 uint8_t *fifo;
495 uint32_t data_pos;
496 uint32_t data_len;
497 uint8_t data_state;
498 uint8_t data_dir;
499 uint8_t eot; /* last wanted sector */
500 /* States kept only to be returned back */
501 /* Timers state */
502 uint8_t timer0;
503 uint8_t timer1;
504 /* precompensation */
505 uint8_t precomp_trk;
506 uint8_t config;
507 uint8_t lock;
508 /* Power down config (also with status regB access mode */
509 uint8_t pwrd;
510 /* Sun4m quirks? */
511 int sun4m;
512 /* Floppy drives */
513 fdrive_t drives[MAX_FD];
514 int reset_sensei;
515 uint32_t strict_io;
516 uint32_t mem_mapped;
519 static uint32_t fdctrl_read (void *opaque, uint32_t reg)
521 fdctrl_t *fdctrl = opaque;
522 uint32_t retval;
524 switch (reg) {
525 case FD_REG_SRA:
526 retval = fdctrl_read_statusA(fdctrl);
527 break;
528 case FD_REG_SRB:
529 retval = fdctrl_read_statusB(fdctrl);
530 break;
531 case FD_REG_DOR:
532 retval = fdctrl_read_dor(fdctrl);
533 break;
534 case FD_REG_TDR:
535 retval = fdctrl_read_tape(fdctrl);
536 break;
537 case FD_REG_MSR:
538 retval = fdctrl_read_main_status(fdctrl);
539 break;
540 case FD_REG_FIFO:
541 retval = fdctrl_read_data(fdctrl);
542 break;
543 case FD_REG_DIR:
544 retval = fdctrl_read_dir(fdctrl);
545 break;
546 default:
547 retval = (uint32_t)(-1);
548 break;
550 FLOPPY_DPRINTF("read reg%d: 0x%02x\n", reg & 7, retval);
552 return retval;
555 static void fdctrl_write (void *opaque, uint32_t reg, uint32_t value)
557 fdctrl_t *fdctrl = opaque;
559 FLOPPY_DPRINTF("write reg%d: 0x%02x\n", reg & 7, value);
561 switch (reg) {
562 case FD_REG_DOR:
563 fdctrl_write_dor(fdctrl, value);
564 break;
565 case FD_REG_TDR:
566 fdctrl_write_tape(fdctrl, value);
567 break;
568 case FD_REG_DSR:
569 fdctrl_write_rate(fdctrl, value);
570 break;
571 case FD_REG_FIFO:
572 fdctrl_write_data(fdctrl, value);
573 break;
574 default:
575 break;
579 static uint32_t fdctrl_read_port (void *opaque, uint32_t reg)
581 return fdctrl_read(opaque, reg & 7);
584 static void fdctrl_write_port (void *opaque, uint32_t reg, uint32_t value)
586 fdctrl_write(opaque, reg & 7, value);
589 static uint32_t fdctrl_read_mem (void *opaque, target_phys_addr_t reg)
591 return fdctrl_read(opaque, (uint32_t)reg);
594 static void fdctrl_write_mem (void *opaque,
595 target_phys_addr_t reg, uint32_t value)
597 fdctrl_write(opaque, (uint32_t)reg, value);
600 static CPUReadMemoryFunc *fdctrl_mem_read[3] = {
601 fdctrl_read_mem,
602 fdctrl_read_mem,
603 fdctrl_read_mem,
606 static CPUWriteMemoryFunc *fdctrl_mem_write[3] = {
607 fdctrl_write_mem,
608 fdctrl_write_mem,
609 fdctrl_write_mem,
612 static CPUReadMemoryFunc *fdctrl_mem_read_strict[3] = {
613 fdctrl_read_mem,
614 NULL,
615 NULL,
618 static CPUWriteMemoryFunc *fdctrl_mem_write_strict[3] = {
619 fdctrl_write_mem,
620 NULL,
621 NULL,
624 static void fd_save (QEMUFile *f, fdrive_t *fd)
626 qemu_put_8s(f, &fd->head);
627 qemu_put_8s(f, &fd->track);
628 qemu_put_8s(f, &fd->sect);
631 static void fdc_save (QEMUFile *f, void *opaque)
633 fdctrl_t *s = opaque;
634 uint8_t tmp;
635 int i;
636 uint8_t dor = s->dor | GET_CUR_DRV(s);
638 /* Controller state */
639 qemu_put_8s(f, &s->sra);
640 qemu_put_8s(f, &s->srb);
641 qemu_put_8s(f, &dor);
642 qemu_put_8s(f, &s->tdr);
643 qemu_put_8s(f, &s->dsr);
644 qemu_put_8s(f, &s->msr);
645 qemu_put_8s(f, &s->status0);
646 qemu_put_8s(f, &s->status1);
647 qemu_put_8s(f, &s->status2);
648 /* Command FIFO */
649 qemu_put_buffer(f, s->fifo, FD_SECTOR_LEN);
650 qemu_put_be32s(f, &s->data_pos);
651 qemu_put_be32s(f, &s->data_len);
652 qemu_put_8s(f, &s->data_state);
653 qemu_put_8s(f, &s->data_dir);
654 qemu_put_8s(f, &s->eot);
655 /* States kept only to be returned back */
656 qemu_put_8s(f, &s->timer0);
657 qemu_put_8s(f, &s->timer1);
658 qemu_put_8s(f, &s->precomp_trk);
659 qemu_put_8s(f, &s->config);
660 qemu_put_8s(f, &s->lock);
661 qemu_put_8s(f, &s->pwrd);
663 tmp = MAX_FD;
664 qemu_put_8s(f, &tmp);
665 for (i = 0; i < MAX_FD; i++)
666 fd_save(f, &s->drives[i]);
669 static int fd_load (QEMUFile *f, fdrive_t *fd)
671 qemu_get_8s(f, &fd->head);
672 qemu_get_8s(f, &fd->track);
673 qemu_get_8s(f, &fd->sect);
675 return 0;
678 static int fdc_load (QEMUFile *f, void *opaque, int version_id)
680 fdctrl_t *s = opaque;
681 int i, ret = 0;
682 uint8_t n;
684 if (version_id != 2)
685 return -EINVAL;
687 /* Controller state */
688 qemu_get_8s(f, &s->sra);
689 qemu_get_8s(f, &s->srb);
690 qemu_get_8s(f, &s->dor);
691 SET_CUR_DRV(s, s->dor & FD_DOR_SELMASK);
692 s->dor &= ~FD_DOR_SELMASK;
693 qemu_get_8s(f, &s->tdr);
694 qemu_get_8s(f, &s->dsr);
695 qemu_get_8s(f, &s->msr);
696 qemu_get_8s(f, &s->status0);
697 qemu_get_8s(f, &s->status1);
698 qemu_get_8s(f, &s->status2);
699 /* Command FIFO */
700 qemu_get_buffer(f, s->fifo, FD_SECTOR_LEN);
701 qemu_get_be32s(f, &s->data_pos);
702 qemu_get_be32s(f, &s->data_len);
703 qemu_get_8s(f, &s->data_state);
704 qemu_get_8s(f, &s->data_dir);
705 qemu_get_8s(f, &s->eot);
706 /* States kept only to be returned back */
707 qemu_get_8s(f, &s->timer0);
708 qemu_get_8s(f, &s->timer1);
709 qemu_get_8s(f, &s->precomp_trk);
710 qemu_get_8s(f, &s->config);
711 qemu_get_8s(f, &s->lock);
712 qemu_get_8s(f, &s->pwrd);
713 qemu_get_8s(f, &n);
715 if (n > MAX_FD)
716 return -EINVAL;
718 for (i = 0; i < n; i++) {
719 ret = fd_load(f, &s->drives[i]);
720 if (ret != 0)
721 break;
724 return ret;
727 static void fdctrl_external_reset(void *opaque)
729 fdctrl_t *s = opaque;
731 fdctrl_reset(s, 0);
734 static void fdctrl_handle_tc(void *opaque, int irq, int level)
736 //fdctrl_t *s = opaque;
738 if (level) {
739 // XXX
740 FLOPPY_DPRINTF("TC pulsed\n");
744 /* XXX: may change if moved to bdrv */
745 int fdctrl_get_drive_type(fdctrl_t *fdctrl, int drive_num)
747 return fdctrl->drives[drive_num].drive;
750 /* Change IRQ state */
751 static void fdctrl_reset_irq (fdctrl_t *fdctrl)
753 if (!(fdctrl->sra & FD_SRA_INTPEND))
754 return;
755 FLOPPY_DPRINTF("Reset interrupt\n");
756 qemu_set_irq(fdctrl->irq, 0);
757 fdctrl->sra &= ~FD_SRA_INTPEND;
760 static void fdctrl_raise_irq (fdctrl_t *fdctrl, uint8_t status0)
762 /* Sparc mutation */
763 if (fdctrl->sun4m && (fdctrl->msr & FD_MSR_CMDBUSY)) {
764 /* XXX: not sure */
765 fdctrl->msr &= ~FD_MSR_CMDBUSY;
766 fdctrl->msr |= FD_MSR_RQM | FD_MSR_DIO;
767 fdctrl->status0 = status0;
768 return;
770 if (!(fdctrl->sra & FD_SRA_INTPEND)) {
771 qemu_set_irq(fdctrl->irq, 1);
772 fdctrl->sra |= FD_SRA_INTPEND;
774 fdctrl->reset_sensei = 0;
775 fdctrl->status0 = status0;
776 FLOPPY_DPRINTF("Set interrupt status to 0x%02x\n", fdctrl->status0);
779 /* Reset controller */
780 static void fdctrl_reset (fdctrl_t *fdctrl, int do_irq)
782 int i;
784 FLOPPY_DPRINTF("reset controller\n");
785 fdctrl_reset_irq(fdctrl);
786 /* Initialise controller */
787 fdctrl->sra = 0;
788 fdctrl->srb = 0xc0;
789 if (!fdctrl->drives[1].bs)
790 fdctrl->sra |= FD_SRA_nDRV2;
791 fdctrl->cur_drv = 0;
792 fdctrl->dor = FD_DOR_nRESET;
793 fdctrl->dor |= (fdctrl->dma_chann != -1) ? FD_DOR_DMAEN : 0;
794 fdctrl->msr = FD_MSR_RQM;
795 /* FIFO state */
796 fdctrl->data_pos = 0;
797 fdctrl->data_len = 0;
798 fdctrl->data_state = 0;
799 fdctrl->data_dir = FD_DIR_WRITE;
800 for (i = 0; i < MAX_FD; i++)
801 fd_recalibrate(&fdctrl->drives[i]);
802 fdctrl_reset_fifo(fdctrl);
803 if (do_irq) {
804 fdctrl_raise_irq(fdctrl, FD_SR0_RDYCHG);
805 fdctrl->reset_sensei = FD_RESET_SENSEI_COUNT;
809 static inline fdrive_t *drv0 (fdctrl_t *fdctrl)
811 return &fdctrl->drives[(fdctrl->tdr & FD_TDR_BOOTSEL) >> 2];
814 static inline fdrive_t *drv1 (fdctrl_t *fdctrl)
816 if ((fdctrl->tdr & FD_TDR_BOOTSEL) < (1 << 2))
817 return &fdctrl->drives[1];
818 else
819 return &fdctrl->drives[0];
822 #if MAX_FD == 4
823 static inline fdrive_t *drv2 (fdctrl_t *fdctrl)
825 if ((fdctrl->tdr & FD_TDR_BOOTSEL) < (2 << 2))
826 return &fdctrl->drives[2];
827 else
828 return &fdctrl->drives[1];
831 static inline fdrive_t *drv3 (fdctrl_t *fdctrl)
833 if ((fdctrl->tdr & FD_TDR_BOOTSEL) < (3 << 2))
834 return &fdctrl->drives[3];
835 else
836 return &fdctrl->drives[2];
838 #endif
840 static fdrive_t *get_cur_drv (fdctrl_t *fdctrl)
842 switch (fdctrl->cur_drv) {
843 case 0: return drv0(fdctrl);
844 case 1: return drv1(fdctrl);
845 #if MAX_FD == 4
846 case 2: return drv2(fdctrl);
847 case 3: return drv3(fdctrl);
848 #endif
849 default: return NULL;
853 /* Status A register : 0x00 (read-only) */
854 static uint32_t fdctrl_read_statusA (fdctrl_t *fdctrl)
856 uint32_t retval = fdctrl->sra;
858 FLOPPY_DPRINTF("status register A: 0x%02x\n", retval);
860 return retval;
863 /* Status B register : 0x01 (read-only) */
864 static uint32_t fdctrl_read_statusB (fdctrl_t *fdctrl)
866 uint32_t retval = fdctrl->srb;
868 FLOPPY_DPRINTF("status register B: 0x%02x\n", retval);
870 return retval;
873 /* Digital output register : 0x02 */
874 static uint32_t fdctrl_read_dor (fdctrl_t *fdctrl)
876 uint32_t retval = fdctrl->dor;
878 /* Selected drive */
879 retval |= fdctrl->cur_drv;
880 FLOPPY_DPRINTF("digital output register: 0x%02x\n", retval);
882 return retval;
885 static void fdctrl_write_dor (fdctrl_t *fdctrl, uint32_t value)
887 FLOPPY_DPRINTF("digital output register set to 0x%02x\n", value);
889 /* Motors */
890 if (value & FD_DOR_MOTEN0)
891 fdctrl->srb |= FD_SRB_MTR0;
892 else
893 fdctrl->srb &= ~FD_SRB_MTR0;
894 if (value & FD_DOR_MOTEN1)
895 fdctrl->srb |= FD_SRB_MTR1;
896 else
897 fdctrl->srb &= ~FD_SRB_MTR1;
899 /* Drive */
900 if (value & 1)
901 fdctrl->srb |= FD_SRB_DR0;
902 else
903 fdctrl->srb &= ~FD_SRB_DR0;
905 /* Reset */
906 if (!(value & FD_DOR_nRESET)) {
907 if (fdctrl->dor & FD_DOR_nRESET) {
908 FLOPPY_DPRINTF("controller enter RESET state\n");
910 } else {
911 if (!(fdctrl->dor & FD_DOR_nRESET)) {
912 FLOPPY_DPRINTF("controller out of RESET state\n");
913 fdctrl_reset(fdctrl, 1);
914 fdctrl->dsr &= ~FD_DSR_PWRDOWN;
917 /* Selected drive */
918 fdctrl->cur_drv = value & FD_DOR_SELMASK;
920 fdctrl->dor = value;
923 /* Tape drive register : 0x03 */
924 static uint32_t fdctrl_read_tape (fdctrl_t *fdctrl)
926 uint32_t retval = fdctrl->tdr;
928 FLOPPY_DPRINTF("tape drive register: 0x%02x\n", retval);
930 return retval;
933 static void fdctrl_write_tape (fdctrl_t *fdctrl, uint32_t value)
935 /* Reset mode */
936 if (!(fdctrl->dor & FD_DOR_nRESET)) {
937 FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
938 return;
940 FLOPPY_DPRINTF("tape drive register set to 0x%02x\n", value);
941 /* Disk boot selection indicator */
942 fdctrl->tdr = value & FD_TDR_BOOTSEL;
943 /* Tape indicators: never allow */
946 /* Main status register : 0x04 (read) */
947 static uint32_t fdctrl_read_main_status (fdctrl_t *fdctrl)
949 uint32_t retval = fdctrl->msr;
951 fdctrl->dsr &= ~FD_DSR_PWRDOWN;
952 fdctrl->dor |= FD_DOR_nRESET;
954 FLOPPY_DPRINTF("main status register: 0x%02x\n", retval);
956 return retval;
959 /* Data select rate register : 0x04 (write) */
960 static void fdctrl_write_rate (fdctrl_t *fdctrl, uint32_t value)
962 /* Reset mode */
963 if (!(fdctrl->dor & FD_DOR_nRESET)) {
964 FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
965 return;
967 FLOPPY_DPRINTF("select rate register set to 0x%02x\n", value);
968 /* Reset: autoclear */
969 if (value & FD_DSR_SWRESET) {
970 fdctrl->dor &= ~FD_DOR_nRESET;
971 fdctrl_reset(fdctrl, 1);
972 fdctrl->dor |= FD_DOR_nRESET;
974 if (value & FD_DSR_PWRDOWN) {
975 fdctrl_reset(fdctrl, 1);
977 fdctrl->dsr = value;
980 static int fdctrl_media_changed(fdrive_t *drv)
982 int ret;
984 if (!drv->bs)
985 return 0;
986 ret = bdrv_media_changed(drv->bs);
987 if (ret) {
988 fd_revalidate(drv);
990 return ret;
993 /* Digital input register : 0x07 (read-only) */
994 static uint32_t fdctrl_read_dir (fdctrl_t *fdctrl)
996 uint32_t retval = 0;
998 if (fdctrl_media_changed(drv0(fdctrl))
999 || fdctrl_media_changed(drv1(fdctrl))
1000 #if MAX_FD == 4
1001 || fdctrl_media_changed(drv2(fdctrl))
1002 || fdctrl_media_changed(drv3(fdctrl))
1003 #endif
1005 retval |= FD_DIR_DSKCHG;
1006 if (retval != 0)
1007 FLOPPY_DPRINTF("Floppy digital input register: 0x%02x\n", retval);
1009 return retval;
1012 /* FIFO state control */
1013 static void fdctrl_reset_fifo (fdctrl_t *fdctrl)
1015 fdctrl->data_dir = FD_DIR_WRITE;
1016 fdctrl->data_pos = 0;
1017 fdctrl->msr &= ~(FD_MSR_CMDBUSY | FD_MSR_DIO);
1020 /* Set FIFO status for the host to read */
1021 static void fdctrl_set_fifo (fdctrl_t *fdctrl, int fifo_len, int do_irq)
1023 fdctrl->data_dir = FD_DIR_READ;
1024 fdctrl->data_len = fifo_len;
1025 fdctrl->data_pos = 0;
1026 fdctrl->msr |= FD_MSR_CMDBUSY | FD_MSR_RQM | FD_MSR_DIO;
1027 if (do_irq)
1028 fdctrl_raise_irq(fdctrl, 0x00);
1031 /* Set an error: unimplemented/unknown command */
1032 static void fdctrl_unimplemented (fdctrl_t *fdctrl, int direction)
1034 FLOPPY_ERROR("unimplemented command 0x%02x\n", fdctrl->fifo[0]);
1035 fdctrl->fifo[0] = FD_SR0_INVCMD;
1036 fdctrl_set_fifo(fdctrl, 1, 0);
1039 /* Seek to next sector */
1040 static int fdctrl_seek_to_next_sect (fdctrl_t *fdctrl, fdrive_t *cur_drv)
1042 FLOPPY_DPRINTF("seek to next sector (%d %02x %02x => %d)\n",
1043 cur_drv->head, cur_drv->track, cur_drv->sect,
1044 fd_sector(cur_drv));
1045 /* XXX: cur_drv->sect >= cur_drv->last_sect should be an
1046 error in fact */
1047 if (cur_drv->sect >= cur_drv->last_sect ||
1048 cur_drv->sect == fdctrl->eot) {
1049 cur_drv->sect = 1;
1050 if (FD_MULTI_TRACK(fdctrl->data_state)) {
1051 if (cur_drv->head == 0 &&
1052 (cur_drv->flags & FDISK_DBL_SIDES) != 0) {
1053 cur_drv->head = 1;
1054 } else {
1055 cur_drv->head = 0;
1056 cur_drv->track++;
1057 if ((cur_drv->flags & FDISK_DBL_SIDES) == 0)
1058 return 0;
1060 } else {
1061 cur_drv->track++;
1062 return 0;
1064 FLOPPY_DPRINTF("seek to next track (%d %02x %02x => %d)\n",
1065 cur_drv->head, cur_drv->track,
1066 cur_drv->sect, fd_sector(cur_drv));
1067 } else {
1068 cur_drv->sect++;
1070 return 1;
1073 /* Callback for transfer end (stop or abort) */
1074 static void fdctrl_stop_transfer (fdctrl_t *fdctrl, uint8_t status0,
1075 uint8_t status1, uint8_t status2)
1077 fdrive_t *cur_drv;
1079 cur_drv = get_cur_drv(fdctrl);
1080 FLOPPY_DPRINTF("transfer status: %02x %02x %02x (%02x)\n",
1081 status0, status1, status2,
1082 status0 | (cur_drv->head << 2) | GET_CUR_DRV(fdctrl));
1083 fdctrl->fifo[0] = status0 | (cur_drv->head << 2) | GET_CUR_DRV(fdctrl);
1084 fdctrl->fifo[1] = status1;
1085 fdctrl->fifo[2] = status2;
1086 fdctrl->fifo[3] = cur_drv->track;
1087 fdctrl->fifo[4] = cur_drv->head;
1088 fdctrl->fifo[5] = cur_drv->sect;
1089 fdctrl->fifo[6] = FD_SECTOR_SC;
1090 fdctrl->data_dir = FD_DIR_READ;
1091 if (!(fdctrl->msr & FD_MSR_NONDMA)) {
1092 DMA_release_DREQ(fdctrl->dma_chann);
1094 fdctrl->msr |= FD_MSR_RQM | FD_MSR_DIO;
1095 fdctrl->msr &= ~FD_MSR_NONDMA;
1096 fdctrl_set_fifo(fdctrl, 7, 1);
1099 /* Prepare a data transfer (either DMA or FIFO) */
1100 static void fdctrl_start_transfer (fdctrl_t *fdctrl, int direction)
1102 fdrive_t *cur_drv;
1103 uint8_t kh, kt, ks;
1104 int did_seek = 0;
1106 SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1107 cur_drv = get_cur_drv(fdctrl);
1108 kt = fdctrl->fifo[2];
1109 kh = fdctrl->fifo[3];
1110 ks = fdctrl->fifo[4];
1111 FLOPPY_DPRINTF("Start transfer at %d %d %02x %02x (%d)\n",
1112 GET_CUR_DRV(fdctrl), kh, kt, ks,
1113 _fd_sector(kh, kt, ks, cur_drv->last_sect));
1114 switch (fd_seek(cur_drv, kh, kt, ks, fdctrl->config & FD_CONFIG_EIS)) {
1115 case 2:
1116 /* sect too big */
1117 fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1118 fdctrl->fifo[3] = kt;
1119 fdctrl->fifo[4] = kh;
1120 fdctrl->fifo[5] = ks;
1121 return;
1122 case 3:
1123 /* track too big */
1124 fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, FD_SR1_EC, 0x00);
1125 fdctrl->fifo[3] = kt;
1126 fdctrl->fifo[4] = kh;
1127 fdctrl->fifo[5] = ks;
1128 return;
1129 case 4:
1130 /* No seek enabled */
1131 fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1132 fdctrl->fifo[3] = kt;
1133 fdctrl->fifo[4] = kh;
1134 fdctrl->fifo[5] = ks;
1135 return;
1136 case 1:
1137 did_seek = 1;
1138 break;
1139 default:
1140 break;
1143 /* Set the FIFO state */
1144 fdctrl->data_dir = direction;
1145 fdctrl->data_pos = 0;
1146 fdctrl->msr |= FD_MSR_CMDBUSY;
1147 if (fdctrl->fifo[0] & 0x80)
1148 fdctrl->data_state |= FD_STATE_MULTI;
1149 else
1150 fdctrl->data_state &= ~FD_STATE_MULTI;
1151 if (did_seek)
1152 fdctrl->data_state |= FD_STATE_SEEK;
1153 else
1154 fdctrl->data_state &= ~FD_STATE_SEEK;
1155 if (fdctrl->fifo[5] == 00) {
1156 fdctrl->data_len = fdctrl->fifo[8];
1157 } else {
1158 int tmp;
1159 fdctrl->data_len = 128 << (fdctrl->fifo[5] > 7 ? 7 : fdctrl->fifo[5]);
1160 tmp = (fdctrl->fifo[6] - ks + 1);
1161 if (fdctrl->fifo[0] & 0x80)
1162 tmp += fdctrl->fifo[6];
1163 fdctrl->data_len *= tmp;
1165 fdctrl->eot = fdctrl->fifo[6];
1166 if (fdctrl->dor & FD_DOR_DMAEN) {
1167 int dma_mode;
1168 /* DMA transfer are enabled. Check if DMA channel is well programmed */
1169 dma_mode = DMA_get_channel_mode(fdctrl->dma_chann);
1170 dma_mode = (dma_mode >> 2) & 3;
1171 FLOPPY_DPRINTF("dma_mode=%d direction=%d (%d - %d)\n",
1172 dma_mode, direction,
1173 (128 << fdctrl->fifo[5]) *
1174 (cur_drv->last_sect - ks + 1), fdctrl->data_len);
1175 if (((direction == FD_DIR_SCANE || direction == FD_DIR_SCANL ||
1176 direction == FD_DIR_SCANH) && dma_mode == 0) ||
1177 (direction == FD_DIR_WRITE && dma_mode == 2) ||
1178 (direction == FD_DIR_READ && dma_mode == 1)) {
1179 /* No access is allowed until DMA transfer has completed */
1180 fdctrl->msr &= ~FD_MSR_RQM;
1181 /* Now, we just have to wait for the DMA controller to
1182 * recall us...
1184 DMA_hold_DREQ(fdctrl->dma_chann);
1185 DMA_schedule(fdctrl->dma_chann);
1186 return;
1187 } else {
1188 FLOPPY_ERROR("dma_mode=%d direction=%d\n", dma_mode, direction);
1191 FLOPPY_DPRINTF("start non-DMA transfer\n");
1192 fdctrl->msr |= FD_MSR_NONDMA;
1193 if (direction != FD_DIR_WRITE)
1194 fdctrl->msr |= FD_MSR_DIO;
1195 /* IO based transfer: calculate len */
1196 fdctrl_raise_irq(fdctrl, 0x00);
1198 return;
1201 /* Prepare a transfer of deleted data */
1202 static void fdctrl_start_transfer_del (fdctrl_t *fdctrl, int direction)
1204 FLOPPY_ERROR("fdctrl_start_transfer_del() unimplemented\n");
1206 /* We don't handle deleted data,
1207 * so we don't return *ANYTHING*
1209 fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
1212 /* handlers for DMA transfers */
1213 static int fdctrl_transfer_handler (void *opaque, int nchan,
1214 int dma_pos, int dma_len)
1216 fdctrl_t *fdctrl;
1217 fdrive_t *cur_drv;
1218 int len, start_pos, rel_pos;
1219 uint8_t status0 = 0x00, status1 = 0x00, status2 = 0x00;
1221 fdctrl = opaque;
1222 if (fdctrl->msr & FD_MSR_RQM) {
1223 FLOPPY_DPRINTF("Not in DMA transfer mode !\n");
1224 return 0;
1226 cur_drv = get_cur_drv(fdctrl);
1227 if (fdctrl->data_dir == FD_DIR_SCANE || fdctrl->data_dir == FD_DIR_SCANL ||
1228 fdctrl->data_dir == FD_DIR_SCANH)
1229 status2 = FD_SR2_SNS;
1230 if (dma_len > fdctrl->data_len)
1231 dma_len = fdctrl->data_len;
1232 if (cur_drv->bs == NULL) {
1233 if (fdctrl->data_dir == FD_DIR_WRITE)
1234 fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
1235 else
1236 fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1237 len = 0;
1238 goto transfer_error;
1240 rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
1241 for (start_pos = fdctrl->data_pos; fdctrl->data_pos < dma_len;) {
1242 len = dma_len - fdctrl->data_pos;
1243 if (len + rel_pos > FD_SECTOR_LEN)
1244 len = FD_SECTOR_LEN - rel_pos;
1245 FLOPPY_DPRINTF("copy %d bytes (%d %d %d) %d pos %d %02x "
1246 "(%d-0x%08x 0x%08x)\n", len, dma_len, fdctrl->data_pos,
1247 fdctrl->data_len, GET_CUR_DRV(fdctrl), cur_drv->head,
1248 cur_drv->track, cur_drv->sect, fd_sector(cur_drv),
1249 fd_sector(cur_drv) * FD_SECTOR_LEN);
1250 if (fdctrl->data_dir != FD_DIR_WRITE ||
1251 len < FD_SECTOR_LEN || rel_pos != 0) {
1252 /* READ & SCAN commands and realign to a sector for WRITE */
1253 if (bdrv_read(cur_drv->bs, fd_sector(cur_drv),
1254 fdctrl->fifo, 1) < 0) {
1255 FLOPPY_DPRINTF("Floppy: error getting sector %d\n",
1256 fd_sector(cur_drv));
1257 /* Sure, image size is too small... */
1258 memset(fdctrl->fifo, 0, FD_SECTOR_LEN);
1261 switch (fdctrl->data_dir) {
1262 case FD_DIR_READ:
1263 /* READ commands */
1264 DMA_write_memory (nchan, fdctrl->fifo + rel_pos,
1265 fdctrl->data_pos, len);
1266 break;
1267 case FD_DIR_WRITE:
1268 /* WRITE commands */
1269 DMA_read_memory (nchan, fdctrl->fifo + rel_pos,
1270 fdctrl->data_pos, len);
1271 if (bdrv_write(cur_drv->bs, fd_sector(cur_drv),
1272 fdctrl->fifo, 1) < 0) {
1273 FLOPPY_ERROR("writing sector %d\n", fd_sector(cur_drv));
1274 fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
1275 goto transfer_error;
1277 break;
1278 default:
1279 /* SCAN commands */
1281 uint8_t tmpbuf[FD_SECTOR_LEN];
1282 int ret;
1283 DMA_read_memory (nchan, tmpbuf, fdctrl->data_pos, len);
1284 ret = memcmp(tmpbuf, fdctrl->fifo + rel_pos, len);
1285 if (ret == 0) {
1286 status2 = FD_SR2_SEH;
1287 goto end_transfer;
1289 if ((ret < 0 && fdctrl->data_dir == FD_DIR_SCANL) ||
1290 (ret > 0 && fdctrl->data_dir == FD_DIR_SCANH)) {
1291 status2 = 0x00;
1292 goto end_transfer;
1295 break;
1297 fdctrl->data_pos += len;
1298 rel_pos = fdctrl->data_pos % FD_SECTOR_LEN;
1299 if (rel_pos == 0) {
1300 /* Seek to next sector */
1301 if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv))
1302 break;
1305 end_transfer:
1306 len = fdctrl->data_pos - start_pos;
1307 FLOPPY_DPRINTF("end transfer %d %d %d\n",
1308 fdctrl->data_pos, len, fdctrl->data_len);
1309 if (fdctrl->data_dir == FD_DIR_SCANE ||
1310 fdctrl->data_dir == FD_DIR_SCANL ||
1311 fdctrl->data_dir == FD_DIR_SCANH)
1312 status2 = FD_SR2_SEH;
1313 if (FD_DID_SEEK(fdctrl->data_state))
1314 status0 |= FD_SR0_SEEK;
1315 fdctrl->data_len -= len;
1316 fdctrl_stop_transfer(fdctrl, status0, status1, status2);
1317 transfer_error:
1319 return len;
1322 /* Data register : 0x05 */
1323 static uint32_t fdctrl_read_data (fdctrl_t *fdctrl)
1325 fdrive_t *cur_drv;
1326 uint32_t retval = 0;
1327 int pos;
1329 cur_drv = get_cur_drv(fdctrl);
1330 fdctrl->dsr &= ~FD_DSR_PWRDOWN;
1331 if (!(fdctrl->msr & FD_MSR_RQM) || !(fdctrl->msr & FD_MSR_DIO)) {
1332 FLOPPY_ERROR("controller not ready for reading\n");
1333 return 0;
1335 pos = fdctrl->data_pos;
1336 if (fdctrl->msr & FD_MSR_NONDMA) {
1337 pos %= FD_SECTOR_LEN;
1338 if (pos == 0) {
1339 if (fdctrl->data_pos != 0)
1340 if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv)) {
1341 FLOPPY_DPRINTF("error seeking to next sector %d\n",
1342 fd_sector(cur_drv));
1343 return 0;
1345 if (bdrv_read(cur_drv->bs, fd_sector(cur_drv), fdctrl->fifo, 1) < 0) {
1346 FLOPPY_DPRINTF("error getting sector %d\n",
1347 fd_sector(cur_drv));
1348 /* Sure, image size is too small... */
1349 memset(fdctrl->fifo, 0, FD_SECTOR_LEN);
1353 retval = fdctrl->fifo[pos];
1354 if (++fdctrl->data_pos == fdctrl->data_len) {
1355 fdctrl->data_pos = 0;
1356 /* Switch from transfer mode to status mode
1357 * then from status mode to command mode
1359 if (fdctrl->msr & FD_MSR_NONDMA) {
1360 fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
1361 } else {
1362 fdctrl_reset_fifo(fdctrl);
1363 fdctrl_reset_irq(fdctrl);
1366 FLOPPY_DPRINTF("data register: 0x%02x\n", retval);
1368 return retval;
1371 static void fdctrl_format_sector (fdctrl_t *fdctrl)
1373 fdrive_t *cur_drv;
1374 uint8_t kh, kt, ks;
1376 SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1377 cur_drv = get_cur_drv(fdctrl);
1378 kt = fdctrl->fifo[6];
1379 kh = fdctrl->fifo[7];
1380 ks = fdctrl->fifo[8];
1381 FLOPPY_DPRINTF("format sector at %d %d %02x %02x (%d)\n",
1382 GET_CUR_DRV(fdctrl), kh, kt, ks,
1383 _fd_sector(kh, kt, ks, cur_drv->last_sect));
1384 switch (fd_seek(cur_drv, kh, kt, ks, fdctrl->config & FD_CONFIG_EIS)) {
1385 case 2:
1386 /* sect too big */
1387 fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1388 fdctrl->fifo[3] = kt;
1389 fdctrl->fifo[4] = kh;
1390 fdctrl->fifo[5] = ks;
1391 return;
1392 case 3:
1393 /* track too big */
1394 fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, FD_SR1_EC, 0x00);
1395 fdctrl->fifo[3] = kt;
1396 fdctrl->fifo[4] = kh;
1397 fdctrl->fifo[5] = ks;
1398 return;
1399 case 4:
1400 /* No seek enabled */
1401 fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM, 0x00, 0x00);
1402 fdctrl->fifo[3] = kt;
1403 fdctrl->fifo[4] = kh;
1404 fdctrl->fifo[5] = ks;
1405 return;
1406 case 1:
1407 fdctrl->data_state |= FD_STATE_SEEK;
1408 break;
1409 default:
1410 break;
1412 memset(fdctrl->fifo, 0, FD_SECTOR_LEN);
1413 if (cur_drv->bs == NULL ||
1414 bdrv_write(cur_drv->bs, fd_sector(cur_drv), fdctrl->fifo, 1) < 0) {
1415 FLOPPY_ERROR("formatting sector %d\n", fd_sector(cur_drv));
1416 fdctrl_stop_transfer(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK, 0x00, 0x00);
1417 } else {
1418 if (cur_drv->sect == cur_drv->last_sect) {
1419 fdctrl->data_state &= ~FD_STATE_FORMAT;
1420 /* Last sector done */
1421 if (FD_DID_SEEK(fdctrl->data_state))
1422 fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
1423 else
1424 fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
1425 } else {
1426 /* More to do */
1427 fdctrl->data_pos = 0;
1428 fdctrl->data_len = 4;
1433 static void fdctrl_handle_lock (fdctrl_t *fdctrl, int direction)
1435 fdctrl->lock = (fdctrl->fifo[0] & 0x80) ? 1 : 0;
1436 fdctrl->fifo[0] = fdctrl->lock << 4;
1437 fdctrl_set_fifo(fdctrl, 1, fdctrl->lock);
1440 static void fdctrl_handle_dumpreg (fdctrl_t *fdctrl, int direction)
1442 fdrive_t *cur_drv = get_cur_drv(fdctrl);
1444 /* Drives position */
1445 fdctrl->fifo[0] = drv0(fdctrl)->track;
1446 fdctrl->fifo[1] = drv1(fdctrl)->track;
1447 #if MAX_FD == 4
1448 fdctrl->fifo[2] = drv2(fdctrl)->track;
1449 fdctrl->fifo[3] = drv3(fdctrl)->track;
1450 #else
1451 fdctrl->fifo[2] = 0;
1452 fdctrl->fifo[3] = 0;
1453 #endif
1454 /* timers */
1455 fdctrl->fifo[4] = fdctrl->timer0;
1456 fdctrl->fifo[5] = (fdctrl->timer1 << 1) | (fdctrl->dor & FD_DOR_DMAEN ? 1 : 0);
1457 fdctrl->fifo[6] = cur_drv->last_sect;
1458 fdctrl->fifo[7] = (fdctrl->lock << 7) |
1459 (cur_drv->perpendicular << 2);
1460 fdctrl->fifo[8] = fdctrl->config;
1461 fdctrl->fifo[9] = fdctrl->precomp_trk;
1462 fdctrl_set_fifo(fdctrl, 10, 0);
1465 static void fdctrl_handle_version (fdctrl_t *fdctrl, int direction)
1467 /* Controller's version */
1468 fdctrl->fifo[0] = fdctrl->version;
1469 fdctrl_set_fifo(fdctrl, 1, 1);
1472 static void fdctrl_handle_partid (fdctrl_t *fdctrl, int direction)
1474 fdctrl->fifo[0] = 0x41; /* Stepping 1 */
1475 fdctrl_set_fifo(fdctrl, 1, 0);
1478 static void fdctrl_handle_restore (fdctrl_t *fdctrl, int direction)
1480 fdrive_t *cur_drv = get_cur_drv(fdctrl);
1482 /* Drives position */
1483 drv0(fdctrl)->track = fdctrl->fifo[3];
1484 drv1(fdctrl)->track = fdctrl->fifo[4];
1485 #if MAX_FD == 4
1486 drv2(fdctrl)->track = fdctrl->fifo[5];
1487 drv3(fdctrl)->track = fdctrl->fifo[6];
1488 #endif
1489 /* timers */
1490 fdctrl->timer0 = fdctrl->fifo[7];
1491 fdctrl->timer1 = fdctrl->fifo[8];
1492 cur_drv->last_sect = fdctrl->fifo[9];
1493 fdctrl->lock = fdctrl->fifo[10] >> 7;
1494 cur_drv->perpendicular = (fdctrl->fifo[10] >> 2) & 0xF;
1495 fdctrl->config = fdctrl->fifo[11];
1496 fdctrl->precomp_trk = fdctrl->fifo[12];
1497 fdctrl->pwrd = fdctrl->fifo[13];
1498 fdctrl_reset_fifo(fdctrl);
1501 static void fdctrl_handle_save (fdctrl_t *fdctrl, int direction)
1503 fdrive_t *cur_drv = get_cur_drv(fdctrl);
1505 fdctrl->fifo[0] = 0;
1506 fdctrl->fifo[1] = 0;
1507 /* Drives position */
1508 fdctrl->fifo[2] = drv0(fdctrl)->track;
1509 fdctrl->fifo[3] = drv1(fdctrl)->track;
1510 #if MAX_FD == 4
1511 fdctrl->fifo[4] = drv2(fdctrl)->track;
1512 fdctrl->fifo[5] = drv3(fdctrl)->track;
1513 #else
1514 fdctrl->fifo[4] = 0;
1515 fdctrl->fifo[5] = 0;
1516 #endif
1517 /* timers */
1518 fdctrl->fifo[6] = fdctrl->timer0;
1519 fdctrl->fifo[7] = fdctrl->timer1;
1520 fdctrl->fifo[8] = cur_drv->last_sect;
1521 fdctrl->fifo[9] = (fdctrl->lock << 7) |
1522 (cur_drv->perpendicular << 2);
1523 fdctrl->fifo[10] = fdctrl->config;
1524 fdctrl->fifo[11] = fdctrl->precomp_trk;
1525 fdctrl->fifo[12] = fdctrl->pwrd;
1526 fdctrl->fifo[13] = 0;
1527 fdctrl->fifo[14] = 0;
1528 fdctrl_set_fifo(fdctrl, 15, 1);
1531 static void fdctrl_handle_readid (fdctrl_t *fdctrl, int direction)
1533 fdrive_t *cur_drv = get_cur_drv(fdctrl);
1535 /* XXX: should set main status register to busy */
1536 cur_drv->head = (fdctrl->fifo[1] >> 2) & 1;
1537 qemu_mod_timer(fdctrl->result_timer,
1538 qemu_get_clock(vm_clock) + (ticks_per_sec / 50));
1541 static void fdctrl_handle_format_track (fdctrl_t *fdctrl, int direction)
1543 fdrive_t *cur_drv;
1545 SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1546 cur_drv = get_cur_drv(fdctrl);
1547 fdctrl->data_state |= FD_STATE_FORMAT;
1548 if (fdctrl->fifo[0] & 0x80)
1549 fdctrl->data_state |= FD_STATE_MULTI;
1550 else
1551 fdctrl->data_state &= ~FD_STATE_MULTI;
1552 fdctrl->data_state &= ~FD_STATE_SEEK;
1553 cur_drv->bps =
1554 fdctrl->fifo[2] > 7 ? 16384 : 128 << fdctrl->fifo[2];
1555 #if 0
1556 cur_drv->last_sect =
1557 cur_drv->flags & FDISK_DBL_SIDES ? fdctrl->fifo[3] :
1558 fdctrl->fifo[3] / 2;
1559 #else
1560 cur_drv->last_sect = fdctrl->fifo[3];
1561 #endif
1562 /* TODO: implement format using DMA expected by the Bochs BIOS
1563 * and Linux fdformat (read 3 bytes per sector via DMA and fill
1564 * the sector with the specified fill byte
1566 fdctrl->data_state &= ~FD_STATE_FORMAT;
1567 fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
1570 static void fdctrl_handle_specify (fdctrl_t *fdctrl, int direction)
1572 fdctrl->timer0 = (fdctrl->fifo[1] >> 4) & 0xF;
1573 fdctrl->timer1 = fdctrl->fifo[2] >> 1;
1574 if (fdctrl->fifo[2] & 1)
1575 fdctrl->dor &= ~FD_DOR_DMAEN;
1576 else
1577 fdctrl->dor |= FD_DOR_DMAEN;
1578 /* No result back */
1579 fdctrl_reset_fifo(fdctrl);
1582 static void fdctrl_handle_sense_drive_status (fdctrl_t *fdctrl, int direction)
1584 fdrive_t *cur_drv;
1586 SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1587 cur_drv = get_cur_drv(fdctrl);
1588 cur_drv->head = (fdctrl->fifo[1] >> 2) & 1;
1589 /* 1 Byte status back */
1590 fdctrl->fifo[0] = (cur_drv->ro << 6) |
1591 (cur_drv->track == 0 ? 0x10 : 0x00) |
1592 (cur_drv->head << 2) |
1593 GET_CUR_DRV(fdctrl) |
1594 0x28;
1595 fdctrl_set_fifo(fdctrl, 1, 0);
1598 static void fdctrl_handle_recalibrate (fdctrl_t *fdctrl, int direction)
1600 fdrive_t *cur_drv;
1602 SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1603 cur_drv = get_cur_drv(fdctrl);
1604 fd_recalibrate(cur_drv);
1605 fdctrl_reset_fifo(fdctrl);
1606 /* Raise Interrupt */
1607 fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
1610 static void fdctrl_handle_sense_interrupt_status (fdctrl_t *fdctrl, int direction)
1612 fdrive_t *cur_drv = get_cur_drv(fdctrl);
1614 if(fdctrl->reset_sensei > 0) {
1615 fdctrl->fifo[0] =
1616 FD_SR0_RDYCHG + FD_RESET_SENSEI_COUNT - fdctrl->reset_sensei;
1617 fdctrl->reset_sensei--;
1618 } else {
1619 /* XXX: status0 handling is broken for read/write
1620 commands, so we do this hack. It should be suppressed
1621 ASAP */
1622 fdctrl->fifo[0] =
1623 FD_SR0_SEEK | (cur_drv->head << 2) | GET_CUR_DRV(fdctrl);
1626 fdctrl->fifo[1] = cur_drv->track;
1627 fdctrl_set_fifo(fdctrl, 2, 0);
1628 fdctrl_reset_irq(fdctrl);
1629 fdctrl->status0 = FD_SR0_RDYCHG;
1632 static void fdctrl_handle_seek (fdctrl_t *fdctrl, int direction)
1634 fdrive_t *cur_drv;
1636 SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1637 cur_drv = get_cur_drv(fdctrl);
1638 fdctrl_reset_fifo(fdctrl);
1639 if (fdctrl->fifo[2] > cur_drv->max_track) {
1640 fdctrl_raise_irq(fdctrl, FD_SR0_ABNTERM | FD_SR0_SEEK);
1641 } else {
1642 cur_drv->track = fdctrl->fifo[2];
1643 /* Raise Interrupt */
1644 fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
1648 static void fdctrl_handle_perpendicular_mode (fdctrl_t *fdctrl, int direction)
1650 fdrive_t *cur_drv = get_cur_drv(fdctrl);
1652 if (fdctrl->fifo[1] & 0x80)
1653 cur_drv->perpendicular = fdctrl->fifo[1] & 0x7;
1654 /* No result back */
1655 fdctrl_reset_fifo(fdctrl);
1658 static void fdctrl_handle_configure (fdctrl_t *fdctrl, int direction)
1660 fdctrl->config = fdctrl->fifo[2];
1661 fdctrl->precomp_trk = fdctrl->fifo[3];
1662 /* No result back */
1663 fdctrl_reset_fifo(fdctrl);
1666 static void fdctrl_handle_powerdown_mode (fdctrl_t *fdctrl, int direction)
1668 fdctrl->pwrd = fdctrl->fifo[1];
1669 fdctrl->fifo[0] = fdctrl->fifo[1];
1670 fdctrl_set_fifo(fdctrl, 1, 1);
1673 static void fdctrl_handle_option (fdctrl_t *fdctrl, int direction)
1675 /* No result back */
1676 fdctrl_reset_fifo(fdctrl);
1679 static void fdctrl_handle_drive_specification_command (fdctrl_t *fdctrl, int direction)
1681 fdrive_t *cur_drv = get_cur_drv(fdctrl);
1683 if (fdctrl->fifo[fdctrl->data_pos - 1] & 0x80) {
1684 /* Command parameters done */
1685 if (fdctrl->fifo[fdctrl->data_pos - 1] & 0x40) {
1686 fdctrl->fifo[0] = fdctrl->fifo[1];
1687 fdctrl->fifo[2] = 0;
1688 fdctrl->fifo[3] = 0;
1689 fdctrl_set_fifo(fdctrl, 4, 1);
1690 } else {
1691 fdctrl_reset_fifo(fdctrl);
1693 } else if (fdctrl->data_len > 7) {
1694 /* ERROR */
1695 fdctrl->fifo[0] = 0x80 |
1696 (cur_drv->head << 2) | GET_CUR_DRV(fdctrl);
1697 fdctrl_set_fifo(fdctrl, 1, 1);
1701 static void fdctrl_handle_relative_seek_out (fdctrl_t *fdctrl, int direction)
1703 fdrive_t *cur_drv;
1705 SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1706 cur_drv = get_cur_drv(fdctrl);
1707 if (fdctrl->fifo[2] + cur_drv->track >= cur_drv->max_track) {
1708 cur_drv->track = cur_drv->max_track - 1;
1709 } else {
1710 cur_drv->track += fdctrl->fifo[2];
1712 fdctrl_reset_fifo(fdctrl);
1713 /* Raise Interrupt */
1714 fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
1717 static void fdctrl_handle_relative_seek_in (fdctrl_t *fdctrl, int direction)
1719 fdrive_t *cur_drv;
1721 SET_CUR_DRV(fdctrl, fdctrl->fifo[1] & FD_DOR_SELMASK);
1722 cur_drv = get_cur_drv(fdctrl);
1723 if (fdctrl->fifo[2] > cur_drv->track) {
1724 cur_drv->track = 0;
1725 } else {
1726 cur_drv->track -= fdctrl->fifo[2];
1728 fdctrl_reset_fifo(fdctrl);
1729 /* Raise Interrupt */
1730 fdctrl_raise_irq(fdctrl, FD_SR0_SEEK);
1733 static const struct {
1734 uint8_t value;
1735 uint8_t mask;
1736 const char* name;
1737 int parameters;
1738 void (*handler)(fdctrl_t *fdctrl, int direction);
1739 int direction;
1740 } handlers[] = {
1741 { FD_CMD_READ, 0x1f, "READ", 8, fdctrl_start_transfer, FD_DIR_READ },
1742 { FD_CMD_WRITE, 0x3f, "WRITE", 8, fdctrl_start_transfer, FD_DIR_WRITE },
1743 { FD_CMD_SEEK, 0xff, "SEEK", 2, fdctrl_handle_seek },
1744 { FD_CMD_SENSE_INTERRUPT_STATUS, 0xff, "SENSE INTERRUPT STATUS", 0, fdctrl_handle_sense_interrupt_status },
1745 { FD_CMD_RECALIBRATE, 0xff, "RECALIBRATE", 1, fdctrl_handle_recalibrate },
1746 { FD_CMD_FORMAT_TRACK, 0xbf, "FORMAT TRACK", 5, fdctrl_handle_format_track },
1747 { FD_CMD_READ_TRACK, 0xbf, "READ TRACK", 8, fdctrl_start_transfer, FD_DIR_READ },
1748 { FD_CMD_RESTORE, 0xff, "RESTORE", 17, fdctrl_handle_restore }, /* part of READ DELETED DATA */
1749 { FD_CMD_SAVE, 0xff, "SAVE", 0, fdctrl_handle_save }, /* part of READ DELETED DATA */
1750 { FD_CMD_READ_DELETED, 0x1f, "READ DELETED DATA", 8, fdctrl_start_transfer_del, FD_DIR_READ },
1751 { FD_CMD_SCAN_EQUAL, 0x1f, "SCAN EQUAL", 8, fdctrl_start_transfer, FD_DIR_SCANE },
1752 { FD_CMD_VERIFY, 0x1f, "VERIFY", 8, fdctrl_unimplemented },
1753 { FD_CMD_SCAN_LOW_OR_EQUAL, 0x1f, "SCAN LOW OR EQUAL", 8, fdctrl_start_transfer, FD_DIR_SCANL },
1754 { FD_CMD_SCAN_HIGH_OR_EQUAL, 0x1f, "SCAN HIGH OR EQUAL", 8, fdctrl_start_transfer, FD_DIR_SCANH },
1755 { FD_CMD_WRITE_DELETED, 0x3f, "WRITE DELETED DATA", 8, fdctrl_start_transfer_del, FD_DIR_WRITE },
1756 { FD_CMD_READ_ID, 0xbf, "READ ID", 1, fdctrl_handle_readid },
1757 { FD_CMD_SPECIFY, 0xff, "SPECIFY", 2, fdctrl_handle_specify },
1758 { FD_CMD_SENSE_DRIVE_STATUS, 0xff, "SENSE DRIVE STATUS", 1, fdctrl_handle_sense_drive_status },
1759 { FD_CMD_PERPENDICULAR_MODE, 0xff, "PERPENDICULAR MODE", 1, fdctrl_handle_perpendicular_mode },
1760 { FD_CMD_CONFIGURE, 0xff, "CONFIGURE", 3, fdctrl_handle_configure },
1761 { FD_CMD_POWERDOWN_MODE, 0xff, "POWERDOWN MODE", 2, fdctrl_handle_powerdown_mode },
1762 { FD_CMD_OPTION, 0xff, "OPTION", 1, fdctrl_handle_option },
1763 { FD_CMD_DRIVE_SPECIFICATION_COMMAND, 0xff, "DRIVE SPECIFICATION COMMAND", 5, fdctrl_handle_drive_specification_command },
1764 { FD_CMD_RELATIVE_SEEK_OUT, 0xff, "RELATIVE SEEK OUT", 2, fdctrl_handle_relative_seek_out },
1765 { FD_CMD_FORMAT_AND_WRITE, 0xff, "FORMAT AND WRITE", 10, fdctrl_unimplemented },
1766 { FD_CMD_RELATIVE_SEEK_IN, 0xff, "RELATIVE SEEK IN", 2, fdctrl_handle_relative_seek_in },
1767 { FD_CMD_LOCK, 0x7f, "LOCK", 0, fdctrl_handle_lock },
1768 { FD_CMD_DUMPREG, 0xff, "DUMPREG", 0, fdctrl_handle_dumpreg },
1769 { FD_CMD_VERSION, 0xff, "VERSION", 0, fdctrl_handle_version },
1770 { FD_CMD_PART_ID, 0xff, "PART ID", 0, fdctrl_handle_partid },
1771 { FD_CMD_WRITE, 0x1f, "WRITE (BeOS)", 8, fdctrl_start_transfer, FD_DIR_WRITE }, /* not in specification ; BeOS 4.5 bug */
1772 { 0, 0, "unknown", 0, fdctrl_unimplemented }, /* default handler */
1774 /* Associate command to an index in the 'handlers' array */
1775 static uint8_t command_to_handler[256];
1777 static void fdctrl_write_data (fdctrl_t *fdctrl, uint32_t value)
1779 fdrive_t *cur_drv;
1780 int pos;
1782 /* Reset mode */
1783 if (!(fdctrl->dor & FD_DOR_nRESET)) {
1784 FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
1785 return;
1787 if (!(fdctrl->msr & FD_MSR_RQM) || (fdctrl->msr & FD_MSR_DIO)) {
1788 FLOPPY_ERROR("controller not ready for writing\n");
1789 return;
1791 fdctrl->dsr &= ~FD_DSR_PWRDOWN;
1792 /* Is it write command time ? */
1793 if (fdctrl->msr & FD_MSR_NONDMA) {
1794 /* FIFO data write */
1795 pos = fdctrl->data_pos++;
1796 pos %= FD_SECTOR_LEN;
1797 fdctrl->fifo[pos] = value;
1798 if (pos == FD_SECTOR_LEN - 1 ||
1799 fdctrl->data_pos == fdctrl->data_len) {
1800 cur_drv = get_cur_drv(fdctrl);
1801 if (bdrv_write(cur_drv->bs, fd_sector(cur_drv), fdctrl->fifo, 1) < 0) {
1802 FLOPPY_ERROR("writing sector %d\n", fd_sector(cur_drv));
1803 return;
1805 if (!fdctrl_seek_to_next_sect(fdctrl, cur_drv)) {
1806 FLOPPY_DPRINTF("error seeking to next sector %d\n",
1807 fd_sector(cur_drv));
1808 return;
1811 /* Switch from transfer mode to status mode
1812 * then from status mode to command mode
1814 if (fdctrl->data_pos == fdctrl->data_len)
1815 fdctrl_stop_transfer(fdctrl, FD_SR0_SEEK, 0x00, 0x00);
1816 return;
1818 if (fdctrl->data_pos == 0) {
1819 /* Command */
1820 pos = command_to_handler[value & 0xff];
1821 FLOPPY_DPRINTF("%s command\n", handlers[pos].name);
1822 fdctrl->data_len = handlers[pos].parameters + 1;
1825 FLOPPY_DPRINTF("%s: %02x\n", __func__, value);
1826 fdctrl->fifo[fdctrl->data_pos++] = value;
1827 if (fdctrl->data_pos == fdctrl->data_len) {
1828 /* We now have all parameters
1829 * and will be able to treat the command
1831 if (fdctrl->data_state & FD_STATE_FORMAT) {
1832 fdctrl_format_sector(fdctrl);
1833 return;
1836 pos = command_to_handler[fdctrl->fifo[0] & 0xff];
1837 FLOPPY_DPRINTF("treat %s command\n", handlers[pos].name);
1838 (*handlers[pos].handler)(fdctrl, handlers[pos].direction);
1842 static void fdctrl_result_timer(void *opaque)
1844 fdctrl_t *fdctrl = opaque;
1845 fdrive_t *cur_drv = get_cur_drv(fdctrl);
1847 /* Pretend we are spinning.
1848 * This is needed for Coherent, which uses READ ID to check for
1849 * sector interleaving.
1851 if (cur_drv->last_sect != 0) {
1852 cur_drv->sect = (cur_drv->sect % cur_drv->last_sect) + 1;
1854 fdctrl_stop_transfer(fdctrl, 0x00, 0x00, 0x00);
1857 /* Init functions */
1858 static void fdctrl_init_common (fdctrl_t *fdctrl, int dma_chann,
1859 target_phys_addr_t io_base,
1860 BlockDriverState **fds)
1862 int i, j;
1864 /* Fill 'command_to_handler' lookup table */
1865 for (i = ARRAY_SIZE(handlers) - 1; i >= 0; i--) {
1866 for (j = 0; j < sizeof(command_to_handler); j++) {
1867 if ((j & handlers[i].mask) == handlers[i].value)
1868 command_to_handler[j] = i;
1872 FLOPPY_DPRINTF("init controller\n");
1873 fdctrl->fifo = qemu_memalign(512, FD_SECTOR_LEN);
1874 fdctrl->result_timer = qemu_new_timer(vm_clock,
1875 fdctrl_result_timer, fdctrl);
1877 fdctrl->version = 0x90; /* Intel 82078 controller */
1878 fdctrl->dma_chann = dma_chann;
1879 fdctrl->io_base = io_base;
1880 fdctrl->config = FD_CONFIG_EIS | FD_CONFIG_EFIFO; /* Implicit seek, polling & FIFO enabled */
1881 if (fdctrl->dma_chann != -1) {
1882 DMA_register_channel(dma_chann, &fdctrl_transfer_handler, fdctrl);
1884 for (i = 0; i < MAX_FD; i++) {
1885 fd_init(&fdctrl->drives[i], fds[i]);
1887 fdctrl_external_reset(fdctrl);
1888 register_savevm("fdc", io_base, 2, fdc_save, fdc_load, fdctrl);
1889 qemu_register_reset(fdctrl_external_reset, fdctrl);
1890 for (i = 0; i < MAX_FD; i++) {
1891 fd_revalidate(&fdctrl->drives[i]);
1895 fdctrl_t *fdctrl_init (qemu_irq irq, int dma_chann, int mem_mapped,
1896 target_phys_addr_t io_base,
1897 BlockDriverState **fds)
1899 DeviceState *dev;
1900 SysBusDevice *s;
1901 fdctrl_t *fdctrl;
1903 dev = qdev_create(NULL, "fdc");
1904 qdev_prop_set_uint32(dev, "strict_io", 0);
1905 qdev_prop_set_uint32(dev, "mem_mapped", mem_mapped);
1906 qdev_prop_set_uint32(dev, "sun4m", 0);
1907 qdev_init(dev);
1908 s = sysbus_from_qdev(dev);
1909 sysbus_connect_irq(s, 0, irq);
1910 fdctrl = FROM_SYSBUS(fdctrl_t, s);
1911 if (mem_mapped) {
1912 sysbus_mmio_map(s, 0, io_base);
1913 } else {
1914 register_ioport_read((uint32_t)io_base + 0x01, 5, 1,
1915 &fdctrl_read_port, fdctrl);
1916 register_ioport_read((uint32_t)io_base + 0x07, 1, 1,
1917 &fdctrl_read_port, fdctrl);
1918 register_ioport_write((uint32_t)io_base + 0x01, 5, 1,
1919 &fdctrl_write_port, fdctrl);
1920 register_ioport_write((uint32_t)io_base + 0x07, 1, 1,
1921 &fdctrl_write_port, fdctrl);
1924 fdctrl_init_common(fdctrl, dma_chann, io_base, fds);
1926 return fdctrl;
1929 fdctrl_t *sun4m_fdctrl_init (qemu_irq irq, target_phys_addr_t io_base,
1930 BlockDriverState **fds, qemu_irq *fdc_tc)
1932 DeviceState *dev;
1933 SysBusDevice *s;
1934 fdctrl_t *fdctrl;
1936 dev = qdev_create(NULL, "fdc");
1937 qdev_prop_set_uint32(dev, "strict_io", 1);
1938 qdev_prop_set_uint32(dev, "mem_mapped", 1);
1939 qdev_prop_set_uint32(dev, "sun4m", 1);
1940 qdev_init(dev);
1941 s = sysbus_from_qdev(dev);
1942 sysbus_connect_irq(s, 0, irq);
1943 sysbus_mmio_map(s, 0, io_base);
1944 *fdc_tc = qdev_get_gpio_in(dev, 0);
1946 fdctrl = FROM_SYSBUS(fdctrl_t, s);
1947 fdctrl_init_common(fdctrl, -1, io_base, fds);
1949 return fdctrl;
1952 static void fdc_init1(SysBusDevice *dev)
1954 fdctrl_t *s = FROM_SYSBUS(fdctrl_t, dev);
1955 int io;
1957 sysbus_init_irq(dev, &s->irq);
1958 qdev_init_gpio_in(&dev->qdev, fdctrl_handle_tc, 1);
1959 if (s->strict_io) {
1960 io = cpu_register_io_memory(fdctrl_mem_read_strict,
1961 fdctrl_mem_write_strict, s);
1962 } else {
1963 io = cpu_register_io_memory(fdctrl_mem_read, fdctrl_mem_write, s);
1965 sysbus_init_mmio(dev, 0x08, io);
1969 static SysBusDeviceInfo fdc_info = {
1970 .init = fdc_init1,
1971 .qdev.name = "fdc",
1972 .qdev.size = sizeof(fdctrl_t),
1973 .qdev.props = (Property[]) {
1975 .name = "io_base",
1976 .info = &qdev_prop_taddr,
1977 .offset = offsetof(fdctrl_t, io_base),
1980 .name = "strict_io",
1981 .info = &qdev_prop_uint32,
1982 .offset = offsetof(fdctrl_t, strict_io),
1985 .name = "mem_mapped",
1986 .info = &qdev_prop_uint32,
1987 .offset = offsetof(fdctrl_t, mem_mapped),
1990 .name = "sun4m",
1991 .info = &qdev_prop_uint32,
1992 .offset = offsetof(fdctrl_t, sun4m),
1994 {/* end of properties */}
1998 static void fdc_register_devices(void)
2000 sysbus_register_withprop(&fdc_info);
2003 device_init(fdc_register_devices)