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.
32 #include "qemu-error.h"
33 #include "qemu-timer.h"
36 #include "qdev-addr.h"
40 /********************************************************/
41 /* debug Floppy devices */
42 //#define DEBUG_FLOPPY
45 #define FLOPPY_DPRINTF(fmt, ...) \
46 do { printf("FLOPPY: " fmt , ## __VA_ARGS__); } while (0)
48 #define FLOPPY_DPRINTF(fmt, ...)
51 #define FLOPPY_ERROR(fmt, ...) \
52 do { printf("FLOPPY ERROR: %s: " fmt, __func__ , ## __VA_ARGS__); } while (0)
54 /********************************************************/
55 /* Floppy drive emulation */
57 #define GET_CUR_DRV(fdctrl) ((fdctrl)->cur_drv)
58 #define SET_CUR_DRV(fdctrl, drive) ((fdctrl)->cur_drv = (drive))
60 /* Will always be a fixed parameter for us */
61 #define FD_SECTOR_LEN 512
62 #define FD_SECTOR_SC 2 /* Sector size code */
63 #define FD_RESET_SENSEI_COUNT 4 /* Number of sense interrupts on RESET */
65 /* Floppy disk drive emulation */
66 typedef enum FDiskFlags
{
67 FDISK_DBL_SIDES
= 0x01,
70 typedef struct FDrive
{
74 uint8_t perpendicular
; /* 2.88 MB access mode */
81 uint8_t last_sect
; /* Nb sector per track */
82 uint8_t max_track
; /* Nb of tracks */
83 uint16_t bps
; /* Bytes per sector */
84 uint8_t ro
; /* Is read-only */
87 static void fd_init(FDrive
*drv
)
90 drv
->drive
= FDRIVE_DRV_NONE
;
91 drv
->perpendicular
= 0;
97 static int fd_sector_calc(uint8_t head
, uint8_t track
, uint8_t sect
,
100 return (((track
* 2) + head
) * last_sect
) + sect
- 1;
103 /* Returns current position, in sectors, for given drive */
104 static int fd_sector(FDrive
*drv
)
106 return fd_sector_calc(drv
->head
, drv
->track
, drv
->sect
, drv
->last_sect
);
109 /* Seek to a new position:
110 * returns 0 if already on right track
111 * returns 1 if track changed
112 * returns 2 if track is invalid
113 * returns 3 if sector is invalid
114 * returns 4 if seek is disabled
116 static int fd_seek(FDrive
*drv
, uint8_t head
, uint8_t track
, uint8_t sect
,
122 if (track
> drv
->max_track
||
123 (head
!= 0 && (drv
->flags
& FDISK_DBL_SIDES
) == 0)) {
124 FLOPPY_DPRINTF("try to read %d %02x %02x (max=%d %d %02x %02x)\n",
125 head
, track
, sect
, 1,
126 (drv
->flags
& FDISK_DBL_SIDES
) == 0 ? 0 : 1,
127 drv
->max_track
, drv
->last_sect
);
130 if (sect
> drv
->last_sect
) {
131 FLOPPY_DPRINTF("try to read %d %02x %02x (max=%d %d %02x %02x)\n",
132 head
, track
, sect
, 1,
133 (drv
->flags
& FDISK_DBL_SIDES
) == 0 ? 0 : 1,
134 drv
->max_track
, drv
->last_sect
);
137 sector
= fd_sector_calc(head
, track
, sect
, drv
->last_sect
);
139 if (sector
!= fd_sector(drv
)) {
142 FLOPPY_ERROR("no implicit seek %d %02x %02x (max=%d %02x %02x)\n",
143 head
, track
, sect
, 1, drv
->max_track
, drv
->last_sect
);
148 if (drv
->track
!= track
)
157 /* Set drive back to track 0 */
158 static void fd_recalibrate(FDrive
*drv
)
160 FLOPPY_DPRINTF("recalibrate\n");
166 /* Revalidate a disk drive after a disk change */
167 static void fd_revalidate(FDrive
*drv
)
169 int nb_heads
, max_track
, last_sect
, ro
;
172 FLOPPY_DPRINTF("revalidate\n");
173 if (drv
->bs
!= NULL
&& bdrv_is_inserted(drv
->bs
)) {
174 ro
= bdrv_is_read_only(drv
->bs
);
175 bdrv_get_floppy_geometry_hint(drv
->bs
, &nb_heads
, &max_track
,
176 &last_sect
, drv
->drive
, &drive
);
177 if (nb_heads
!= 0 && max_track
!= 0 && last_sect
!= 0) {
178 FLOPPY_DPRINTF("User defined disk (%d %d %d)",
179 nb_heads
- 1, max_track
, last_sect
);
181 FLOPPY_DPRINTF("Floppy disk (%d h %d t %d s) %s\n", nb_heads
,
182 max_track
, last_sect
, ro
? "ro" : "rw");
185 drv
->flags
&= ~FDISK_DBL_SIDES
;
187 drv
->flags
|= FDISK_DBL_SIDES
;
189 drv
->max_track
= max_track
;
190 drv
->last_sect
= last_sect
;
194 FLOPPY_DPRINTF("No disk in drive\n");
197 drv
->flags
&= ~FDISK_DBL_SIDES
;
201 /********************************************************/
202 /* Intel 82078 floppy disk controller emulation */
204 typedef struct FDCtrl FDCtrl
;
206 static void fdctrl_reset(FDCtrl
*fdctrl
, int do_irq
);
207 static void fdctrl_reset_fifo(FDCtrl
*fdctrl
);
208 static int fdctrl_transfer_handler (void *opaque
, int nchan
,
209 int dma_pos
, int dma_len
);
210 static void fdctrl_raise_irq(FDCtrl
*fdctrl
, uint8_t status0
);
212 static uint32_t fdctrl_read_statusA(FDCtrl
*fdctrl
);
213 static uint32_t fdctrl_read_statusB(FDCtrl
*fdctrl
);
214 static uint32_t fdctrl_read_dor(FDCtrl
*fdctrl
);
215 static void fdctrl_write_dor(FDCtrl
*fdctrl
, uint32_t value
);
216 static uint32_t fdctrl_read_tape(FDCtrl
*fdctrl
);
217 static void fdctrl_write_tape(FDCtrl
*fdctrl
, uint32_t value
);
218 static uint32_t fdctrl_read_main_status(FDCtrl
*fdctrl
);
219 static void fdctrl_write_rate(FDCtrl
*fdctrl
, uint32_t value
);
220 static uint32_t fdctrl_read_data(FDCtrl
*fdctrl
);
221 static void fdctrl_write_data(FDCtrl
*fdctrl
, uint32_t value
);
222 static uint32_t fdctrl_read_dir(FDCtrl
*fdctrl
);
233 FD_STATE_MULTI
= 0x01, /* multi track flag */
234 FD_STATE_FORMAT
= 0x02, /* format flag */
235 FD_STATE_SEEK
= 0x04, /* seek flag */
250 FD_CMD_READ_TRACK
= 0x02,
251 FD_CMD_SPECIFY
= 0x03,
252 FD_CMD_SENSE_DRIVE_STATUS
= 0x04,
255 FD_CMD_RECALIBRATE
= 0x07,
256 FD_CMD_SENSE_INTERRUPT_STATUS
= 0x08,
257 FD_CMD_WRITE_DELETED
= 0x09,
258 FD_CMD_READ_ID
= 0x0a,
259 FD_CMD_READ_DELETED
= 0x0c,
260 FD_CMD_FORMAT_TRACK
= 0x0d,
261 FD_CMD_DUMPREG
= 0x0e,
263 FD_CMD_VERSION
= 0x10,
264 FD_CMD_SCAN_EQUAL
= 0x11,
265 FD_CMD_PERPENDICULAR_MODE
= 0x12,
266 FD_CMD_CONFIGURE
= 0x13,
268 FD_CMD_VERIFY
= 0x16,
269 FD_CMD_POWERDOWN_MODE
= 0x17,
270 FD_CMD_PART_ID
= 0x18,
271 FD_CMD_SCAN_LOW_OR_EQUAL
= 0x19,
272 FD_CMD_SCAN_HIGH_OR_EQUAL
= 0x1d,
274 FD_CMD_OPTION
= 0x33,
275 FD_CMD_RESTORE
= 0x4e,
276 FD_CMD_DRIVE_SPECIFICATION_COMMAND
= 0x8e,
277 FD_CMD_RELATIVE_SEEK_OUT
= 0x8f,
278 FD_CMD_FORMAT_AND_WRITE
= 0xcd,
279 FD_CMD_RELATIVE_SEEK_IN
= 0xcf,
283 FD_CONFIG_PRETRK
= 0xff, /* Pre-compensation set to track 0 */
284 FD_CONFIG_FIFOTHR
= 0x0f, /* FIFO threshold set to 1 byte */
285 FD_CONFIG_POLL
= 0x10, /* Poll enabled */
286 FD_CONFIG_EFIFO
= 0x20, /* FIFO disabled */
287 FD_CONFIG_EIS
= 0x40, /* No implied seeks */
293 FD_SR0_ABNTERM
= 0x40,
294 FD_SR0_INVCMD
= 0x80,
295 FD_SR0_RDYCHG
= 0xc0,
299 FD_SR1_EC
= 0x80, /* End of cylinder */
303 FD_SR2_SNS
= 0x04, /* Scan not satisfied */
304 FD_SR2_SEH
= 0x08, /* Scan equal hit */
315 FD_SRA_INTPEND
= 0x80,
329 FD_DOR_SELMASK
= 0x03,
331 FD_DOR_SELMASK
= 0x01,
333 FD_DOR_nRESET
= 0x04,
335 FD_DOR_MOTEN0
= 0x10,
336 FD_DOR_MOTEN1
= 0x20,
337 FD_DOR_MOTEN2
= 0x40,
338 FD_DOR_MOTEN3
= 0x80,
343 FD_TDR_BOOTSEL
= 0x0c,
345 FD_TDR_BOOTSEL
= 0x04,
350 FD_DSR_DRATEMASK
= 0x03,
351 FD_DSR_PWRDOWN
= 0x40,
352 FD_DSR_SWRESET
= 0x80,
356 FD_MSR_DRV0BUSY
= 0x01,
357 FD_MSR_DRV1BUSY
= 0x02,
358 FD_MSR_DRV2BUSY
= 0x04,
359 FD_MSR_DRV3BUSY
= 0x08,
360 FD_MSR_CMDBUSY
= 0x10,
361 FD_MSR_NONDMA
= 0x20,
367 FD_DIR_DSKCHG
= 0x80,
370 #define FD_MULTI_TRACK(state) ((state) & FD_STATE_MULTI)
371 #define FD_DID_SEEK(state) ((state) & FD_STATE_SEEK)
372 #define FD_FORMAT_CMD(state) ((state) & FD_STATE_FORMAT)
375 /* Controller's identification */
380 /* Controller state */
381 QEMUTimer
*result_timer
;
385 uint8_t dor_vmstate
; /* only used as temp during vmstate */
400 uint8_t eot
; /* last wanted sector */
401 /* States kept only to be returned back */
405 /* precompensation */
409 /* Power down config (also with status regB access mode */
414 uint8_t num_floppies
;
415 FDrive drives
[MAX_FD
];
419 typedef struct FDCtrlSysBus
{
424 typedef struct FDCtrlISABus
{
431 static uint32_t fdctrl_read (void *opaque
, uint32_t reg
)
433 FDCtrl
*fdctrl
= opaque
;
438 retval
= fdctrl_read_statusA(fdctrl
);
441 retval
= fdctrl_read_statusB(fdctrl
);
444 retval
= fdctrl_read_dor(fdctrl
);
447 retval
= fdctrl_read_tape(fdctrl
);
450 retval
= fdctrl_read_main_status(fdctrl
);
453 retval
= fdctrl_read_data(fdctrl
);
456 retval
= fdctrl_read_dir(fdctrl
);
459 retval
= (uint32_t)(-1);
462 FLOPPY_DPRINTF("read reg%d: 0x%02x\n", reg
& 7, retval
);
467 static void fdctrl_write (void *opaque
, uint32_t reg
, uint32_t value
)
469 FDCtrl
*fdctrl
= opaque
;
471 FLOPPY_DPRINTF("write reg%d: 0x%02x\n", reg
& 7, value
);
475 fdctrl_write_dor(fdctrl
, value
);
478 fdctrl_write_tape(fdctrl
, value
);
481 fdctrl_write_rate(fdctrl
, value
);
484 fdctrl_write_data(fdctrl
, value
);
491 static uint32_t fdctrl_read_port (void *opaque
, uint32_t reg
)
493 return fdctrl_read(opaque
, reg
& 7);
496 static void fdctrl_write_port (void *opaque
, uint32_t reg
, uint32_t value
)
498 fdctrl_write(opaque
, reg
& 7, value
);
501 static uint32_t fdctrl_read_mem (void *opaque
, target_phys_addr_t reg
)
503 return fdctrl_read(opaque
, (uint32_t)reg
);
506 static void fdctrl_write_mem (void *opaque
,
507 target_phys_addr_t reg
, uint32_t value
)
509 fdctrl_write(opaque
, (uint32_t)reg
, value
);
512 static CPUReadMemoryFunc
* const fdctrl_mem_read
[3] = {
518 static CPUWriteMemoryFunc
* const fdctrl_mem_write
[3] = {
524 static CPUReadMemoryFunc
* const fdctrl_mem_read_strict
[3] = {
530 static CPUWriteMemoryFunc
* const fdctrl_mem_write_strict
[3] = {
536 static const VMStateDescription vmstate_fdrive
= {
539 .minimum_version_id
= 1,
540 .minimum_version_id_old
= 1,
541 .fields
= (VMStateField
[]) {
542 VMSTATE_UINT8(head
, FDrive
),
543 VMSTATE_UINT8(track
, FDrive
),
544 VMSTATE_UINT8(sect
, FDrive
),
545 VMSTATE_END_OF_LIST()
549 static void fdc_pre_save(void *opaque
)
553 s
->dor_vmstate
= s
->dor
| GET_CUR_DRV(s
);
556 static int fdc_post_load(void *opaque
, int version_id
)
560 SET_CUR_DRV(s
, s
->dor_vmstate
& FD_DOR_SELMASK
);
561 s
->dor
= s
->dor_vmstate
& ~FD_DOR_SELMASK
;
565 static const VMStateDescription vmstate_fdc
= {
568 .minimum_version_id
= 2,
569 .minimum_version_id_old
= 2,
570 .pre_save
= fdc_pre_save
,
571 .post_load
= fdc_post_load
,
572 .fields
= (VMStateField
[]) {
573 /* Controller State */
574 VMSTATE_UINT8(sra
, FDCtrl
),
575 VMSTATE_UINT8(srb
, FDCtrl
),
576 VMSTATE_UINT8(dor_vmstate
, FDCtrl
),
577 VMSTATE_UINT8(tdr
, FDCtrl
),
578 VMSTATE_UINT8(dsr
, FDCtrl
),
579 VMSTATE_UINT8(msr
, FDCtrl
),
580 VMSTATE_UINT8(status0
, FDCtrl
),
581 VMSTATE_UINT8(status1
, FDCtrl
),
582 VMSTATE_UINT8(status2
, FDCtrl
),
584 VMSTATE_VARRAY_INT32(fifo
, FDCtrl
, fifo_size
, 0, vmstate_info_uint8
,
586 VMSTATE_UINT32(data_pos
, FDCtrl
),
587 VMSTATE_UINT32(data_len
, FDCtrl
),
588 VMSTATE_UINT8(data_state
, FDCtrl
),
589 VMSTATE_UINT8(data_dir
, FDCtrl
),
590 VMSTATE_UINT8(eot
, FDCtrl
),
591 /* States kept only to be returned back */
592 VMSTATE_UINT8(timer0
, FDCtrl
),
593 VMSTATE_UINT8(timer1
, FDCtrl
),
594 VMSTATE_UINT8(precomp_trk
, FDCtrl
),
595 VMSTATE_UINT8(config
, FDCtrl
),
596 VMSTATE_UINT8(lock
, FDCtrl
),
597 VMSTATE_UINT8(pwrd
, FDCtrl
),
598 VMSTATE_UINT8_EQUAL(num_floppies
, FDCtrl
),
599 VMSTATE_STRUCT_ARRAY(drives
, FDCtrl
, MAX_FD
, 1,
600 vmstate_fdrive
, FDrive
),
601 VMSTATE_END_OF_LIST()
605 static void fdctrl_external_reset_sysbus(DeviceState
*d
)
607 FDCtrlSysBus
*sys
= container_of(d
, FDCtrlSysBus
, busdev
.qdev
);
608 FDCtrl
*s
= &sys
->state
;
613 static void fdctrl_external_reset_isa(DeviceState
*d
)
615 FDCtrlISABus
*isa
= container_of(d
, FDCtrlISABus
, busdev
.qdev
);
616 FDCtrl
*s
= &isa
->state
;
621 static void fdctrl_handle_tc(void *opaque
, int irq
, int level
)
623 //FDCtrl *s = opaque;
627 FLOPPY_DPRINTF("TC pulsed\n");
631 /* Change IRQ state */
632 static void fdctrl_reset_irq(FDCtrl
*fdctrl
)
634 if (!(fdctrl
->sra
& FD_SRA_INTPEND
))
636 FLOPPY_DPRINTF("Reset interrupt\n");
637 qemu_set_irq(fdctrl
->irq
, 0);
638 fdctrl
->sra
&= ~FD_SRA_INTPEND
;
641 static void fdctrl_raise_irq(FDCtrl
*fdctrl
, uint8_t status0
)
644 if (fdctrl
->sun4m
&& (fdctrl
->msr
& FD_MSR_CMDBUSY
)) {
646 fdctrl
->msr
&= ~FD_MSR_CMDBUSY
;
647 fdctrl
->msr
|= FD_MSR_RQM
| FD_MSR_DIO
;
648 fdctrl
->status0
= status0
;
651 if (!(fdctrl
->sra
& FD_SRA_INTPEND
)) {
652 qemu_set_irq(fdctrl
->irq
, 1);
653 fdctrl
->sra
|= FD_SRA_INTPEND
;
655 fdctrl
->reset_sensei
= 0;
656 fdctrl
->status0
= status0
;
657 FLOPPY_DPRINTF("Set interrupt status to 0x%02x\n", fdctrl
->status0
);
660 /* Reset controller */
661 static void fdctrl_reset(FDCtrl
*fdctrl
, int do_irq
)
665 FLOPPY_DPRINTF("reset controller\n");
666 fdctrl_reset_irq(fdctrl
);
667 /* Initialise controller */
670 if (!fdctrl
->drives
[1].bs
)
671 fdctrl
->sra
|= FD_SRA_nDRV2
;
673 fdctrl
->dor
= FD_DOR_nRESET
;
674 fdctrl
->dor
|= (fdctrl
->dma_chann
!= -1) ? FD_DOR_DMAEN
: 0;
675 fdctrl
->msr
= FD_MSR_RQM
;
677 fdctrl
->data_pos
= 0;
678 fdctrl
->data_len
= 0;
679 fdctrl
->data_state
= 0;
680 fdctrl
->data_dir
= FD_DIR_WRITE
;
681 for (i
= 0; i
< MAX_FD
; i
++)
682 fd_recalibrate(&fdctrl
->drives
[i
]);
683 fdctrl_reset_fifo(fdctrl
);
685 fdctrl_raise_irq(fdctrl
, FD_SR0_RDYCHG
);
686 fdctrl
->reset_sensei
= FD_RESET_SENSEI_COUNT
;
690 static inline FDrive
*drv0(FDCtrl
*fdctrl
)
692 return &fdctrl
->drives
[(fdctrl
->tdr
& FD_TDR_BOOTSEL
) >> 2];
695 static inline FDrive
*drv1(FDCtrl
*fdctrl
)
697 if ((fdctrl
->tdr
& FD_TDR_BOOTSEL
) < (1 << 2))
698 return &fdctrl
->drives
[1];
700 return &fdctrl
->drives
[0];
704 static inline FDrive
*drv2(FDCtrl
*fdctrl
)
706 if ((fdctrl
->tdr
& FD_TDR_BOOTSEL
) < (2 << 2))
707 return &fdctrl
->drives
[2];
709 return &fdctrl
->drives
[1];
712 static inline FDrive
*drv3(FDCtrl
*fdctrl
)
714 if ((fdctrl
->tdr
& FD_TDR_BOOTSEL
) < (3 << 2))
715 return &fdctrl
->drives
[3];
717 return &fdctrl
->drives
[2];
721 static FDrive
*get_cur_drv(FDCtrl
*fdctrl
)
723 switch (fdctrl
->cur_drv
) {
724 case 0: return drv0(fdctrl
);
725 case 1: return drv1(fdctrl
);
727 case 2: return drv2(fdctrl
);
728 case 3: return drv3(fdctrl
);
730 default: return NULL
;
734 /* Status A register : 0x00 (read-only) */
735 static uint32_t fdctrl_read_statusA(FDCtrl
*fdctrl
)
737 uint32_t retval
= fdctrl
->sra
;
739 FLOPPY_DPRINTF("status register A: 0x%02x\n", retval
);
744 /* Status B register : 0x01 (read-only) */
745 static uint32_t fdctrl_read_statusB(FDCtrl
*fdctrl
)
747 uint32_t retval
= fdctrl
->srb
;
749 FLOPPY_DPRINTF("status register B: 0x%02x\n", retval
);
754 /* Digital output register : 0x02 */
755 static uint32_t fdctrl_read_dor(FDCtrl
*fdctrl
)
757 uint32_t retval
= fdctrl
->dor
;
760 retval
|= fdctrl
->cur_drv
;
761 FLOPPY_DPRINTF("digital output register: 0x%02x\n", retval
);
766 static void fdctrl_write_dor(FDCtrl
*fdctrl
, uint32_t value
)
768 FLOPPY_DPRINTF("digital output register set to 0x%02x\n", value
);
771 if (value
& FD_DOR_MOTEN0
)
772 fdctrl
->srb
|= FD_SRB_MTR0
;
774 fdctrl
->srb
&= ~FD_SRB_MTR0
;
775 if (value
& FD_DOR_MOTEN1
)
776 fdctrl
->srb
|= FD_SRB_MTR1
;
778 fdctrl
->srb
&= ~FD_SRB_MTR1
;
782 fdctrl
->srb
|= FD_SRB_DR0
;
784 fdctrl
->srb
&= ~FD_SRB_DR0
;
787 if (!(value
& FD_DOR_nRESET
)) {
788 if (fdctrl
->dor
& FD_DOR_nRESET
) {
789 FLOPPY_DPRINTF("controller enter RESET state\n");
792 if (!(fdctrl
->dor
& FD_DOR_nRESET
)) {
793 FLOPPY_DPRINTF("controller out of RESET state\n");
794 fdctrl_reset(fdctrl
, 1);
795 fdctrl
->dsr
&= ~FD_DSR_PWRDOWN
;
799 fdctrl
->cur_drv
= value
& FD_DOR_SELMASK
;
804 /* Tape drive register : 0x03 */
805 static uint32_t fdctrl_read_tape(FDCtrl
*fdctrl
)
807 uint32_t retval
= fdctrl
->tdr
;
809 FLOPPY_DPRINTF("tape drive register: 0x%02x\n", retval
);
814 static void fdctrl_write_tape(FDCtrl
*fdctrl
, uint32_t value
)
817 if (!(fdctrl
->dor
& FD_DOR_nRESET
)) {
818 FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
821 FLOPPY_DPRINTF("tape drive register set to 0x%02x\n", value
);
822 /* Disk boot selection indicator */
823 fdctrl
->tdr
= value
& FD_TDR_BOOTSEL
;
824 /* Tape indicators: never allow */
827 /* Main status register : 0x04 (read) */
828 static uint32_t fdctrl_read_main_status(FDCtrl
*fdctrl
)
830 uint32_t retval
= fdctrl
->msr
;
832 fdctrl
->dsr
&= ~FD_DSR_PWRDOWN
;
833 fdctrl
->dor
|= FD_DOR_nRESET
;
837 retval
|= FD_MSR_DIO
;
838 fdctrl_reset_irq(fdctrl
);
841 FLOPPY_DPRINTF("main status register: 0x%02x\n", retval
);
846 /* Data select rate register : 0x04 (write) */
847 static void fdctrl_write_rate(FDCtrl
*fdctrl
, uint32_t value
)
850 if (!(fdctrl
->dor
& FD_DOR_nRESET
)) {
851 FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
854 FLOPPY_DPRINTF("select rate register set to 0x%02x\n", value
);
855 /* Reset: autoclear */
856 if (value
& FD_DSR_SWRESET
) {
857 fdctrl
->dor
&= ~FD_DOR_nRESET
;
858 fdctrl_reset(fdctrl
, 1);
859 fdctrl
->dor
|= FD_DOR_nRESET
;
861 if (value
& FD_DSR_PWRDOWN
) {
862 fdctrl_reset(fdctrl
, 1);
867 static int fdctrl_media_changed(FDrive
*drv
)
873 ret
= bdrv_media_changed(drv
->bs
);
880 /* Digital input register : 0x07 (read-only) */
881 static uint32_t fdctrl_read_dir(FDCtrl
*fdctrl
)
885 if (fdctrl_media_changed(drv0(fdctrl
))
886 || fdctrl_media_changed(drv1(fdctrl
))
888 || fdctrl_media_changed(drv2(fdctrl
))
889 || fdctrl_media_changed(drv3(fdctrl
))
892 retval
|= FD_DIR_DSKCHG
;
894 FLOPPY_DPRINTF("Floppy digital input register: 0x%02x\n", retval
);
900 /* FIFO state control */
901 static void fdctrl_reset_fifo(FDCtrl
*fdctrl
)
903 fdctrl
->data_dir
= FD_DIR_WRITE
;
904 fdctrl
->data_pos
= 0;
905 fdctrl
->msr
&= ~(FD_MSR_CMDBUSY
| FD_MSR_DIO
);
908 /* Set FIFO status for the host to read */
909 static void fdctrl_set_fifo(FDCtrl
*fdctrl
, int fifo_len
, int do_irq
)
911 fdctrl
->data_dir
= FD_DIR_READ
;
912 fdctrl
->data_len
= fifo_len
;
913 fdctrl
->data_pos
= 0;
914 fdctrl
->msr
|= FD_MSR_CMDBUSY
| FD_MSR_RQM
| FD_MSR_DIO
;
916 fdctrl_raise_irq(fdctrl
, 0x00);
919 /* Set an error: unimplemented/unknown command */
920 static void fdctrl_unimplemented(FDCtrl
*fdctrl
, int direction
)
922 FLOPPY_ERROR("unimplemented command 0x%02x\n", fdctrl
->fifo
[0]);
923 fdctrl
->fifo
[0] = FD_SR0_INVCMD
;
924 fdctrl_set_fifo(fdctrl
, 1, 0);
927 /* Seek to next sector */
928 static int fdctrl_seek_to_next_sect(FDCtrl
*fdctrl
, FDrive
*cur_drv
)
930 FLOPPY_DPRINTF("seek to next sector (%d %02x %02x => %d)\n",
931 cur_drv
->head
, cur_drv
->track
, cur_drv
->sect
,
933 /* XXX: cur_drv->sect >= cur_drv->last_sect should be an
935 if (cur_drv
->sect
>= cur_drv
->last_sect
||
936 cur_drv
->sect
== fdctrl
->eot
) {
938 if (FD_MULTI_TRACK(fdctrl
->data_state
)) {
939 if (cur_drv
->head
== 0 &&
940 (cur_drv
->flags
& FDISK_DBL_SIDES
) != 0) {
945 if ((cur_drv
->flags
& FDISK_DBL_SIDES
) == 0)
952 FLOPPY_DPRINTF("seek to next track (%d %02x %02x => %d)\n",
953 cur_drv
->head
, cur_drv
->track
,
954 cur_drv
->sect
, fd_sector(cur_drv
));
961 /* Callback for transfer end (stop or abort) */
962 static void fdctrl_stop_transfer(FDCtrl
*fdctrl
, uint8_t status0
,
963 uint8_t status1
, uint8_t status2
)
967 cur_drv
= get_cur_drv(fdctrl
);
968 FLOPPY_DPRINTF("transfer status: %02x %02x %02x (%02x)\n",
969 status0
, status1
, status2
,
970 status0
| (cur_drv
->head
<< 2) | GET_CUR_DRV(fdctrl
));
971 fdctrl
->fifo
[0] = status0
| (cur_drv
->head
<< 2) | GET_CUR_DRV(fdctrl
);
972 fdctrl
->fifo
[1] = status1
;
973 fdctrl
->fifo
[2] = status2
;
974 fdctrl
->fifo
[3] = cur_drv
->track
;
975 fdctrl
->fifo
[4] = cur_drv
->head
;
976 fdctrl
->fifo
[5] = cur_drv
->sect
;
977 fdctrl
->fifo
[6] = FD_SECTOR_SC
;
978 fdctrl
->data_dir
= FD_DIR_READ
;
979 if (!(fdctrl
->msr
& FD_MSR_NONDMA
)) {
980 DMA_release_DREQ(fdctrl
->dma_chann
);
982 fdctrl
->msr
|= FD_MSR_RQM
| FD_MSR_DIO
;
983 fdctrl
->msr
&= ~FD_MSR_NONDMA
;
984 fdctrl_set_fifo(fdctrl
, 7, 1);
987 /* Prepare a data transfer (either DMA or FIFO) */
988 static void fdctrl_start_transfer(FDCtrl
*fdctrl
, int direction
)
994 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
995 cur_drv
= get_cur_drv(fdctrl
);
996 kt
= fdctrl
->fifo
[2];
997 kh
= fdctrl
->fifo
[3];
998 ks
= fdctrl
->fifo
[4];
999 FLOPPY_DPRINTF("Start transfer at %d %d %02x %02x (%d)\n",
1000 GET_CUR_DRV(fdctrl
), kh
, kt
, ks
,
1001 fd_sector_calc(kh
, kt
, ks
, cur_drv
->last_sect
));
1002 switch (fd_seek(cur_drv
, kh
, kt
, ks
, fdctrl
->config
& FD_CONFIG_EIS
)) {
1005 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, 0x00, 0x00);
1006 fdctrl
->fifo
[3] = kt
;
1007 fdctrl
->fifo
[4] = kh
;
1008 fdctrl
->fifo
[5] = ks
;
1012 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, FD_SR1_EC
, 0x00);
1013 fdctrl
->fifo
[3] = kt
;
1014 fdctrl
->fifo
[4] = kh
;
1015 fdctrl
->fifo
[5] = ks
;
1018 /* No seek enabled */
1019 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, 0x00, 0x00);
1020 fdctrl
->fifo
[3] = kt
;
1021 fdctrl
->fifo
[4] = kh
;
1022 fdctrl
->fifo
[5] = ks
;
1031 /* Set the FIFO state */
1032 fdctrl
->data_dir
= direction
;
1033 fdctrl
->data_pos
= 0;
1034 fdctrl
->msr
|= FD_MSR_CMDBUSY
;
1035 if (fdctrl
->fifo
[0] & 0x80)
1036 fdctrl
->data_state
|= FD_STATE_MULTI
;
1038 fdctrl
->data_state
&= ~FD_STATE_MULTI
;
1040 fdctrl
->data_state
|= FD_STATE_SEEK
;
1042 fdctrl
->data_state
&= ~FD_STATE_SEEK
;
1043 if (fdctrl
->fifo
[5] == 00) {
1044 fdctrl
->data_len
= fdctrl
->fifo
[8];
1047 fdctrl
->data_len
= 128 << (fdctrl
->fifo
[5] > 7 ? 7 : fdctrl
->fifo
[5]);
1048 tmp
= (fdctrl
->fifo
[6] - ks
+ 1);
1049 if (fdctrl
->fifo
[0] & 0x80)
1050 tmp
+= fdctrl
->fifo
[6];
1051 fdctrl
->data_len
*= tmp
;
1053 fdctrl
->eot
= fdctrl
->fifo
[6];
1054 if (fdctrl
->dor
& FD_DOR_DMAEN
) {
1056 /* DMA transfer are enabled. Check if DMA channel is well programmed */
1057 dma_mode
= DMA_get_channel_mode(fdctrl
->dma_chann
);
1058 dma_mode
= (dma_mode
>> 2) & 3;
1059 FLOPPY_DPRINTF("dma_mode=%d direction=%d (%d - %d)\n",
1060 dma_mode
, direction
,
1061 (128 << fdctrl
->fifo
[5]) *
1062 (cur_drv
->last_sect
- ks
+ 1), fdctrl
->data_len
);
1063 if (((direction
== FD_DIR_SCANE
|| direction
== FD_DIR_SCANL
||
1064 direction
== FD_DIR_SCANH
) && dma_mode
== 0) ||
1065 (direction
== FD_DIR_WRITE
&& dma_mode
== 2) ||
1066 (direction
== FD_DIR_READ
&& dma_mode
== 1)) {
1067 /* No access is allowed until DMA transfer has completed */
1068 fdctrl
->msr
&= ~FD_MSR_RQM
;
1069 /* Now, we just have to wait for the DMA controller to
1072 DMA_hold_DREQ(fdctrl
->dma_chann
);
1073 DMA_schedule(fdctrl
->dma_chann
);
1076 FLOPPY_ERROR("dma_mode=%d direction=%d\n", dma_mode
, direction
);
1079 FLOPPY_DPRINTF("start non-DMA transfer\n");
1080 fdctrl
->msr
|= FD_MSR_NONDMA
;
1081 if (direction
!= FD_DIR_WRITE
)
1082 fdctrl
->msr
|= FD_MSR_DIO
;
1083 /* IO based transfer: calculate len */
1084 fdctrl_raise_irq(fdctrl
, 0x00);
1089 /* Prepare a transfer of deleted data */
1090 static void fdctrl_start_transfer_del(FDCtrl
*fdctrl
, int direction
)
1092 FLOPPY_ERROR("fdctrl_start_transfer_del() unimplemented\n");
1094 /* We don't handle deleted data,
1095 * so we don't return *ANYTHING*
1097 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
| FD_SR0_SEEK
, 0x00, 0x00);
1100 /* handlers for DMA transfers */
1101 static int fdctrl_transfer_handler (void *opaque
, int nchan
,
1102 int dma_pos
, int dma_len
)
1106 int len
, start_pos
, rel_pos
;
1107 uint8_t status0
= 0x00, status1
= 0x00, status2
= 0x00;
1110 if (fdctrl
->msr
& FD_MSR_RQM
) {
1111 FLOPPY_DPRINTF("Not in DMA transfer mode !\n");
1114 cur_drv
= get_cur_drv(fdctrl
);
1115 if (fdctrl
->data_dir
== FD_DIR_SCANE
|| fdctrl
->data_dir
== FD_DIR_SCANL
||
1116 fdctrl
->data_dir
== FD_DIR_SCANH
)
1117 status2
= FD_SR2_SNS
;
1118 if (dma_len
> fdctrl
->data_len
)
1119 dma_len
= fdctrl
->data_len
;
1120 if (cur_drv
->bs
== NULL
) {
1121 if (fdctrl
->data_dir
== FD_DIR_WRITE
)
1122 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
| FD_SR0_SEEK
, 0x00, 0x00);
1124 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, 0x00, 0x00);
1126 goto transfer_error
;
1128 rel_pos
= fdctrl
->data_pos
% FD_SECTOR_LEN
;
1129 for (start_pos
= fdctrl
->data_pos
; fdctrl
->data_pos
< dma_len
;) {
1130 len
= dma_len
- fdctrl
->data_pos
;
1131 if (len
+ rel_pos
> FD_SECTOR_LEN
)
1132 len
= FD_SECTOR_LEN
- rel_pos
;
1133 FLOPPY_DPRINTF("copy %d bytes (%d %d %d) %d pos %d %02x "
1134 "(%d-0x%08x 0x%08x)\n", len
, dma_len
, fdctrl
->data_pos
,
1135 fdctrl
->data_len
, GET_CUR_DRV(fdctrl
), cur_drv
->head
,
1136 cur_drv
->track
, cur_drv
->sect
, fd_sector(cur_drv
),
1137 fd_sector(cur_drv
) * FD_SECTOR_LEN
);
1138 if (fdctrl
->data_dir
!= FD_DIR_WRITE
||
1139 len
< FD_SECTOR_LEN
|| rel_pos
!= 0) {
1140 /* READ & SCAN commands and realign to a sector for WRITE */
1141 if (bdrv_read(cur_drv
->bs
, fd_sector(cur_drv
),
1142 fdctrl
->fifo
, 1) < 0) {
1143 FLOPPY_DPRINTF("Floppy: error getting sector %d\n",
1144 fd_sector(cur_drv
));
1145 /* Sure, image size is too small... */
1146 memset(fdctrl
->fifo
, 0, FD_SECTOR_LEN
);
1149 switch (fdctrl
->data_dir
) {
1152 DMA_write_memory (nchan
, fdctrl
->fifo
+ rel_pos
,
1153 fdctrl
->data_pos
, len
);
1156 /* WRITE commands */
1157 DMA_read_memory (nchan
, fdctrl
->fifo
+ rel_pos
,
1158 fdctrl
->data_pos
, len
);
1159 if (bdrv_write(cur_drv
->bs
, fd_sector(cur_drv
),
1160 fdctrl
->fifo
, 1) < 0) {
1161 FLOPPY_ERROR("writing sector %d\n", fd_sector(cur_drv
));
1162 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
| FD_SR0_SEEK
, 0x00, 0x00);
1163 goto transfer_error
;
1169 uint8_t tmpbuf
[FD_SECTOR_LEN
];
1171 DMA_read_memory (nchan
, tmpbuf
, fdctrl
->data_pos
, len
);
1172 ret
= memcmp(tmpbuf
, fdctrl
->fifo
+ rel_pos
, len
);
1174 status2
= FD_SR2_SEH
;
1177 if ((ret
< 0 && fdctrl
->data_dir
== FD_DIR_SCANL
) ||
1178 (ret
> 0 && fdctrl
->data_dir
== FD_DIR_SCANH
)) {
1185 fdctrl
->data_pos
+= len
;
1186 rel_pos
= fdctrl
->data_pos
% FD_SECTOR_LEN
;
1188 /* Seek to next sector */
1189 if (!fdctrl_seek_to_next_sect(fdctrl
, cur_drv
))
1194 len
= fdctrl
->data_pos
- start_pos
;
1195 FLOPPY_DPRINTF("end transfer %d %d %d\n",
1196 fdctrl
->data_pos
, len
, fdctrl
->data_len
);
1197 if (fdctrl
->data_dir
== FD_DIR_SCANE
||
1198 fdctrl
->data_dir
== FD_DIR_SCANL
||
1199 fdctrl
->data_dir
== FD_DIR_SCANH
)
1200 status2
= FD_SR2_SEH
;
1201 if (FD_DID_SEEK(fdctrl
->data_state
))
1202 status0
|= FD_SR0_SEEK
;
1203 fdctrl
->data_len
-= len
;
1204 fdctrl_stop_transfer(fdctrl
, status0
, status1
, status2
);
1210 /* Data register : 0x05 */
1211 static uint32_t fdctrl_read_data(FDCtrl
*fdctrl
)
1214 uint32_t retval
= 0;
1217 cur_drv
= get_cur_drv(fdctrl
);
1218 fdctrl
->dsr
&= ~FD_DSR_PWRDOWN
;
1219 if (!(fdctrl
->msr
& FD_MSR_RQM
) || !(fdctrl
->msr
& FD_MSR_DIO
)) {
1220 FLOPPY_ERROR("controller not ready for reading\n");
1223 pos
= fdctrl
->data_pos
;
1224 if (fdctrl
->msr
& FD_MSR_NONDMA
) {
1225 pos
%= FD_SECTOR_LEN
;
1227 if (fdctrl
->data_pos
!= 0)
1228 if (!fdctrl_seek_to_next_sect(fdctrl
, cur_drv
)) {
1229 FLOPPY_DPRINTF("error seeking to next sector %d\n",
1230 fd_sector(cur_drv
));
1233 if (bdrv_read(cur_drv
->bs
, fd_sector(cur_drv
), fdctrl
->fifo
, 1) < 0) {
1234 FLOPPY_DPRINTF("error getting sector %d\n",
1235 fd_sector(cur_drv
));
1236 /* Sure, image size is too small... */
1237 memset(fdctrl
->fifo
, 0, FD_SECTOR_LEN
);
1241 retval
= fdctrl
->fifo
[pos
];
1242 if (++fdctrl
->data_pos
== fdctrl
->data_len
) {
1243 fdctrl
->data_pos
= 0;
1244 /* Switch from transfer mode to status mode
1245 * then from status mode to command mode
1247 if (fdctrl
->msr
& FD_MSR_NONDMA
) {
1248 fdctrl_stop_transfer(fdctrl
, FD_SR0_SEEK
, 0x00, 0x00);
1250 fdctrl_reset_fifo(fdctrl
);
1251 fdctrl_reset_irq(fdctrl
);
1254 FLOPPY_DPRINTF("data register: 0x%02x\n", retval
);
1259 static void fdctrl_format_sector(FDCtrl
*fdctrl
)
1264 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1265 cur_drv
= get_cur_drv(fdctrl
);
1266 kt
= fdctrl
->fifo
[6];
1267 kh
= fdctrl
->fifo
[7];
1268 ks
= fdctrl
->fifo
[8];
1269 FLOPPY_DPRINTF("format sector at %d %d %02x %02x (%d)\n",
1270 GET_CUR_DRV(fdctrl
), kh
, kt
, ks
,
1271 fd_sector_calc(kh
, kt
, ks
, cur_drv
->last_sect
));
1272 switch (fd_seek(cur_drv
, kh
, kt
, ks
, fdctrl
->config
& FD_CONFIG_EIS
)) {
1275 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, 0x00, 0x00);
1276 fdctrl
->fifo
[3] = kt
;
1277 fdctrl
->fifo
[4] = kh
;
1278 fdctrl
->fifo
[5] = ks
;
1282 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, FD_SR1_EC
, 0x00);
1283 fdctrl
->fifo
[3] = kt
;
1284 fdctrl
->fifo
[4] = kh
;
1285 fdctrl
->fifo
[5] = ks
;
1288 /* No seek enabled */
1289 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
, 0x00, 0x00);
1290 fdctrl
->fifo
[3] = kt
;
1291 fdctrl
->fifo
[4] = kh
;
1292 fdctrl
->fifo
[5] = ks
;
1295 fdctrl
->data_state
|= FD_STATE_SEEK
;
1300 memset(fdctrl
->fifo
, 0, FD_SECTOR_LEN
);
1301 if (cur_drv
->bs
== NULL
||
1302 bdrv_write(cur_drv
->bs
, fd_sector(cur_drv
), fdctrl
->fifo
, 1) < 0) {
1303 FLOPPY_ERROR("formatting sector %d\n", fd_sector(cur_drv
));
1304 fdctrl_stop_transfer(fdctrl
, FD_SR0_ABNTERM
| FD_SR0_SEEK
, 0x00, 0x00);
1306 if (cur_drv
->sect
== cur_drv
->last_sect
) {
1307 fdctrl
->data_state
&= ~FD_STATE_FORMAT
;
1308 /* Last sector done */
1309 if (FD_DID_SEEK(fdctrl
->data_state
))
1310 fdctrl_stop_transfer(fdctrl
, FD_SR0_SEEK
, 0x00, 0x00);
1312 fdctrl_stop_transfer(fdctrl
, 0x00, 0x00, 0x00);
1315 fdctrl
->data_pos
= 0;
1316 fdctrl
->data_len
= 4;
1321 static void fdctrl_handle_lock(FDCtrl
*fdctrl
, int direction
)
1323 fdctrl
->lock
= (fdctrl
->fifo
[0] & 0x80) ? 1 : 0;
1324 fdctrl
->fifo
[0] = fdctrl
->lock
<< 4;
1325 fdctrl_set_fifo(fdctrl
, 1, fdctrl
->lock
);
1328 static void fdctrl_handle_dumpreg(FDCtrl
*fdctrl
, int direction
)
1330 FDrive
*cur_drv
= get_cur_drv(fdctrl
);
1332 /* Drives position */
1333 fdctrl
->fifo
[0] = drv0(fdctrl
)->track
;
1334 fdctrl
->fifo
[1] = drv1(fdctrl
)->track
;
1336 fdctrl
->fifo
[2] = drv2(fdctrl
)->track
;
1337 fdctrl
->fifo
[3] = drv3(fdctrl
)->track
;
1339 fdctrl
->fifo
[2] = 0;
1340 fdctrl
->fifo
[3] = 0;
1343 fdctrl
->fifo
[4] = fdctrl
->timer0
;
1344 fdctrl
->fifo
[5] = (fdctrl
->timer1
<< 1) | (fdctrl
->dor
& FD_DOR_DMAEN
? 1 : 0);
1345 fdctrl
->fifo
[6] = cur_drv
->last_sect
;
1346 fdctrl
->fifo
[7] = (fdctrl
->lock
<< 7) |
1347 (cur_drv
->perpendicular
<< 2);
1348 fdctrl
->fifo
[8] = fdctrl
->config
;
1349 fdctrl
->fifo
[9] = fdctrl
->precomp_trk
;
1350 fdctrl_set_fifo(fdctrl
, 10, 0);
1353 static void fdctrl_handle_version(FDCtrl
*fdctrl
, int direction
)
1355 /* Controller's version */
1356 fdctrl
->fifo
[0] = fdctrl
->version
;
1357 fdctrl_set_fifo(fdctrl
, 1, 1);
1360 static void fdctrl_handle_partid(FDCtrl
*fdctrl
, int direction
)
1362 fdctrl
->fifo
[0] = 0x41; /* Stepping 1 */
1363 fdctrl_set_fifo(fdctrl
, 1, 0);
1366 static void fdctrl_handle_restore(FDCtrl
*fdctrl
, int direction
)
1368 FDrive
*cur_drv
= get_cur_drv(fdctrl
);
1370 /* Drives position */
1371 drv0(fdctrl
)->track
= fdctrl
->fifo
[3];
1372 drv1(fdctrl
)->track
= fdctrl
->fifo
[4];
1374 drv2(fdctrl
)->track
= fdctrl
->fifo
[5];
1375 drv3(fdctrl
)->track
= fdctrl
->fifo
[6];
1378 fdctrl
->timer0
= fdctrl
->fifo
[7];
1379 fdctrl
->timer1
= fdctrl
->fifo
[8];
1380 cur_drv
->last_sect
= fdctrl
->fifo
[9];
1381 fdctrl
->lock
= fdctrl
->fifo
[10] >> 7;
1382 cur_drv
->perpendicular
= (fdctrl
->fifo
[10] >> 2) & 0xF;
1383 fdctrl
->config
= fdctrl
->fifo
[11];
1384 fdctrl
->precomp_trk
= fdctrl
->fifo
[12];
1385 fdctrl
->pwrd
= fdctrl
->fifo
[13];
1386 fdctrl_reset_fifo(fdctrl
);
1389 static void fdctrl_handle_save(FDCtrl
*fdctrl
, int direction
)
1391 FDrive
*cur_drv
= get_cur_drv(fdctrl
);
1393 fdctrl
->fifo
[0] = 0;
1394 fdctrl
->fifo
[1] = 0;
1395 /* Drives position */
1396 fdctrl
->fifo
[2] = drv0(fdctrl
)->track
;
1397 fdctrl
->fifo
[3] = drv1(fdctrl
)->track
;
1399 fdctrl
->fifo
[4] = drv2(fdctrl
)->track
;
1400 fdctrl
->fifo
[5] = drv3(fdctrl
)->track
;
1402 fdctrl
->fifo
[4] = 0;
1403 fdctrl
->fifo
[5] = 0;
1406 fdctrl
->fifo
[6] = fdctrl
->timer0
;
1407 fdctrl
->fifo
[7] = fdctrl
->timer1
;
1408 fdctrl
->fifo
[8] = cur_drv
->last_sect
;
1409 fdctrl
->fifo
[9] = (fdctrl
->lock
<< 7) |
1410 (cur_drv
->perpendicular
<< 2);
1411 fdctrl
->fifo
[10] = fdctrl
->config
;
1412 fdctrl
->fifo
[11] = fdctrl
->precomp_trk
;
1413 fdctrl
->fifo
[12] = fdctrl
->pwrd
;
1414 fdctrl
->fifo
[13] = 0;
1415 fdctrl
->fifo
[14] = 0;
1416 fdctrl_set_fifo(fdctrl
, 15, 1);
1419 static void fdctrl_handle_readid(FDCtrl
*fdctrl
, int direction
)
1421 FDrive
*cur_drv
= get_cur_drv(fdctrl
);
1423 /* XXX: should set main status register to busy */
1424 cur_drv
->head
= (fdctrl
->fifo
[1] >> 2) & 1;
1425 qemu_mod_timer(fdctrl
->result_timer
,
1426 qemu_get_clock(vm_clock
) + (get_ticks_per_sec() / 50));
1429 static void fdctrl_handle_format_track(FDCtrl
*fdctrl
, int direction
)
1433 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1434 cur_drv
= get_cur_drv(fdctrl
);
1435 fdctrl
->data_state
|= FD_STATE_FORMAT
;
1436 if (fdctrl
->fifo
[0] & 0x80)
1437 fdctrl
->data_state
|= FD_STATE_MULTI
;
1439 fdctrl
->data_state
&= ~FD_STATE_MULTI
;
1440 fdctrl
->data_state
&= ~FD_STATE_SEEK
;
1442 fdctrl
->fifo
[2] > 7 ? 16384 : 128 << fdctrl
->fifo
[2];
1444 cur_drv
->last_sect
=
1445 cur_drv
->flags
& FDISK_DBL_SIDES
? fdctrl
->fifo
[3] :
1446 fdctrl
->fifo
[3] / 2;
1448 cur_drv
->last_sect
= fdctrl
->fifo
[3];
1450 /* TODO: implement format using DMA expected by the Bochs BIOS
1451 * and Linux fdformat (read 3 bytes per sector via DMA and fill
1452 * the sector with the specified fill byte
1454 fdctrl
->data_state
&= ~FD_STATE_FORMAT
;
1455 fdctrl_stop_transfer(fdctrl
, 0x00, 0x00, 0x00);
1458 static void fdctrl_handle_specify(FDCtrl
*fdctrl
, int direction
)
1460 fdctrl
->timer0
= (fdctrl
->fifo
[1] >> 4) & 0xF;
1461 fdctrl
->timer1
= fdctrl
->fifo
[2] >> 1;
1462 if (fdctrl
->fifo
[2] & 1)
1463 fdctrl
->dor
&= ~FD_DOR_DMAEN
;
1465 fdctrl
->dor
|= FD_DOR_DMAEN
;
1466 /* No result back */
1467 fdctrl_reset_fifo(fdctrl
);
1470 static void fdctrl_handle_sense_drive_status(FDCtrl
*fdctrl
, int direction
)
1474 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1475 cur_drv
= get_cur_drv(fdctrl
);
1476 cur_drv
->head
= (fdctrl
->fifo
[1] >> 2) & 1;
1477 /* 1 Byte status back */
1478 fdctrl
->fifo
[0] = (cur_drv
->ro
<< 6) |
1479 (cur_drv
->track
== 0 ? 0x10 : 0x00) |
1480 (cur_drv
->head
<< 2) |
1481 GET_CUR_DRV(fdctrl
) |
1483 fdctrl_set_fifo(fdctrl
, 1, 0);
1486 static void fdctrl_handle_recalibrate(FDCtrl
*fdctrl
, int direction
)
1490 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1491 cur_drv
= get_cur_drv(fdctrl
);
1492 fd_recalibrate(cur_drv
);
1493 fdctrl_reset_fifo(fdctrl
);
1494 /* Raise Interrupt */
1495 fdctrl_raise_irq(fdctrl
, FD_SR0_SEEK
);
1498 static void fdctrl_handle_sense_interrupt_status(FDCtrl
*fdctrl
, int direction
)
1500 FDrive
*cur_drv
= get_cur_drv(fdctrl
);
1502 if(fdctrl
->reset_sensei
> 0) {
1504 FD_SR0_RDYCHG
+ FD_RESET_SENSEI_COUNT
- fdctrl
->reset_sensei
;
1505 fdctrl
->reset_sensei
--;
1507 /* XXX: status0 handling is broken for read/write
1508 commands, so we do this hack. It should be suppressed
1511 FD_SR0_SEEK
| (cur_drv
->head
<< 2) | GET_CUR_DRV(fdctrl
);
1514 fdctrl
->fifo
[1] = cur_drv
->track
;
1515 fdctrl_set_fifo(fdctrl
, 2, 0);
1516 fdctrl_reset_irq(fdctrl
);
1517 fdctrl
->status0
= FD_SR0_RDYCHG
;
1520 static void fdctrl_handle_seek(FDCtrl
*fdctrl
, int direction
)
1524 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1525 cur_drv
= get_cur_drv(fdctrl
);
1526 fdctrl_reset_fifo(fdctrl
);
1527 if (fdctrl
->fifo
[2] > cur_drv
->max_track
) {
1528 fdctrl_raise_irq(fdctrl
, FD_SR0_ABNTERM
| FD_SR0_SEEK
);
1530 cur_drv
->track
= fdctrl
->fifo
[2];
1531 /* Raise Interrupt */
1532 fdctrl_raise_irq(fdctrl
, FD_SR0_SEEK
);
1536 static void fdctrl_handle_perpendicular_mode(FDCtrl
*fdctrl
, int direction
)
1538 FDrive
*cur_drv
= get_cur_drv(fdctrl
);
1540 if (fdctrl
->fifo
[1] & 0x80)
1541 cur_drv
->perpendicular
= fdctrl
->fifo
[1] & 0x7;
1542 /* No result back */
1543 fdctrl_reset_fifo(fdctrl
);
1546 static void fdctrl_handle_configure(FDCtrl
*fdctrl
, int direction
)
1548 fdctrl
->config
= fdctrl
->fifo
[2];
1549 fdctrl
->precomp_trk
= fdctrl
->fifo
[3];
1550 /* No result back */
1551 fdctrl_reset_fifo(fdctrl
);
1554 static void fdctrl_handle_powerdown_mode(FDCtrl
*fdctrl
, int direction
)
1556 fdctrl
->pwrd
= fdctrl
->fifo
[1];
1557 fdctrl
->fifo
[0] = fdctrl
->fifo
[1];
1558 fdctrl_set_fifo(fdctrl
, 1, 1);
1561 static void fdctrl_handle_option(FDCtrl
*fdctrl
, int direction
)
1563 /* No result back */
1564 fdctrl_reset_fifo(fdctrl
);
1567 static void fdctrl_handle_drive_specification_command(FDCtrl
*fdctrl
, int direction
)
1569 FDrive
*cur_drv
= get_cur_drv(fdctrl
);
1571 if (fdctrl
->fifo
[fdctrl
->data_pos
- 1] & 0x80) {
1572 /* Command parameters done */
1573 if (fdctrl
->fifo
[fdctrl
->data_pos
- 1] & 0x40) {
1574 fdctrl
->fifo
[0] = fdctrl
->fifo
[1];
1575 fdctrl
->fifo
[2] = 0;
1576 fdctrl
->fifo
[3] = 0;
1577 fdctrl_set_fifo(fdctrl
, 4, 1);
1579 fdctrl_reset_fifo(fdctrl
);
1581 } else if (fdctrl
->data_len
> 7) {
1583 fdctrl
->fifo
[0] = 0x80 |
1584 (cur_drv
->head
<< 2) | GET_CUR_DRV(fdctrl
);
1585 fdctrl_set_fifo(fdctrl
, 1, 1);
1589 static void fdctrl_handle_relative_seek_out(FDCtrl
*fdctrl
, int direction
)
1593 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1594 cur_drv
= get_cur_drv(fdctrl
);
1595 if (fdctrl
->fifo
[2] + cur_drv
->track
>= cur_drv
->max_track
) {
1596 cur_drv
->track
= cur_drv
->max_track
- 1;
1598 cur_drv
->track
+= fdctrl
->fifo
[2];
1600 fdctrl_reset_fifo(fdctrl
);
1601 /* Raise Interrupt */
1602 fdctrl_raise_irq(fdctrl
, FD_SR0_SEEK
);
1605 static void fdctrl_handle_relative_seek_in(FDCtrl
*fdctrl
, int direction
)
1609 SET_CUR_DRV(fdctrl
, fdctrl
->fifo
[1] & FD_DOR_SELMASK
);
1610 cur_drv
= get_cur_drv(fdctrl
);
1611 if (fdctrl
->fifo
[2] > cur_drv
->track
) {
1614 cur_drv
->track
-= fdctrl
->fifo
[2];
1616 fdctrl_reset_fifo(fdctrl
);
1617 /* Raise Interrupt */
1618 fdctrl_raise_irq(fdctrl
, FD_SR0_SEEK
);
1621 static const struct {
1626 void (*handler
)(FDCtrl
*fdctrl
, int direction
);
1629 { FD_CMD_READ
, 0x1f, "READ", 8, fdctrl_start_transfer
, FD_DIR_READ
},
1630 { FD_CMD_WRITE
, 0x3f, "WRITE", 8, fdctrl_start_transfer
, FD_DIR_WRITE
},
1631 { FD_CMD_SEEK
, 0xff, "SEEK", 2, fdctrl_handle_seek
},
1632 { FD_CMD_SENSE_INTERRUPT_STATUS
, 0xff, "SENSE INTERRUPT STATUS", 0, fdctrl_handle_sense_interrupt_status
},
1633 { FD_CMD_RECALIBRATE
, 0xff, "RECALIBRATE", 1, fdctrl_handle_recalibrate
},
1634 { FD_CMD_FORMAT_TRACK
, 0xbf, "FORMAT TRACK", 5, fdctrl_handle_format_track
},
1635 { FD_CMD_READ_TRACK
, 0xbf, "READ TRACK", 8, fdctrl_start_transfer
, FD_DIR_READ
},
1636 { FD_CMD_RESTORE
, 0xff, "RESTORE", 17, fdctrl_handle_restore
}, /* part of READ DELETED DATA */
1637 { FD_CMD_SAVE
, 0xff, "SAVE", 0, fdctrl_handle_save
}, /* part of READ DELETED DATA */
1638 { FD_CMD_READ_DELETED
, 0x1f, "READ DELETED DATA", 8, fdctrl_start_transfer_del
, FD_DIR_READ
},
1639 { FD_CMD_SCAN_EQUAL
, 0x1f, "SCAN EQUAL", 8, fdctrl_start_transfer
, FD_DIR_SCANE
},
1640 { FD_CMD_VERIFY
, 0x1f, "VERIFY", 8, fdctrl_unimplemented
},
1641 { FD_CMD_SCAN_LOW_OR_EQUAL
, 0x1f, "SCAN LOW OR EQUAL", 8, fdctrl_start_transfer
, FD_DIR_SCANL
},
1642 { FD_CMD_SCAN_HIGH_OR_EQUAL
, 0x1f, "SCAN HIGH OR EQUAL", 8, fdctrl_start_transfer
, FD_DIR_SCANH
},
1643 { FD_CMD_WRITE_DELETED
, 0x3f, "WRITE DELETED DATA", 8, fdctrl_start_transfer_del
, FD_DIR_WRITE
},
1644 { FD_CMD_READ_ID
, 0xbf, "READ ID", 1, fdctrl_handle_readid
},
1645 { FD_CMD_SPECIFY
, 0xff, "SPECIFY", 2, fdctrl_handle_specify
},
1646 { FD_CMD_SENSE_DRIVE_STATUS
, 0xff, "SENSE DRIVE STATUS", 1, fdctrl_handle_sense_drive_status
},
1647 { FD_CMD_PERPENDICULAR_MODE
, 0xff, "PERPENDICULAR MODE", 1, fdctrl_handle_perpendicular_mode
},
1648 { FD_CMD_CONFIGURE
, 0xff, "CONFIGURE", 3, fdctrl_handle_configure
},
1649 { FD_CMD_POWERDOWN_MODE
, 0xff, "POWERDOWN MODE", 2, fdctrl_handle_powerdown_mode
},
1650 { FD_CMD_OPTION
, 0xff, "OPTION", 1, fdctrl_handle_option
},
1651 { FD_CMD_DRIVE_SPECIFICATION_COMMAND
, 0xff, "DRIVE SPECIFICATION COMMAND", 5, fdctrl_handle_drive_specification_command
},
1652 { FD_CMD_RELATIVE_SEEK_OUT
, 0xff, "RELATIVE SEEK OUT", 2, fdctrl_handle_relative_seek_out
},
1653 { FD_CMD_FORMAT_AND_WRITE
, 0xff, "FORMAT AND WRITE", 10, fdctrl_unimplemented
},
1654 { FD_CMD_RELATIVE_SEEK_IN
, 0xff, "RELATIVE SEEK IN", 2, fdctrl_handle_relative_seek_in
},
1655 { FD_CMD_LOCK
, 0x7f, "LOCK", 0, fdctrl_handle_lock
},
1656 { FD_CMD_DUMPREG
, 0xff, "DUMPREG", 0, fdctrl_handle_dumpreg
},
1657 { FD_CMD_VERSION
, 0xff, "VERSION", 0, fdctrl_handle_version
},
1658 { FD_CMD_PART_ID
, 0xff, "PART ID", 0, fdctrl_handle_partid
},
1659 { FD_CMD_WRITE
, 0x1f, "WRITE (BeOS)", 8, fdctrl_start_transfer
, FD_DIR_WRITE
}, /* not in specification ; BeOS 4.5 bug */
1660 { 0, 0, "unknown", 0, fdctrl_unimplemented
}, /* default handler */
1662 /* Associate command to an index in the 'handlers' array */
1663 static uint8_t command_to_handler
[256];
1665 static void fdctrl_write_data(FDCtrl
*fdctrl
, uint32_t value
)
1671 if (!(fdctrl
->dor
& FD_DOR_nRESET
)) {
1672 FLOPPY_DPRINTF("Floppy controller in RESET state !\n");
1675 if (!(fdctrl
->msr
& FD_MSR_RQM
) || (fdctrl
->msr
& FD_MSR_DIO
)) {
1676 FLOPPY_ERROR("controller not ready for writing\n");
1679 fdctrl
->dsr
&= ~FD_DSR_PWRDOWN
;
1680 /* Is it write command time ? */
1681 if (fdctrl
->msr
& FD_MSR_NONDMA
) {
1682 /* FIFO data write */
1683 pos
= fdctrl
->data_pos
++;
1684 pos
%= FD_SECTOR_LEN
;
1685 fdctrl
->fifo
[pos
] = value
;
1686 if (pos
== FD_SECTOR_LEN
- 1 ||
1687 fdctrl
->data_pos
== fdctrl
->data_len
) {
1688 cur_drv
= get_cur_drv(fdctrl
);
1689 if (bdrv_write(cur_drv
->bs
, fd_sector(cur_drv
), fdctrl
->fifo
, 1) < 0) {
1690 FLOPPY_ERROR("writing sector %d\n", fd_sector(cur_drv
));
1693 if (!fdctrl_seek_to_next_sect(fdctrl
, cur_drv
)) {
1694 FLOPPY_DPRINTF("error seeking to next sector %d\n",
1695 fd_sector(cur_drv
));
1699 /* Switch from transfer mode to status mode
1700 * then from status mode to command mode
1702 if (fdctrl
->data_pos
== fdctrl
->data_len
)
1703 fdctrl_stop_transfer(fdctrl
, FD_SR0_SEEK
, 0x00, 0x00);
1706 if (fdctrl
->data_pos
== 0) {
1708 pos
= command_to_handler
[value
& 0xff];
1709 FLOPPY_DPRINTF("%s command\n", handlers
[pos
].name
);
1710 fdctrl
->data_len
= handlers
[pos
].parameters
+ 1;
1713 FLOPPY_DPRINTF("%s: %02x\n", __func__
, value
);
1714 fdctrl
->fifo
[fdctrl
->data_pos
++] = value
;
1715 if (fdctrl
->data_pos
== fdctrl
->data_len
) {
1716 /* We now have all parameters
1717 * and will be able to treat the command
1719 if (fdctrl
->data_state
& FD_STATE_FORMAT
) {
1720 fdctrl_format_sector(fdctrl
);
1724 pos
= command_to_handler
[fdctrl
->fifo
[0] & 0xff];
1725 FLOPPY_DPRINTF("treat %s command\n", handlers
[pos
].name
);
1726 (*handlers
[pos
].handler
)(fdctrl
, handlers
[pos
].direction
);
1730 static void fdctrl_result_timer(void *opaque
)
1732 FDCtrl
*fdctrl
= opaque
;
1733 FDrive
*cur_drv
= get_cur_drv(fdctrl
);
1735 /* Pretend we are spinning.
1736 * This is needed for Coherent, which uses READ ID to check for
1737 * sector interleaving.
1739 if (cur_drv
->last_sect
!= 0) {
1740 cur_drv
->sect
= (cur_drv
->sect
% cur_drv
->last_sect
) + 1;
1742 fdctrl_stop_transfer(fdctrl
, 0x00, 0x00, 0x00);
1745 /* Init functions */
1746 static int fdctrl_connect_drives(FDCtrl
*fdctrl
)
1751 for (i
= 0; i
< MAX_FD
; i
++) {
1752 drive
= &fdctrl
->drives
[i
];
1755 if (bdrv_get_on_error(drive
->bs
, 0) != BLOCK_ERR_STOP_ENOSPC
) {
1756 error_report("fdc doesn't support drive option werror");
1759 if (bdrv_get_on_error(drive
->bs
, 1) != BLOCK_ERR_REPORT
) {
1760 error_report("fdc doesn't support drive option rerror");
1766 fd_revalidate(drive
);
1768 bdrv_set_removable(drive
->bs
, 1);
1774 void fdctrl_init_sysbus(qemu_irq irq
, int dma_chann
,
1775 target_phys_addr_t mmio_base
, DriveInfo
**fds
)
1781 dev
= qdev_create(NULL
, "sysbus-fdc");
1782 sys
= DO_UPCAST(FDCtrlSysBus
, busdev
.qdev
, dev
);
1783 fdctrl
= &sys
->state
;
1784 fdctrl
->dma_chann
= dma_chann
; /* FIXME */
1786 qdev_prop_set_drive_nofail(dev
, "driveA", fds
[0]->bdrv
);
1789 qdev_prop_set_drive_nofail(dev
, "driveB", fds
[1]->bdrv
);
1791 qdev_init_nofail(dev
);
1792 sysbus_connect_irq(&sys
->busdev
, 0, irq
);
1793 sysbus_mmio_map(&sys
->busdev
, 0, mmio_base
);
1796 void sun4m_fdctrl_init(qemu_irq irq
, target_phys_addr_t io_base
,
1797 DriveInfo
**fds
, qemu_irq
*fdc_tc
)
1802 dev
= qdev_create(NULL
, "SUNW,fdtwo");
1804 qdev_prop_set_drive_nofail(dev
, "drive", fds
[0]->bdrv
);
1806 qdev_init_nofail(dev
);
1807 sys
= DO_UPCAST(FDCtrlSysBus
, busdev
.qdev
, dev
);
1808 sysbus_connect_irq(&sys
->busdev
, 0, irq
);
1809 sysbus_mmio_map(&sys
->busdev
, 0, io_base
);
1810 *fdc_tc
= qdev_get_gpio_in(dev
, 0);
1813 static int fdctrl_init_common(FDCtrl
*fdctrl
)
1816 static int command_tables_inited
= 0;
1818 /* Fill 'command_to_handler' lookup table */
1819 if (!command_tables_inited
) {
1820 command_tables_inited
= 1;
1821 for (i
= ARRAY_SIZE(handlers
) - 1; i
>= 0; i
--) {
1822 for (j
= 0; j
< sizeof(command_to_handler
); j
++) {
1823 if ((j
& handlers
[i
].mask
) == handlers
[i
].value
) {
1824 command_to_handler
[j
] = i
;
1830 FLOPPY_DPRINTF("init controller\n");
1831 fdctrl
->fifo
= qemu_memalign(512, FD_SECTOR_LEN
);
1832 fdctrl
->fifo_size
= 512;
1833 fdctrl
->result_timer
= qemu_new_timer(vm_clock
,
1834 fdctrl_result_timer
, fdctrl
);
1836 fdctrl
->version
= 0x90; /* Intel 82078 controller */
1837 fdctrl
->config
= FD_CONFIG_EIS
| FD_CONFIG_EFIFO
; /* Implicit seek, polling & FIFO enabled */
1838 fdctrl
->num_floppies
= MAX_FD
;
1840 if (fdctrl
->dma_chann
!= -1)
1841 DMA_register_channel(fdctrl
->dma_chann
, &fdctrl_transfer_handler
, fdctrl
);
1842 return fdctrl_connect_drives(fdctrl
);
1845 static int isabus_fdc_init1(ISADevice
*dev
)
1847 FDCtrlISABus
*isa
= DO_UPCAST(FDCtrlISABus
, busdev
, dev
);
1848 FDCtrl
*fdctrl
= &isa
->state
;
1854 register_ioport_read(iobase
+ 0x01, 5, 1,
1855 &fdctrl_read_port
, fdctrl
);
1856 register_ioport_read(iobase
+ 0x07, 1, 1,
1857 &fdctrl_read_port
, fdctrl
);
1858 register_ioport_write(iobase
+ 0x01, 5, 1,
1859 &fdctrl_write_port
, fdctrl
);
1860 register_ioport_write(iobase
+ 0x07, 1, 1,
1861 &fdctrl_write_port
, fdctrl
);
1862 isa_init_ioport_range(dev
, iobase
, 6);
1863 isa_init_ioport(dev
, iobase
+ 7);
1865 isa_init_irq(&isa
->busdev
, &fdctrl
->irq
, isairq
);
1866 fdctrl
->dma_chann
= dma_chann
;
1868 qdev_set_legacy_instance_id(&dev
->qdev
, iobase
, 2);
1869 ret
= fdctrl_init_common(fdctrl
);
1871 add_boot_device_path(isa
->bootindexA
, &dev
->qdev
, "/floppy@0");
1872 add_boot_device_path(isa
->bootindexB
, &dev
->qdev
, "/floppy@1");
1877 static int sysbus_fdc_init1(SysBusDevice
*dev
)
1879 FDCtrlSysBus
*sys
= DO_UPCAST(FDCtrlSysBus
, busdev
, dev
);
1880 FDCtrl
*fdctrl
= &sys
->state
;
1884 io
= cpu_register_io_memory(fdctrl_mem_read
, fdctrl_mem_write
, fdctrl
,
1885 DEVICE_NATIVE_ENDIAN
);
1886 sysbus_init_mmio(dev
, 0x08, io
);
1887 sysbus_init_irq(dev
, &fdctrl
->irq
);
1888 qdev_init_gpio_in(&dev
->qdev
, fdctrl_handle_tc
, 1);
1889 fdctrl
->dma_chann
= -1;
1891 qdev_set_legacy_instance_id(&dev
->qdev
, io
, 2);
1892 ret
= fdctrl_init_common(fdctrl
);
1897 static int sun4m_fdc_init1(SysBusDevice
*dev
)
1899 FDCtrl
*fdctrl
= &(FROM_SYSBUS(FDCtrlSysBus
, dev
)->state
);
1902 io
= cpu_register_io_memory(fdctrl_mem_read_strict
,
1903 fdctrl_mem_write_strict
, fdctrl
,
1904 DEVICE_NATIVE_ENDIAN
);
1905 sysbus_init_mmio(dev
, 0x08, io
);
1906 sysbus_init_irq(dev
, &fdctrl
->irq
);
1907 qdev_init_gpio_in(&dev
->qdev
, fdctrl_handle_tc
, 1);
1910 qdev_set_legacy_instance_id(&dev
->qdev
, io
, 2);
1911 return fdctrl_init_common(fdctrl
);
1914 static const VMStateDescription vmstate_isa_fdc
={
1917 .minimum_version_id
= 2,
1918 .fields
= (VMStateField
[]) {
1919 VMSTATE_STRUCT(state
, FDCtrlISABus
, 0, vmstate_fdc
, FDCtrl
),
1920 VMSTATE_END_OF_LIST()
1924 static ISADeviceInfo isa_fdc_info
= {
1925 .init
= isabus_fdc_init1
,
1926 .qdev
.name
= "isa-fdc",
1927 .qdev
.fw_name
= "fdc",
1928 .qdev
.size
= sizeof(FDCtrlISABus
),
1930 .qdev
.vmsd
= &vmstate_isa_fdc
,
1931 .qdev
.reset
= fdctrl_external_reset_isa
,
1932 .qdev
.props
= (Property
[]) {
1933 DEFINE_PROP_DRIVE("driveA", FDCtrlISABus
, state
.drives
[0].bs
),
1934 DEFINE_PROP_DRIVE("driveB", FDCtrlISABus
, state
.drives
[1].bs
),
1935 DEFINE_PROP_INT32("bootindexA", FDCtrlISABus
, bootindexA
, -1),
1936 DEFINE_PROP_INT32("bootindexB", FDCtrlISABus
, bootindexB
, -1),
1937 DEFINE_PROP_END_OF_LIST(),
1941 static const VMStateDescription vmstate_sysbus_fdc
={
1944 .minimum_version_id
= 2,
1945 .fields
= (VMStateField
[]) {
1946 VMSTATE_STRUCT(state
, FDCtrlSysBus
, 0, vmstate_fdc
, FDCtrl
),
1947 VMSTATE_END_OF_LIST()
1951 static SysBusDeviceInfo sysbus_fdc_info
= {
1952 .init
= sysbus_fdc_init1
,
1953 .qdev
.name
= "sysbus-fdc",
1954 .qdev
.size
= sizeof(FDCtrlSysBus
),
1955 .qdev
.vmsd
= &vmstate_sysbus_fdc
,
1956 .qdev
.reset
= fdctrl_external_reset_sysbus
,
1957 .qdev
.props
= (Property
[]) {
1958 DEFINE_PROP_DRIVE("driveA", FDCtrlSysBus
, state
.drives
[0].bs
),
1959 DEFINE_PROP_DRIVE("driveB", FDCtrlSysBus
, state
.drives
[1].bs
),
1960 DEFINE_PROP_END_OF_LIST(),
1964 static SysBusDeviceInfo sun4m_fdc_info
= {
1965 .init
= sun4m_fdc_init1
,
1966 .qdev
.name
= "SUNW,fdtwo",
1967 .qdev
.size
= sizeof(FDCtrlSysBus
),
1968 .qdev
.vmsd
= &vmstate_sysbus_fdc
,
1969 .qdev
.reset
= fdctrl_external_reset_sysbus
,
1970 .qdev
.props
= (Property
[]) {
1971 DEFINE_PROP_DRIVE("drive", FDCtrlSysBus
, state
.drives
[0].bs
),
1972 DEFINE_PROP_END_OF_LIST(),
1976 static void fdc_register_devices(void)
1978 isa_qdev_register(&isa_fdc_info
);
1979 sysbus_register_withprop(&sysbus_fdc_info
);
1980 sysbus_register_withprop(&sun4m_fdc_info
);
1983 device_init(fdc_register_devices
)