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
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.
33 #include "qemu-timer.h"
36 #include "qdev-addr.h"
38 /********************************************************/
39 /* debug Floppy devices */
40 //#define DEBUG_FLOPPY
43 #define FLOPPY_DPRINTF(fmt, ...) \
44 do { printf("FLOPPY: " fmt , ## __VA_ARGS__); } while (0)
46 #define FLOPPY_DPRINTF(fmt, ...)
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 */
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 */
79 typedef enum fdisk_flags_t
{
80 FDISK_DBL_SIDES
= 0x01,
83 typedef struct fdrive_t
{
87 uint8_t perpendicular
; /* 2.88 MB access mode */
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 */
100 static void fd_init (fdrive_t
*drv
, BlockDriverState
*bs
)
104 drv
->drive
= FDRIVE_DRV_NONE
;
105 drv
->perpendicular
= 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
,
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
);
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
);
151 sector
= _fd_sector(head
, track
, sect
, drv
->last_sect
);
153 if (sector
!= fd_sector(drv
)) {
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
);
162 if (drv
->track
!= track
)
171 /* Set drive back to track 0 */
172 static void fd_recalibrate (fdrive_t
*drv
)
174 FLOPPY_DPRINTF("recalibrate\n");
180 /* Recognize floppy formats */
181 typedef struct 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", },
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
);
253 bdrv_get_geometry(drv
->bs
, &nb_sectors
);
257 parse
= &fd_formats
[i
];
258 if (parse
->drive
== FDRIVE_DRV_NONE
)
260 if (drv
->drive
== parse
->drive
||
261 drv
->drive
== FDRIVE_DRV_NONE
) {
262 size
= (parse
->max_head
+ 1) * parse
->max_track
*
264 if (nb_sectors
== size
) {
268 if (first_match
== -1)
273 if (first_match
== -1)
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");
287 drv
->flags
&= ~FDISK_DBL_SIDES
;
289 drv
->flags
|= FDISK_DBL_SIDES
;
291 drv
->max_track
= max_track
;
292 drv
->last_sect
= last_sect
;
295 FLOPPY_DPRINTF("No disk in drive\n");
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
);
332 FD_STATE_MULTI
= 0x01, /* multi track flag */
333 FD_STATE_FORMAT
= 0x02, /* format flag */
334 FD_STATE_SEEK
= 0x04, /* seek flag */
349 FD_CMD_READ_TRACK
= 0x02,
350 FD_CMD_SPECIFY
= 0x03,
351 FD_CMD_SENSE_DRIVE_STATUS
= 0x04,
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,
362 FD_CMD_VERSION
= 0x10,
363 FD_CMD_SCAN_EQUAL
= 0x11,
364 FD_CMD_PERPENDICULAR_MODE
= 0x12,
365 FD_CMD_CONFIGURE
= 0x13,
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,
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,
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 */
392 FD_SR0_ABNTERM
= 0x40,
393 FD_SR0_INVCMD
= 0x80,
394 FD_SR0_RDYCHG
= 0xc0,
398 FD_SR1_EC
= 0x80, /* End of cylinder */
402 FD_SR2_SNS
= 0x04, /* Scan not satisfied */
403 FD_SR2_SEH
= 0x08, /* Scan equal hit */
414 FD_SRA_INTPEND
= 0x80,
428 FD_DOR_SELMASK
= 0x03,
430 FD_DOR_SELMASK
= 0x01,
432 FD_DOR_nRESET
= 0x04,
434 FD_DOR_MOTEN0
= 0x10,
435 FD_DOR_MOTEN1
= 0x20,
436 FD_DOR_MOTEN2
= 0x40,
437 FD_DOR_MOTEN3
= 0x80,
442 FD_TDR_BOOTSEL
= 0x0c,
444 FD_TDR_BOOTSEL
= 0x04,
449 FD_DSR_DRATEMASK
= 0x03,
450 FD_DSR_PWRDOWN
= 0x40,
451 FD_DSR_SWRESET
= 0x80,
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,
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)
475 /* Controller's identification */
480 /* Controller state */
481 QEMUTimer
*result_timer
;
498 uint8_t eot
; /* last wanted sector */
499 /* States kept only to be returned back */
503 /* precompensation */
507 /* Power down config (also with status regB access mode */
512 fdrive_t drives
[MAX_FD
];
516 static uint32_t fdctrl_read (void *opaque
, uint32_t reg
)
518 fdctrl_t
*fdctrl
= opaque
;
523 retval
= fdctrl_read_statusA(fdctrl
);
526 retval
= fdctrl_read_statusB(fdctrl
);
529 retval
= fdctrl_read_dor(fdctrl
);
532 retval
= fdctrl_read_tape(fdctrl
);
535 retval
= fdctrl_read_main_status(fdctrl
);
538 retval
= fdctrl_read_data(fdctrl
);
541 retval
= fdctrl_read_dir(fdctrl
);
544 retval
= (uint32_t)(-1);
547 FLOPPY_DPRINTF("read reg%d: 0x%02x\n", reg
& 7, retval
);
552 static void fdctrl_write (void *opaque
, uint32_t reg
, uint32_t value
)
554 fdctrl_t
*fdctrl
= opaque
;
556 FLOPPY_DPRINTF("write reg%d: 0x%02x\n", reg
& 7, value
);
560 fdctrl_write_dor(fdctrl
, value
);
563 fdctrl_write_tape(fdctrl
, value
);
566 fdctrl_write_rate(fdctrl
, value
);
569 fdctrl_write_data(fdctrl
, value
);
576 static uint32_t fdctrl_read_port (void *opaque
, uint32_t reg
)
578 return fdctrl_read(opaque
, reg
& 7);
581 static void fdctrl_write_port (void *opaque
, uint32_t reg
, uint32_t value
)
583 fdctrl_write(opaque
, reg
& 7, value
);
586 static uint32_t fdctrl_read_mem (void *opaque
, target_phys_addr_t reg
)
588 return fdctrl_read(opaque
, (uint32_t)reg
);
591 static void fdctrl_write_mem (void *opaque
,
592 target_phys_addr_t reg
, uint32_t value
)
594 fdctrl_write(opaque
, (uint32_t)reg
, value
);
597 static CPUReadMemoryFunc
*fdctrl_mem_read
[3] = {
603 static CPUWriteMemoryFunc
*fdctrl_mem_write
[3] = {
609 static CPUReadMemoryFunc
*fdctrl_mem_read_strict
[3] = {
615 static CPUWriteMemoryFunc
*fdctrl_mem_write_strict
[3] = {
621 static void fd_save (QEMUFile
*f
, fdrive_t
*fd
)
623 qemu_put_8s(f
, &fd
->head
);
624 qemu_put_8s(f
, &fd
->track
);
625 qemu_put_8s(f
, &fd
->sect
);
628 static void fdc_save (QEMUFile
*f
, void *opaque
)
630 fdctrl_t
*s
= opaque
;
633 uint8_t dor
= s
->dor
| GET_CUR_DRV(s
);
635 /* Controller state */
636 qemu_put_8s(f
, &s
->sra
);
637 qemu_put_8s(f
, &s
->srb
);
638 qemu_put_8s(f
, &dor
);
639 qemu_put_8s(f
, &s
->tdr
);
640 qemu_put_8s(f
, &s
->dsr
);
641 qemu_put_8s(f
, &s
->msr
);
642 qemu_put_8s(f
, &s
->status0
);
643 qemu_put_8s(f
, &s
->status1
);
644 qemu_put_8s(f
, &s
->status2
);
646 qemu_put_buffer(f
, s
->fifo
, FD_SECTOR_LEN
);
647 qemu_put_be32s(f
, &s
->data_pos
);
648 qemu_put_be32s(f
, &s
->data_len
);
649 qemu_put_8s(f
, &s
->data_state
);
650 qemu_put_8s(f
, &s
->data_dir
);
651 qemu_put_8s(f
, &s
->eot
);
652 /* States kept only to be returned back */
653 qemu_put_8s(f
, &s
->timer0
);
654 qemu_put_8s(f
, &s
->timer1
);
655 qemu_put_8s(f
, &s
->precomp_trk
);
656 qemu_put_8s(f
, &s
->config
);
657 qemu_put_8s(f
, &s
->lock
);
658 qemu_put_8s(f
, &s
->pwrd
);
661 qemu_put_8s(f
, &tmp
);
662 for (i
= 0; i
< MAX_FD
; i
++)
663 fd_save(f
, &s
->drives
[i
]);
666 static int fd_load (QEMUFile
*f
, fdrive_t
*fd
)
668 qemu_get_8s(f
, &fd
->head
);
669 qemu_get_8s(f
, &fd
->track
);
670 qemu_get_8s(f
, &fd
->sect
);
675 static int fdc_load (QEMUFile
*f
, void *opaque
, int version_id
)
677 fdctrl_t
*s
= opaque
;
684 /* Controller state */
685 qemu_get_8s(f
, &s
->sra
);
686 qemu_get_8s(f
, &s
->srb
);
687 qemu_get_8s(f
, &s
->dor
);
688 SET_CUR_DRV(s
, s
->dor
& FD_DOR_SELMASK
);
689 s
->dor
&= ~FD_DOR_SELMASK
;
690 qemu_get_8s(f
, &s
->tdr
);
691 qemu_get_8s(f
, &s
->dsr
);
692 qemu_get_8s(f
, &s
->msr
);
693 qemu_get_8s(f
, &s
->status0
);
694 qemu_get_8s(f
, &s
->status1
);
695 qemu_get_8s(f
, &s
->status2
);
697 qemu_get_buffer(f
, s
->fifo
, FD_SECTOR_LEN
);
698 qemu_get_be32s(f
, &s
->data_pos
);
699 qemu_get_be32s(f
, &s
->data_len
);
700 qemu_get_8s(f
, &s
->data_state
);
701 qemu_get_8s(f
, &s
->data_dir
);
702 qemu_get_8s(f
, &s
->eot
);
703 /* States kept only to be returned back */
704 qemu_get_8s(f
, &s
->timer0
);
705 qemu_get_8s(f
, &s
->timer1
);
706 qemu_get_8s(f
, &s
->precomp_trk
);
707 qemu_get_8s(f
, &s
->config
);
708 qemu_get_8s(f
, &s
->lock
);
709 qemu_get_8s(f
, &s
->pwrd
);
715 for (i
= 0; i
< n
; i
++) {
716 ret
= fd_load(f
, &s
->drives
[i
]);
724 static void fdctrl_external_reset(void *opaque
)
726 fdctrl_t
*s
= opaque
;
731 static void fdctrl_handle_tc(void *opaque
, int irq
, int level
)
733 //fdctrl_t *s = opaque;
737 FLOPPY_DPRINTF("TC pulsed\n");
741 /* XXX: may change if moved to bdrv */
742 int fdctrl_get_drive_type(fdctrl_t
*fdctrl
, int drive_num
)
744 return fdctrl
->drives
[drive_num
].drive
;
747 /* Change IRQ state */
748 static void fdctrl_reset_irq (fdctrl_t
*fdctrl
)
750 if (!(fdctrl
->sra
& FD_SRA_INTPEND
))
752 FLOPPY_DPRINTF("Reset interrupt\n");
753 qemu_set_irq(fdctrl
->irq
, 0);
754 fdctrl
->sra
&= ~FD_SRA_INTPEND
;
757 static void fdctrl_raise_irq (fdctrl_t
*fdctrl
, uint8_t status0
)
760 if (fdctrl
->sun4m
&& (fdctrl
->msr
& FD_MSR_CMDBUSY
)) {
762 fdctrl
->msr
&= ~FD_MSR_CMDBUSY
;
763 fdctrl
->msr
|= FD_MSR_RQM
| FD_MSR_DIO
;
764 fdctrl
->status0
= status0
;
767 if (!(fdctrl
->sra
& FD_SRA_INTPEND
)) {
768 qemu_set_irq(fdctrl
->irq
, 1);
769 fdctrl
->sra
|= FD_SRA_INTPEND
;
771 fdctrl
->reset_sensei
= 0;
772 fdctrl
->status0
= status0
;
773 FLOPPY_DPRINTF("Set interrupt status to 0x%02x\n", fdctrl
->status0
);
776 /* Reset controller */
777 static void fdctrl_reset (fdctrl_t
*fdctrl
, int do_irq
)
781 FLOPPY_DPRINTF("reset controller\n");
782 fdctrl_reset_irq(fdctrl
);
783 /* Initialise controller */
786 if (!fdctrl
->drives
[1].bs
)
787 fdctrl
->sra
|= FD_SRA_nDRV2
;
789 fdctrl
->dor
= FD_DOR_nRESET
;
790 fdctrl
->dor
|= (fdctrl
->dma_chann
!= -1) ? FD_DOR_DMAEN
: 0;
791 fdctrl
->msr
= FD_MSR_RQM
;
793 fdctrl
->data_pos
= 0;
794 fdctrl
->data_len
= 0;
795 fdctrl
->data_state
= 0;
796 fdctrl
->data_dir
= FD_DIR_WRITE
;
797 for (i
= 0; i
< MAX_FD
; i
++)
798 fd_recalibrate(&fdctrl
->drives
[i
]);
799 fdctrl_reset_fifo(fdctrl
);
801 fdctrl_raise_irq(fdctrl
, FD_SR0_RDYCHG
);
802 fdctrl
->reset_sensei
= FD_RESET_SENSEI_COUNT
;
806 static inline fdrive_t
*drv0 (fdctrl_t
*fdctrl
)
808 return &fdctrl
->drives
[(fdctrl
->tdr
& FD_TDR_BOOTSEL
) >> 2];
811 static inline fdrive_t
*drv1 (fdctrl_t
*fdctrl
)
813 if ((fdctrl
->tdr
& FD_TDR_BOOTSEL
) < (1 << 2))
814 return &fdctrl
->drives
[1];
816 return &fdctrl
->drives
[0];
820 static inline fdrive_t
*drv2 (fdctrl_t
*fdctrl
)
822 if ((fdctrl
->tdr
& FD_TDR_BOOTSEL
) < (2 << 2))
823 return &fdctrl
->drives
[2];
825 return &fdctrl
->drives
[1];
828 static inline fdrive_t
*drv3 (fdctrl_t
*fdctrl
)
830 if ((fdctrl
->tdr
& FD_TDR_BOOTSEL
) < (3 << 2))
831 return &fdctrl
->drives
[3];
833 return &fdctrl
->drives
[2];
837 static fdrive_t
*get_cur_drv (fdctrl_t
*fdctrl
)
839 switch (fdctrl
->cur_drv
) {
840 case 0: return drv0(fdctrl
);
841 case 1: return drv1(fdctrl
);
843 case 2: return drv2(fdctrl
);
844 case 3: return drv3(fdctrl
);
846 default: return NULL
;
850 /* Status A register : 0x00 (read-only) */
851 static uint32_t fdctrl_read_statusA (fdctrl_t
*fdctrl
)
853 uint32_t retval
= fdctrl
->sra
;
855 FLOPPY_DPRINTF("status register A: 0x%02x\n", retval
);
860 /* Status B register : 0x01 (read-only) */
861 static uint32_t fdctrl_read_statusB (fdctrl_t
*fdctrl
)
863 uint32_t retval
= fdctrl
->srb
;
865 FLOPPY_DPRINTF("status register B: 0x%02x\n", retval
);
870 /* Digital output register : 0x02 */
871 static uint32_t fdctrl_read_dor (fdctrl_t
*fdctrl
)
873 uint32_t retval
= fdctrl
->dor
;
876 retval
|= fdctrl
->cur_drv
;
877 FLOPPY_DPRINTF("digital output register: 0x%02x\n", retval
);
882 static void fdctrl_write_dor (fdctrl_t
*fdctrl
, uint32_t value
)
884 FLOPPY_DPRINTF("digital output register set to 0x%02x\n", value
);
887 if (value
& FD_DOR_MOTEN0
)
888 fdctrl
->srb
|= FD_SRB_MTR0
;
890 fdctrl
->srb
&= ~FD_SRB_MTR0
;
891 if (value
& FD_DOR_MOTEN1
)
892 fdctrl
->srb
|= FD_SRB_MTR1
;
894 fdctrl
->srb
&= ~FD_SRB_MTR1
;
898 fdctrl
->srb
|= FD_SRB_DR0
;
900 fdctrl
->srb
&= ~FD_SRB_DR0
;
903 if (!(value
& FD_DOR_nRESET
)) {
904 if (fdctrl
->dor
& FD_DOR_nRESET
) {
905 FLOPPY_DPRINTF("controller enter RESET state\n");
908 if (!(fdctrl
->dor
& FD_DOR_nRESET
)) {
909 FLOPPY_DPRINTF("controller out of RESET state\n");
910 fdctrl_reset(fdctrl
, 1);
911 fdctrl
->dsr
&= ~FD_DSR_PWRDOWN
;
915 fdctrl
->cur_drv
= value
& FD_DOR_SELMASK
;
920 /* Tape drive register : 0x03 */
921 static uint32_t fdctrl_read_tape (fdctrl_t
*fdctrl
)
923 uint32_t retval
= fdctrl
->tdr
;
925 FLOPPY_DPRINTF("tape drive register: 0x%02x\n", retval
);
930 static void fdctrl_write_tape (fdctrl_t
*fdctrl
, uint32_t value
)
933 if (!(fdctrl
->dor
& FD_DOR_nRESET
)) {
934 FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
937 FLOPPY_DPRINTF("tape drive register set to 0x%02x\n", value
);
938 /* Disk boot selection indicator */
939 fdctrl
->tdr
= value
& FD_TDR_BOOTSEL
;
940 /* Tape indicators: never allow */
943 /* Main status register : 0x04 (read) */
944 static uint32_t fdctrl_read_main_status (fdctrl_t
*fdctrl
)
946 uint32_t retval
= fdctrl
->msr
;
948 fdctrl
->dsr
&= ~FD_DSR_PWRDOWN
;
949 fdctrl
->dor
|= FD_DOR_nRESET
;
951 FLOPPY_DPRINTF("main status register: 0x%02x\n", retval
);
956 /* Data select rate register : 0x04 (write) */
957 static void fdctrl_write_rate (fdctrl_t
*fdctrl
, uint32_t value
)
960 if (!(fdctrl
->dor
& FD_DOR_nRESET
)) {
961 FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
964 FLOPPY_DPRINTF("select rate register set to 0x%02x\n", value
);
965 /* Reset: autoclear */
966 if (value
& FD_DSR_SWRESET
) {
967 fdctrl
->dor
&= ~FD_DOR_nRESET
;
968 fdctrl_reset(fdctrl
, 1);
969 fdctrl
->dor
|= FD_DOR_nRESET
;
971 if (value
& FD_DSR_PWRDOWN
) {
972 fdctrl_reset(fdctrl
, 1);
977 static int fdctrl_media_changed(fdrive_t
*drv
)
983 ret
= bdrv_media_changed(drv
->bs
);
990 /* Digital input register : 0x07 (read-only) */
991 static uint32_t fdctrl_read_dir (fdctrl_t
*fdctrl
)
995 if (fdctrl_media_changed(drv0(fdctrl
))
996 || fdctrl_media_changed(drv1(fdctrl
))
998 || fdctrl_media_changed(drv2(fdctrl
))
999 || fdctrl_media_changed(drv3(fdctrl
))
1002 retval
|= FD_DIR_DSKCHG
;
1004 FLOPPY_DPRINTF("Floppy digital input register: 0x%02x\n", retval
);
1009 /* FIFO state control */
1010 static void fdctrl_reset_fifo (fdctrl_t
*fdctrl
)
1012 fdctrl
->data_dir
= FD_DIR_WRITE
;
1013 fdctrl
->data_pos
= 0;
1014 fdctrl
->msr
&= ~(FD_MSR_CMDBUSY
| FD_MSR_DIO
);
1017 /* Set FIFO status for the host to read */
1018 static void fdctrl_set_fifo (fdctrl_t
*fdctrl
, int fifo_len
, int do_irq
)
1020 fdctrl
->data_dir
= FD_DIR_READ
;
1021 fdctrl
->data_len
= fifo_len
;
1022 fdctrl
->data_pos
= 0;
1023 fdctrl
->msr
|= FD_MSR_CMDBUSY
| FD_MSR_RQM
| FD_MSR_DIO
;
1025 fdctrl_raise_irq(fdctrl
, 0x00);
1028 /* Set an error: unimplemented/unknown command */
1029 static void fdctrl_unimplemented (fdctrl_t
*fdctrl
, int direction
)
1031 FLOPPY_ERROR("unimplemented command 0x%02x\n", fdctrl
->fifo
[0]);
1032 fdctrl
->fifo
[0] = FD_SR0_INVCMD
;
1033 fdctrl_set_fifo(fdctrl
, 1, 0);
1036 /* Seek to next sector */
1037 static int fdctrl_seek_to_next_sect (fdctrl_t
*fdctrl
, fdrive_t
*cur_drv
)
1039 FLOPPY_DPRINTF("seek to next sector (%d %02x %02x => %d)\n",
1040 cur_drv
->head
, cur_drv
->track
, cur_drv
->sect
,
1041 fd_sector(cur_drv
));
1042 /* XXX: cur_drv->sect >= cur_drv->last_sect should be an
1044 if (cur_drv
->sect
>= cur_drv
->last_sect
||
1045 cur_drv
->sect
== fdctrl
->eot
) {
1047 if (FD_MULTI_TRACK(fdctrl
->data_state
)) {
1048 if (cur_drv
->head
== 0 &&
1049 (cur_drv
->flags
& FDISK_DBL_SIDES
) != 0) {
1054 if ((cur_drv
->flags
& FDISK_DBL_SIDES
) == 0)
1061 FLOPPY_DPRINTF("seek to next track (%d %02x %02x => %d)\n",
1062 cur_drv
->head
, cur_drv
->track
,
1063 cur_drv
->sect
, fd_sector(cur_drv
));
1070 /* Callback for transfer end (stop or abort) */
1071 static void fdctrl_stop_transfer (fdctrl_t
*fdctrl
, uint8_t status0
,
1072 uint8_t status1
, uint8_t status2
)
1076 cur_drv
= get_cur_drv(fdctrl
);
1077 FLOPPY_DPRINTF("transfer status: %02x %02x %02x (%02x)\n",
1078 status0
, status1
, status2
,
1079 status0
| (cur_drv
->head
<< 2) | GET_CUR_DRV(fdctrl
));
1080 fdctrl
->fifo
[0] = status0
| (cur_drv
->head
<< 2) | GET_CUR_DRV(fdctrl
);
1081 fdctrl
->fifo
[1] = status1
;
1082 fdctrl
->fifo
[2] = status2
;
1083 fdctrl
->fifo
[3] = cur_drv
->track
;
1084 fdctrl
->fifo
[4] = cur_drv
->head
;
1085 fdctrl
->fifo
[5] = cur_drv
->sect
;
1086 fdctrl
->fifo
[6] = FD_SECTOR_SC
;
1087 fdctrl
->data_dir
= FD_DIR_READ
;
1088 if (!(fdctrl
->msr
& FD_MSR_NONDMA
)) {
1089 DMA_release_DREQ(fdctrl
->dma_chann
);
1091 fdctrl
->msr
|= FD_MSR_RQM
| FD_MSR_DIO
;
1092 fdctrl
->msr
&= ~FD_MSR_NONDMA
;
1093 fdctrl_set_fifo(fdctrl
, 7, 1);
1096 /* Prepare a data transfer (either DMA or FIFO) */
1097 static void fdctrl_start_transfer (fdctrl_t
*fdctrl
, int direction
)
1103 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1104 cur_drv
= get_cur_drv(fdctrl
);
1105 kt
= fdctrl
->fifo
[2];
1106 kh
= fdctrl
->fifo
[3];
1107 ks
= fdctrl
->fifo
[4];
1108 FLOPPY_DPRINTF("Start transfer at %d %d %02x %02x (%d)\n",
1109 GET_CUR_DRV(fdctrl
), kh
, kt
, ks
,
1110 _fd_sector(kh
, kt
, ks
, cur_drv
->last_sect
));
1111 switch (fd_seek(cur_drv
, kh
, kt
, ks
, fdctrl
->config
& FD_CONFIG_EIS
)) {
1114 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, 0x00, 0x00);
1115 fdctrl
->fifo
[3] = kt
;
1116 fdctrl
->fifo
[4] = kh
;
1117 fdctrl
->fifo
[5] = ks
;
1121 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, FD_SR1_EC
, 0x00);
1122 fdctrl
->fifo
[3] = kt
;
1123 fdctrl
->fifo
[4] = kh
;
1124 fdctrl
->fifo
[5] = ks
;
1127 /* No seek enabled */
1128 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, 0x00, 0x00);
1129 fdctrl
->fifo
[3] = kt
;
1130 fdctrl
->fifo
[4] = kh
;
1131 fdctrl
->fifo
[5] = ks
;
1140 /* Set the FIFO state */
1141 fdctrl
->data_dir
= direction
;
1142 fdctrl
->data_pos
= 0;
1143 fdctrl
->msr
|= FD_MSR_CMDBUSY
;
1144 if (fdctrl
->fifo
[0] & 0x80)
1145 fdctrl
->data_state
|= FD_STATE_MULTI
;
1147 fdctrl
->data_state
&= ~FD_STATE_MULTI
;
1149 fdctrl
->data_state
|= FD_STATE_SEEK
;
1151 fdctrl
->data_state
&= ~FD_STATE_SEEK
;
1152 if (fdctrl
->fifo
[5] == 00) {
1153 fdctrl
->data_len
= fdctrl
->fifo
[8];
1156 fdctrl
->data_len
= 128 << (fdctrl
->fifo
[5] > 7 ? 7 : fdctrl
->fifo
[5]);
1157 tmp
= (fdctrl
->fifo
[6] - ks
+ 1);
1158 if (fdctrl
->fifo
[0] & 0x80)
1159 tmp
+= fdctrl
->fifo
[6];
1160 fdctrl
->data_len
*= tmp
;
1162 fdctrl
->eot
= fdctrl
->fifo
[6];
1163 if (fdctrl
->dor
& FD_DOR_DMAEN
) {
1165 /* DMA transfer are enabled. Check if DMA channel is well programmed */
1166 dma_mode
= DMA_get_channel_mode(fdctrl
->dma_chann
);
1167 dma_mode
= (dma_mode
>> 2) & 3;
1168 FLOPPY_DPRINTF("dma_mode=%d direction=%d (%d - %d)\n",
1169 dma_mode
, direction
,
1170 (128 << fdctrl
->fifo
[5]) *
1171 (cur_drv
->last_sect
- ks
+ 1), fdctrl
->data_len
);
1172 if (((direction
== FD_DIR_SCANE
|| direction
== FD_DIR_SCANL
||
1173 direction
== FD_DIR_SCANH
) && dma_mode
== 0) ||
1174 (direction
== FD_DIR_WRITE
&& dma_mode
== 2) ||
1175 (direction
== FD_DIR_READ
&& dma_mode
== 1)) {
1176 /* No access is allowed until DMA transfer has completed */
1177 fdctrl
->msr
&= ~FD_MSR_RQM
;
1178 /* Now, we just have to wait for the DMA controller to
1181 DMA_hold_DREQ(fdctrl
->dma_chann
);
1182 DMA_schedule(fdctrl
->dma_chann
);
1185 FLOPPY_ERROR("dma_mode=%d direction=%d\n", dma_mode
, direction
);
1188 FLOPPY_DPRINTF("start non-DMA transfer\n");
1189 fdctrl
->msr
|= FD_MSR_NONDMA
;
1190 if (direction
!= FD_DIR_WRITE
)
1191 fdctrl
->msr
|= FD_MSR_DIO
;
1192 /* IO based transfer: calculate len */
1193 fdctrl_raise_irq(fdctrl
, 0x00);
1198 /* Prepare a transfer of deleted data */
1199 static void fdctrl_start_transfer_del (fdctrl_t
*fdctrl
, int direction
)
1201 FLOPPY_ERROR("fdctrl_start_transfer_del() unimplemented\n");
1203 /* We don't handle deleted data,
1204 * so we don't return *ANYTHING*
1206 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
| FD_SR0_SEEK
, 0x00, 0x00);
1209 /* handlers for DMA transfers */
1210 static int fdctrl_transfer_handler (void *opaque
, int nchan
,
1211 int dma_pos
, int dma_len
)
1215 int len
, start_pos
, rel_pos
;
1216 uint8_t status0
= 0x00, status1
= 0x00, status2
= 0x00;
1219 if (fdctrl
->msr
& FD_MSR_RQM
) {
1220 FLOPPY_DPRINTF("Not in DMA transfer mode !\n");
1223 cur_drv
= get_cur_drv(fdctrl
);
1224 if (fdctrl
->data_dir
== FD_DIR_SCANE
|| fdctrl
->data_dir
== FD_DIR_SCANL
||
1225 fdctrl
->data_dir
== FD_DIR_SCANH
)
1226 status2
= FD_SR2_SNS
;
1227 if (dma_len
> fdctrl
->data_len
)
1228 dma_len
= fdctrl
->data_len
;
1229 if (cur_drv
->bs
== NULL
) {
1230 if (fdctrl
->data_dir
== FD_DIR_WRITE
)
1231 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
| FD_SR0_SEEK
, 0x00, 0x00);
1233 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, 0x00, 0x00);
1235 goto transfer_error
;
1237 rel_pos
= fdctrl
->data_pos
% FD_SECTOR_LEN
;
1238 for (start_pos
= fdctrl
->data_pos
; fdctrl
->data_pos
< dma_len
;) {
1239 len
= dma_len
- fdctrl
->data_pos
;
1240 if (len
+ rel_pos
> FD_SECTOR_LEN
)
1241 len
= FD_SECTOR_LEN
- rel_pos
;
1242 FLOPPY_DPRINTF("copy %d bytes (%d %d %d) %d pos %d %02x "
1243 "(%d-0x%08x 0x%08x)\n", len
, dma_len
, fdctrl
->data_pos
,
1244 fdctrl
->data_len
, GET_CUR_DRV(fdctrl
), cur_drv
->head
,
1245 cur_drv
->track
, cur_drv
->sect
, fd_sector(cur_drv
),
1246 fd_sector(cur_drv
) * FD_SECTOR_LEN
);
1247 if (fdctrl
->data_dir
!= FD_DIR_WRITE
||
1248 len
< FD_SECTOR_LEN
|| rel_pos
!= 0) {
1249 /* READ & SCAN commands and realign to a sector for WRITE */
1250 if (bdrv_read(cur_drv
->bs
, fd_sector(cur_drv
),
1251 fdctrl
->fifo
, 1) < 0) {
1252 FLOPPY_DPRINTF("Floppy: error getting sector %d\n",
1253 fd_sector(cur_drv
));
1254 /* Sure, image size is too small... */
1255 memset(fdctrl
->fifo
, 0, FD_SECTOR_LEN
);
1258 switch (fdctrl
->data_dir
) {
1261 DMA_write_memory (nchan
, fdctrl
->fifo
+ rel_pos
,
1262 fdctrl
->data_pos
, len
);
1265 /* WRITE commands */
1266 DMA_read_memory (nchan
, fdctrl
->fifo
+ rel_pos
,
1267 fdctrl
->data_pos
, len
);
1268 if (bdrv_write(cur_drv
->bs
, fd_sector(cur_drv
),
1269 fdctrl
->fifo
, 1) < 0) {
1270 FLOPPY_ERROR("writing sector %d\n", fd_sector(cur_drv
));
1271 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
| FD_SR0_SEEK
, 0x00, 0x00);
1272 goto transfer_error
;
1278 uint8_t tmpbuf
[FD_SECTOR_LEN
];
1280 DMA_read_memory (nchan
, tmpbuf
, fdctrl
->data_pos
, len
);
1281 ret
= memcmp(tmpbuf
, fdctrl
->fifo
+ rel_pos
, len
);
1283 status2
= FD_SR2_SEH
;
1286 if ((ret
< 0 && fdctrl
->data_dir
== FD_DIR_SCANL
) ||
1287 (ret
> 0 && fdctrl
->data_dir
== FD_DIR_SCANH
)) {
1294 fdctrl
->data_pos
+= len
;
1295 rel_pos
= fdctrl
->data_pos
% FD_SECTOR_LEN
;
1297 /* Seek to next sector */
1298 if (!fdctrl_seek_to_next_sect(fdctrl
, cur_drv
))
1303 len
= fdctrl
->data_pos
- start_pos
;
1304 FLOPPY_DPRINTF("end transfer %d %d %d\n",
1305 fdctrl
->data_pos
, len
, fdctrl
->data_len
);
1306 if (fdctrl
->data_dir
== FD_DIR_SCANE
||
1307 fdctrl
->data_dir
== FD_DIR_SCANL
||
1308 fdctrl
->data_dir
== FD_DIR_SCANH
)
1309 status2
= FD_SR2_SEH
;
1310 if (FD_DID_SEEK(fdctrl
->data_state
))
1311 status0
|= FD_SR0_SEEK
;
1312 fdctrl
->data_len
-= len
;
1313 fdctrl_stop_transfer(fdctrl
, status0
, status1
, status2
);
1319 /* Data register : 0x05 */
1320 static uint32_t fdctrl_read_data (fdctrl_t
*fdctrl
)
1323 uint32_t retval
= 0;
1326 cur_drv
= get_cur_drv(fdctrl
);
1327 fdctrl
->dsr
&= ~FD_DSR_PWRDOWN
;
1328 if (!(fdctrl
->msr
& FD_MSR_RQM
) || !(fdctrl
->msr
& FD_MSR_DIO
)) {
1329 FLOPPY_ERROR("controller not ready for reading\n");
1332 pos
= fdctrl
->data_pos
;
1333 if (fdctrl
->msr
& FD_MSR_NONDMA
) {
1334 pos
%= FD_SECTOR_LEN
;
1336 if (fdctrl
->data_pos
!= 0)
1337 if (!fdctrl_seek_to_next_sect(fdctrl
, cur_drv
)) {
1338 FLOPPY_DPRINTF("error seeking to next sector %d\n",
1339 fd_sector(cur_drv
));
1342 if (bdrv_read(cur_drv
->bs
, fd_sector(cur_drv
), fdctrl
->fifo
, 1) < 0) {
1343 FLOPPY_DPRINTF("error getting sector %d\n",
1344 fd_sector(cur_drv
));
1345 /* Sure, image size is too small... */
1346 memset(fdctrl
->fifo
, 0, FD_SECTOR_LEN
);
1350 retval
= fdctrl
->fifo
[pos
];
1351 if (++fdctrl
->data_pos
== fdctrl
->data_len
) {
1352 fdctrl
->data_pos
= 0;
1353 /* Switch from transfer mode to status mode
1354 * then from status mode to command mode
1356 if (fdctrl
->msr
& FD_MSR_NONDMA
) {
1357 fdctrl_stop_transfer(fdctrl
, FD_SR0_SEEK
, 0x00, 0x00);
1359 fdctrl_reset_fifo(fdctrl
);
1360 fdctrl_reset_irq(fdctrl
);
1363 FLOPPY_DPRINTF("data register: 0x%02x\n", retval
);
1368 static void fdctrl_format_sector (fdctrl_t
*fdctrl
)
1373 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1374 cur_drv
= get_cur_drv(fdctrl
);
1375 kt
= fdctrl
->fifo
[6];
1376 kh
= fdctrl
->fifo
[7];
1377 ks
= fdctrl
->fifo
[8];
1378 FLOPPY_DPRINTF("format sector at %d %d %02x %02x (%d)\n",
1379 GET_CUR_DRV(fdctrl
), kh
, kt
, ks
,
1380 _fd_sector(kh
, kt
, ks
, cur_drv
->last_sect
));
1381 switch (fd_seek(cur_drv
, kh
, kt
, ks
, fdctrl
->config
& FD_CONFIG_EIS
)) {
1384 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, 0x00, 0x00);
1385 fdctrl
->fifo
[3] = kt
;
1386 fdctrl
->fifo
[4] = kh
;
1387 fdctrl
->fifo
[5] = ks
;
1391 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, FD_SR1_EC
, 0x00);
1392 fdctrl
->fifo
[3] = kt
;
1393 fdctrl
->fifo
[4] = kh
;
1394 fdctrl
->fifo
[5] = ks
;
1397 /* No seek enabled */
1398 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, 0x00, 0x00);
1399 fdctrl
->fifo
[3] = kt
;
1400 fdctrl
->fifo
[4] = kh
;
1401 fdctrl
->fifo
[5] = ks
;
1404 fdctrl
->data_state
|= FD_STATE_SEEK
;
1409 memset(fdctrl
->fifo
, 0, FD_SECTOR_LEN
);
1410 if (cur_drv
->bs
== NULL
||
1411 bdrv_write(cur_drv
->bs
, fd_sector(cur_drv
), fdctrl
->fifo
, 1) < 0) {
1412 FLOPPY_ERROR("formatting sector %d\n", fd_sector(cur_drv
));
1413 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
| FD_SR0_SEEK
, 0x00, 0x00);
1415 if (cur_drv
->sect
== cur_drv
->last_sect
) {
1416 fdctrl
->data_state
&= ~FD_STATE_FORMAT
;
1417 /* Last sector done */
1418 if (FD_DID_SEEK(fdctrl
->data_state
))
1419 fdctrl_stop_transfer(fdctrl
, FD_SR0_SEEK
, 0x00, 0x00);
1421 fdctrl_stop_transfer(fdctrl
, 0x00, 0x00, 0x00);
1424 fdctrl
->data_pos
= 0;
1425 fdctrl
->data_len
= 4;
1430 static void fdctrl_handle_lock (fdctrl_t
*fdctrl
, int direction
)
1432 fdctrl
->lock
= (fdctrl
->fifo
[0] & 0x80) ? 1 : 0;
1433 fdctrl
->fifo
[0] = fdctrl
->lock
<< 4;
1434 fdctrl_set_fifo(fdctrl
, 1, fdctrl
->lock
);
1437 static void fdctrl_handle_dumpreg (fdctrl_t
*fdctrl
, int direction
)
1439 fdrive_t
*cur_drv
= get_cur_drv(fdctrl
);
1441 /* Drives position */
1442 fdctrl
->fifo
[0] = drv0(fdctrl
)->track
;
1443 fdctrl
->fifo
[1] = drv1(fdctrl
)->track
;
1445 fdctrl
->fifo
[2] = drv2(fdctrl
)->track
;
1446 fdctrl
->fifo
[3] = drv3(fdctrl
)->track
;
1448 fdctrl
->fifo
[2] = 0;
1449 fdctrl
->fifo
[3] = 0;
1452 fdctrl
->fifo
[4] = fdctrl
->timer0
;
1453 fdctrl
->fifo
[5] = (fdctrl
->timer1
<< 1) | (fdctrl
->dor
& FD_DOR_DMAEN
? 1 : 0);
1454 fdctrl
->fifo
[6] = cur_drv
->last_sect
;
1455 fdctrl
->fifo
[7] = (fdctrl
->lock
<< 7) |
1456 (cur_drv
->perpendicular
<< 2);
1457 fdctrl
->fifo
[8] = fdctrl
->config
;
1458 fdctrl
->fifo
[9] = fdctrl
->precomp_trk
;
1459 fdctrl_set_fifo(fdctrl
, 10, 0);
1462 static void fdctrl_handle_version (fdctrl_t
*fdctrl
, int direction
)
1464 /* Controller's version */
1465 fdctrl
->fifo
[0] = fdctrl
->version
;
1466 fdctrl_set_fifo(fdctrl
, 1, 1);
1469 static void fdctrl_handle_partid (fdctrl_t
*fdctrl
, int direction
)
1471 fdctrl
->fifo
[0] = 0x41; /* Stepping 1 */
1472 fdctrl_set_fifo(fdctrl
, 1, 0);
1475 static void fdctrl_handle_restore (fdctrl_t
*fdctrl
, int direction
)
1477 fdrive_t
*cur_drv
= get_cur_drv(fdctrl
);
1479 /* Drives position */
1480 drv0(fdctrl
)->track
= fdctrl
->fifo
[3];
1481 drv1(fdctrl
)->track
= fdctrl
->fifo
[4];
1483 drv2(fdctrl
)->track
= fdctrl
->fifo
[5];
1484 drv3(fdctrl
)->track
= fdctrl
->fifo
[6];
1487 fdctrl
->timer0
= fdctrl
->fifo
[7];
1488 fdctrl
->timer1
= fdctrl
->fifo
[8];
1489 cur_drv
->last_sect
= fdctrl
->fifo
[9];
1490 fdctrl
->lock
= fdctrl
->fifo
[10] >> 7;
1491 cur_drv
->perpendicular
= (fdctrl
->fifo
[10] >> 2) & 0xF;
1492 fdctrl
->config
= fdctrl
->fifo
[11];
1493 fdctrl
->precomp_trk
= fdctrl
->fifo
[12];
1494 fdctrl
->pwrd
= fdctrl
->fifo
[13];
1495 fdctrl_reset_fifo(fdctrl
);
1498 static void fdctrl_handle_save (fdctrl_t
*fdctrl
, int direction
)
1500 fdrive_t
*cur_drv
= get_cur_drv(fdctrl
);
1502 fdctrl
->fifo
[0] = 0;
1503 fdctrl
->fifo
[1] = 0;
1504 /* Drives position */
1505 fdctrl
->fifo
[2] = drv0(fdctrl
)->track
;
1506 fdctrl
->fifo
[3] = drv1(fdctrl
)->track
;
1508 fdctrl
->fifo
[4] = drv2(fdctrl
)->track
;
1509 fdctrl
->fifo
[5] = drv3(fdctrl
)->track
;
1511 fdctrl
->fifo
[4] = 0;
1512 fdctrl
->fifo
[5] = 0;
1515 fdctrl
->fifo
[6] = fdctrl
->timer0
;
1516 fdctrl
->fifo
[7] = fdctrl
->timer1
;
1517 fdctrl
->fifo
[8] = cur_drv
->last_sect
;
1518 fdctrl
->fifo
[9] = (fdctrl
->lock
<< 7) |
1519 (cur_drv
->perpendicular
<< 2);
1520 fdctrl
->fifo
[10] = fdctrl
->config
;
1521 fdctrl
->fifo
[11] = fdctrl
->precomp_trk
;
1522 fdctrl
->fifo
[12] = fdctrl
->pwrd
;
1523 fdctrl
->fifo
[13] = 0;
1524 fdctrl
->fifo
[14] = 0;
1525 fdctrl_set_fifo(fdctrl
, 15, 1);
1528 static void fdctrl_handle_readid (fdctrl_t
*fdctrl
, int direction
)
1530 fdrive_t
*cur_drv
= get_cur_drv(fdctrl
);
1532 /* XXX: should set main status register to busy */
1533 cur_drv
->head
= (fdctrl
->fifo
[1] >> 2) & 1;
1534 qemu_mod_timer(fdctrl
->result_timer
,
1535 qemu_get_clock(vm_clock
) + (ticks_per_sec
/ 50));
1538 static void fdctrl_handle_format_track (fdctrl_t
*fdctrl
, int direction
)
1542 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1543 cur_drv
= get_cur_drv(fdctrl
);
1544 fdctrl
->data_state
|= FD_STATE_FORMAT
;
1545 if (fdctrl
->fifo
[0] & 0x80)
1546 fdctrl
->data_state
|= FD_STATE_MULTI
;
1548 fdctrl
->data_state
&= ~FD_STATE_MULTI
;
1549 fdctrl
->data_state
&= ~FD_STATE_SEEK
;
1551 fdctrl
->fifo
[2] > 7 ? 16384 : 128 << fdctrl
->fifo
[2];
1553 cur_drv
->last_sect
=
1554 cur_drv
->flags
& FDISK_DBL_SIDES
? fdctrl
->fifo
[3] :
1555 fdctrl
->fifo
[3] / 2;
1557 cur_drv
->last_sect
= fdctrl
->fifo
[3];
1559 /* TODO: implement format using DMA expected by the Bochs BIOS
1560 * and Linux fdformat (read 3 bytes per sector via DMA and fill
1561 * the sector with the specified fill byte
1563 fdctrl
->data_state
&= ~FD_STATE_FORMAT
;
1564 fdctrl_stop_transfer(fdctrl
, 0x00, 0x00, 0x00);
1567 static void fdctrl_handle_specify (fdctrl_t
*fdctrl
, int direction
)
1569 fdctrl
->timer0
= (fdctrl
->fifo
[1] >> 4) & 0xF;
1570 fdctrl
->timer1
= fdctrl
->fifo
[2] >> 1;
1571 if (fdctrl
->fifo
[2] & 1)
1572 fdctrl
->dor
&= ~FD_DOR_DMAEN
;
1574 fdctrl
->dor
|= FD_DOR_DMAEN
;
1575 /* No result back */
1576 fdctrl_reset_fifo(fdctrl
);
1579 static void fdctrl_handle_sense_drive_status (fdctrl_t
*fdctrl
, int direction
)
1583 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1584 cur_drv
= get_cur_drv(fdctrl
);
1585 cur_drv
->head
= (fdctrl
->fifo
[1] >> 2) & 1;
1586 /* 1 Byte status back */
1587 fdctrl
->fifo
[0] = (cur_drv
->ro
<< 6) |
1588 (cur_drv
->track
== 0 ? 0x10 : 0x00) |
1589 (cur_drv
->head
<< 2) |
1590 GET_CUR_DRV(fdctrl
) |
1592 fdctrl_set_fifo(fdctrl
, 1, 0);
1595 static void fdctrl_handle_recalibrate (fdctrl_t
*fdctrl
, int direction
)
1599 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1600 cur_drv
= get_cur_drv(fdctrl
);
1601 fd_recalibrate(cur_drv
);
1602 fdctrl_reset_fifo(fdctrl
);
1603 /* Raise Interrupt */
1604 fdctrl_raise_irq(fdctrl
, FD_SR0_SEEK
);
1607 static void fdctrl_handle_sense_interrupt_status (fdctrl_t
*fdctrl
, int direction
)
1609 fdrive_t
*cur_drv
= get_cur_drv(fdctrl
);
1611 if(fdctrl
->reset_sensei
> 0) {
1613 FD_SR0_RDYCHG
+ FD_RESET_SENSEI_COUNT
- fdctrl
->reset_sensei
;
1614 fdctrl
->reset_sensei
--;
1616 /* XXX: status0 handling is broken for read/write
1617 commands, so we do this hack. It should be suppressed
1620 FD_SR0_SEEK
| (cur_drv
->head
<< 2) | GET_CUR_DRV(fdctrl
);
1623 fdctrl
->fifo
[1] = cur_drv
->track
;
1624 fdctrl_set_fifo(fdctrl
, 2, 0);
1625 fdctrl_reset_irq(fdctrl
);
1626 fdctrl
->status0
= FD_SR0_RDYCHG
;
1629 static void fdctrl_handle_seek (fdctrl_t
*fdctrl
, int direction
)
1633 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1634 cur_drv
= get_cur_drv(fdctrl
);
1635 fdctrl_reset_fifo(fdctrl
);
1636 if (fdctrl
->fifo
[2] > cur_drv
->max_track
) {
1637 fdctrl_raise_irq(fdctrl
, FD_SR0_ABNTERM
| FD_SR0_SEEK
);
1639 cur_drv
->track
= fdctrl
->fifo
[2];
1640 /* Raise Interrupt */
1641 fdctrl_raise_irq(fdctrl
, FD_SR0_SEEK
);
1645 static void fdctrl_handle_perpendicular_mode (fdctrl_t
*fdctrl
, int direction
)
1647 fdrive_t
*cur_drv
= get_cur_drv(fdctrl
);
1649 if (fdctrl
->fifo
[1] & 0x80)
1650 cur_drv
->perpendicular
= fdctrl
->fifo
[1] & 0x7;
1651 /* No result back */
1652 fdctrl_reset_fifo(fdctrl
);
1655 static void fdctrl_handle_configure (fdctrl_t
*fdctrl
, int direction
)
1657 fdctrl
->config
= fdctrl
->fifo
[2];
1658 fdctrl
->precomp_trk
= fdctrl
->fifo
[3];
1659 /* No result back */
1660 fdctrl_reset_fifo(fdctrl
);
1663 static void fdctrl_handle_powerdown_mode (fdctrl_t
*fdctrl
, int direction
)
1665 fdctrl
->pwrd
= fdctrl
->fifo
[1];
1666 fdctrl
->fifo
[0] = fdctrl
->fifo
[1];
1667 fdctrl_set_fifo(fdctrl
, 1, 1);
1670 static void fdctrl_handle_option (fdctrl_t
*fdctrl
, int direction
)
1672 /* No result back */
1673 fdctrl_reset_fifo(fdctrl
);
1676 static void fdctrl_handle_drive_specification_command (fdctrl_t
*fdctrl
, int direction
)
1678 fdrive_t
*cur_drv
= get_cur_drv(fdctrl
);
1680 if (fdctrl
->fifo
[fdctrl
->data_pos
- 1] & 0x80) {
1681 /* Command parameters done */
1682 if (fdctrl
->fifo
[fdctrl
->data_pos
- 1] & 0x40) {
1683 fdctrl
->fifo
[0] = fdctrl
->fifo
[1];
1684 fdctrl
->fifo
[2] = 0;
1685 fdctrl
->fifo
[3] = 0;
1686 fdctrl_set_fifo(fdctrl
, 4, 1);
1688 fdctrl_reset_fifo(fdctrl
);
1690 } else if (fdctrl
->data_len
> 7) {
1692 fdctrl
->fifo
[0] = 0x80 |
1693 (cur_drv
->head
<< 2) | GET_CUR_DRV(fdctrl
);
1694 fdctrl_set_fifo(fdctrl
, 1, 1);
1698 static void fdctrl_handle_relative_seek_out (fdctrl_t
*fdctrl
, int direction
)
1702 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1703 cur_drv
= get_cur_drv(fdctrl
);
1704 if (fdctrl
->fifo
[2] + cur_drv
->track
>= cur_drv
->max_track
) {
1705 cur_drv
->track
= cur_drv
->max_track
- 1;
1707 cur_drv
->track
+= fdctrl
->fifo
[2];
1709 fdctrl_reset_fifo(fdctrl
);
1710 /* Raise Interrupt */
1711 fdctrl_raise_irq(fdctrl
, FD_SR0_SEEK
);
1714 static void fdctrl_handle_relative_seek_in (fdctrl_t
*fdctrl
, int direction
)
1718 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1719 cur_drv
= get_cur_drv(fdctrl
);
1720 if (fdctrl
->fifo
[2] > cur_drv
->track
) {
1723 cur_drv
->track
-= fdctrl
->fifo
[2];
1725 fdctrl_reset_fifo(fdctrl
);
1726 /* Raise Interrupt */
1727 fdctrl_raise_irq(fdctrl
, FD_SR0_SEEK
);
1730 static const struct {
1735 void (*handler
)(fdctrl_t
*fdctrl
, int direction
);
1738 { FD_CMD_READ
, 0x1f, "READ", 8, fdctrl_start_transfer
, FD_DIR_READ
},
1739 { FD_CMD_WRITE
, 0x3f, "WRITE", 8, fdctrl_start_transfer
, FD_DIR_WRITE
},
1740 { FD_CMD_SEEK
, 0xff, "SEEK", 2, fdctrl_handle_seek
},
1741 { FD_CMD_SENSE_INTERRUPT_STATUS
, 0xff, "SENSE INTERRUPT STATUS", 0, fdctrl_handle_sense_interrupt_status
},
1742 { FD_CMD_RECALIBRATE
, 0xff, "RECALIBRATE", 1, fdctrl_handle_recalibrate
},
1743 { FD_CMD_FORMAT_TRACK
, 0xbf, "FORMAT TRACK", 5, fdctrl_handle_format_track
},
1744 { FD_CMD_READ_TRACK
, 0xbf, "READ TRACK", 8, fdctrl_start_transfer
, FD_DIR_READ
},
1745 { FD_CMD_RESTORE
, 0xff, "RESTORE", 17, fdctrl_handle_restore
}, /* part of READ DELETED DATA */
1746 { FD_CMD_SAVE
, 0xff, "SAVE", 0, fdctrl_handle_save
}, /* part of READ DELETED DATA */
1747 { FD_CMD_READ_DELETED
, 0x1f, "READ DELETED DATA", 8, fdctrl_start_transfer_del
, FD_DIR_READ
},
1748 { FD_CMD_SCAN_EQUAL
, 0x1f, "SCAN EQUAL", 8, fdctrl_start_transfer
, FD_DIR_SCANE
},
1749 { FD_CMD_VERIFY
, 0x1f, "VERIFY", 8, fdctrl_unimplemented
},
1750 { FD_CMD_SCAN_LOW_OR_EQUAL
, 0x1f, "SCAN LOW OR EQUAL", 8, fdctrl_start_transfer
, FD_DIR_SCANL
},
1751 { FD_CMD_SCAN_HIGH_OR_EQUAL
, 0x1f, "SCAN HIGH OR EQUAL", 8, fdctrl_start_transfer
, FD_DIR_SCANH
},
1752 { FD_CMD_WRITE_DELETED
, 0x3f, "WRITE DELETED DATA", 8, fdctrl_start_transfer_del
, FD_DIR_WRITE
},
1753 { FD_CMD_READ_ID
, 0xbf, "READ ID", 1, fdctrl_handle_readid
},
1754 { FD_CMD_SPECIFY
, 0xff, "SPECIFY", 2, fdctrl_handle_specify
},
1755 { FD_CMD_SENSE_DRIVE_STATUS
, 0xff, "SENSE DRIVE STATUS", 1, fdctrl_handle_sense_drive_status
},
1756 { FD_CMD_PERPENDICULAR_MODE
, 0xff, "PERPENDICULAR MODE", 1, fdctrl_handle_perpendicular_mode
},
1757 { FD_CMD_CONFIGURE
, 0xff, "CONFIGURE", 3, fdctrl_handle_configure
},
1758 { FD_CMD_POWERDOWN_MODE
, 0xff, "POWERDOWN MODE", 2, fdctrl_handle_powerdown_mode
},
1759 { FD_CMD_OPTION
, 0xff, "OPTION", 1, fdctrl_handle_option
},
1760 { FD_CMD_DRIVE_SPECIFICATION_COMMAND
, 0xff, "DRIVE SPECIFICATION COMMAND", 5, fdctrl_handle_drive_specification_command
},
1761 { FD_CMD_RELATIVE_SEEK_OUT
, 0xff, "RELATIVE SEEK OUT", 2, fdctrl_handle_relative_seek_out
},
1762 { FD_CMD_FORMAT_AND_WRITE
, 0xff, "FORMAT AND WRITE", 10, fdctrl_unimplemented
},
1763 { FD_CMD_RELATIVE_SEEK_IN
, 0xff, "RELATIVE SEEK IN", 2, fdctrl_handle_relative_seek_in
},
1764 { FD_CMD_LOCK
, 0x7f, "LOCK", 0, fdctrl_handle_lock
},
1765 { FD_CMD_DUMPREG
, 0xff, "DUMPREG", 0, fdctrl_handle_dumpreg
},
1766 { FD_CMD_VERSION
, 0xff, "VERSION", 0, fdctrl_handle_version
},
1767 { FD_CMD_PART_ID
, 0xff, "PART ID", 0, fdctrl_handle_partid
},
1768 { FD_CMD_WRITE
, 0x1f, "WRITE (BeOS)", 8, fdctrl_start_transfer
, FD_DIR_WRITE
}, /* not in specification ; BeOS 4.5 bug */
1769 { 0, 0, "unknown", 0, fdctrl_unimplemented
}, /* default handler */
1771 /* Associate command to an index in the 'handlers' array */
1772 static uint8_t command_to_handler
[256];
1774 static void fdctrl_write_data (fdctrl_t
*fdctrl
, uint32_t value
)
1780 if (!(fdctrl
->dor
& FD_DOR_nRESET
)) {
1781 FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
1784 if (!(fdctrl
->msr
& FD_MSR_RQM
) || (fdctrl
->msr
& FD_MSR_DIO
)) {
1785 FLOPPY_ERROR("controller not ready for writing\n");
1788 fdctrl
->dsr
&= ~FD_DSR_PWRDOWN
;
1789 /* Is it write command time ? */
1790 if (fdctrl
->msr
& FD_MSR_NONDMA
) {
1791 /* FIFO data write */
1792 pos
= fdctrl
->data_pos
++;
1793 pos
%= FD_SECTOR_LEN
;
1794 fdctrl
->fifo
[pos
] = value
;
1795 if (pos
== FD_SECTOR_LEN
- 1 ||
1796 fdctrl
->data_pos
== fdctrl
->data_len
) {
1797 cur_drv
= get_cur_drv(fdctrl
);
1798 if (bdrv_write(cur_drv
->bs
, fd_sector(cur_drv
), fdctrl
->fifo
, 1) < 0) {
1799 FLOPPY_ERROR("writing sector %d\n", fd_sector(cur_drv
));
1802 if (!fdctrl_seek_to_next_sect(fdctrl
, cur_drv
)) {
1803 FLOPPY_DPRINTF("error seeking to next sector %d\n",
1804 fd_sector(cur_drv
));
1808 /* Switch from transfer mode to status mode
1809 * then from status mode to command mode
1811 if (fdctrl
->data_pos
== fdctrl
->data_len
)
1812 fdctrl_stop_transfer(fdctrl
, FD_SR0_SEEK
, 0x00, 0x00);
1815 if (fdctrl
->data_pos
== 0) {
1817 pos
= command_to_handler
[value
& 0xff];
1818 FLOPPY_DPRINTF("%s command\n", handlers
[pos
].name
);
1819 fdctrl
->data_len
= handlers
[pos
].parameters
+ 1;
1822 FLOPPY_DPRINTF("%s: %02x\n", __func__
, value
);
1823 fdctrl
->fifo
[fdctrl
->data_pos
++] = value
;
1824 if (fdctrl
->data_pos
== fdctrl
->data_len
) {
1825 /* We now have all parameters
1826 * and will be able to treat the command
1828 if (fdctrl
->data_state
& FD_STATE_FORMAT
) {
1829 fdctrl_format_sector(fdctrl
);
1833 pos
= command_to_handler
[fdctrl
->fifo
[0] & 0xff];
1834 FLOPPY_DPRINTF("treat %s command\n", handlers
[pos
].name
);
1835 (*handlers
[pos
].handler
)(fdctrl
, handlers
[pos
].direction
);
1839 static void fdctrl_result_timer(void *opaque
)
1841 fdctrl_t
*fdctrl
= opaque
;
1842 fdrive_t
*cur_drv
= get_cur_drv(fdctrl
);
1844 /* Pretend we are spinning.
1845 * This is needed for Coherent, which uses READ ID to check for
1846 * sector interleaving.
1848 if (cur_drv
->last_sect
!= 0) {
1849 cur_drv
->sect
= (cur_drv
->sect
% cur_drv
->last_sect
) + 1;
1851 fdctrl_stop_transfer(fdctrl
, 0x00, 0x00, 0x00);
1854 /* Init functions */
1855 static void fdctrl_connect_drives(fdctrl_t
*fdctrl
, BlockDriverState
**fds
)
1859 for (i
= 0; i
< MAX_FD
; i
++) {
1860 fd_init(&fdctrl
->drives
[i
], fds
[i
]);
1861 fd_revalidate(&fdctrl
->drives
[i
]);
1865 fdctrl_t
*fdctrl_init (qemu_irq irq
, int dma_chann
, int mem_mapped
,
1866 target_phys_addr_t io_base
,
1867 BlockDriverState
**fds
)
1873 dev
= qdev_create(NULL
, "fdc");
1875 s
= sysbus_from_qdev(dev
);
1876 sysbus_connect_irq(s
, 0, irq
);
1877 fdctrl
= FROM_SYSBUS(fdctrl_t
, s
);
1879 sysbus_mmio_map(s
, 0, io_base
);
1881 register_ioport_read((uint32_t)io_base
+ 0x01, 5, 1,
1882 &fdctrl_read_port
, fdctrl
);
1883 register_ioport_read((uint32_t)io_base
+ 0x07, 1, 1,
1884 &fdctrl_read_port
, fdctrl
);
1885 register_ioport_write((uint32_t)io_base
+ 0x01, 5, 1,
1886 &fdctrl_write_port
, fdctrl
);
1887 register_ioport_write((uint32_t)io_base
+ 0x07, 1, 1,
1888 &fdctrl_write_port
, fdctrl
);
1890 fdctrl
->dma_chann
= dma_chann
;
1891 DMA_register_channel(dma_chann
, &fdctrl_transfer_handler
, fdctrl
);
1893 fdctrl_connect_drives(fdctrl
, fds
);
1898 fdctrl_t
*sun4m_fdctrl_init (qemu_irq irq
, target_phys_addr_t io_base
,
1899 BlockDriverState
**fds
, qemu_irq
*fdc_tc
)
1905 dev
= qdev_create(NULL
, "SUNW,fdtwo");
1907 s
= sysbus_from_qdev(dev
);
1908 sysbus_connect_irq(s
, 0, irq
);
1909 sysbus_mmio_map(s
, 0, io_base
);
1910 *fdc_tc
= qdev_get_gpio_in(dev
, 0);
1912 fdctrl
= FROM_SYSBUS(fdctrl_t
, s
);
1914 fdctrl
->dma_chann
= -1;
1916 fdctrl_connect_drives(fdctrl
, fds
);
1921 static void fdctrl_init_common(SysBusDevice
*dev
, fdctrl_t
*fdctrl
,
1922 int is_sun4m
, int io
)
1925 static int command_tables_inited
= 0;
1927 sysbus_init_irq(dev
, &fdctrl
->irq
);
1928 qdev_init_gpio_in(&dev
->qdev
, fdctrl_handle_tc
, 1);
1929 sysbus_init_mmio(dev
, 0x08, io
);
1931 /* Fill 'command_to_handler' lookup table */
1932 if (!command_tables_inited
) {
1933 command_tables_inited
= 1;
1934 for (i
= ARRAY_SIZE(handlers
) - 1; i
>= 0; i
--) {
1935 for (j
= 0; j
< sizeof(command_to_handler
); j
++) {
1936 if ((j
& handlers
[i
].mask
) == handlers
[i
].value
) {
1937 command_to_handler
[j
] = i
;
1943 FLOPPY_DPRINTF("init controller\n");
1944 fdctrl
->fifo
= qemu_memalign(512, FD_SECTOR_LEN
);
1945 fdctrl
->result_timer
= qemu_new_timer(vm_clock
,
1946 fdctrl_result_timer
, fdctrl
);
1948 fdctrl
->version
= 0x90; /* Intel 82078 controller */
1949 fdctrl
->config
= FD_CONFIG_EIS
| FD_CONFIG_EFIFO
; /* Implicit seek, polling & FIFO enabled */
1950 fdctrl
->sun4m
= is_sun4m
;
1952 fdctrl_external_reset(fdctrl
);
1953 register_savevm("fdc", -1, 2, fdc_save
, fdc_load
, fdctrl
);
1954 qemu_register_reset(fdctrl_external_reset
, fdctrl
);
1957 static void fdc_init1(SysBusDevice
*dev
)
1959 fdctrl_t
*fdctrl
= FROM_SYSBUS(fdctrl_t
, dev
);
1962 io
= cpu_register_io_memory(fdctrl_mem_read
, fdctrl_mem_write
, fdctrl
);
1963 fdctrl_init_common(dev
, fdctrl
, 0, io
);
1966 static void sun4m_fdc_init1(SysBusDevice
*dev
)
1968 fdctrl_t
*fdctrl
= FROM_SYSBUS(fdctrl_t
, dev
);
1971 io
= cpu_register_io_memory(fdctrl_mem_read_strict
,
1972 fdctrl_mem_write_strict
, fdctrl
);
1973 fdctrl_init_common(dev
, fdctrl
, 1, io
);
1976 static SysBusDeviceInfo fdc_info
= {
1979 .qdev
.size
= sizeof(fdctrl_t
),
1982 static SysBusDeviceInfo sun4m_fdc_info
= {
1983 .init
= sun4m_fdc_init1
,
1984 .qdev
.name
= "SUNW,fdtwo",
1985 .qdev
.size
= sizeof(fdctrl_t
),
1988 static void fdc_register_devices(void)
1990 sysbus_register_withprop(&fdc_info
);
1991 sysbus_register_withprop(&sun4m_fdc_info
);
1994 device_init(fdc_register_devices
)