2010-05-14 15:29:15 +08:00
|
|
|
#ifndef HW_FDC_H
|
|
|
|
#define HW_FDC_H
|
|
|
|
|
2019-08-12 13:23:31 +08:00
|
|
|
#include "exec/hwaddr.h"
|
2018-02-11 17:36:01 +08:00
|
|
|
#include "qapi/qapi-types-block.h"
|
2011-02-13 05:23:12 +08:00
|
|
|
|
2007-11-18 01:14:51 +08:00
|
|
|
/* fdc.c */
|
|
|
|
#define MAX_FD 2
|
|
|
|
|
2013-04-28 04:18:38 +08:00
|
|
|
#define TYPE_ISA_FDC "isa-fdc"
|
|
|
|
|
2012-05-11 23:22:19 +08:00
|
|
|
ISADevice *fdctrl_init_isa(ISABus *bus, DriveInfo **fds);
|
2011-02-06 00:32:23 +08:00
|
|
|
void fdctrl_init_sysbus(qemu_irq irq, int dma_chann,
|
2012-10-23 18:30:10 +08:00
|
|
|
hwaddr mmio_base, DriveInfo **fds);
|
|
|
|
void sun4m_fdctrl_init(qemu_irq irq, hwaddr io_base,
|
2011-02-06 00:32:23 +08:00
|
|
|
DriveInfo **fds, qemu_irq *fdc_tc);
|
2012-07-10 17:12:27 +08:00
|
|
|
|
2016-01-23 04:50:56 +08:00
|
|
|
FloppyDriveType isa_fdc_get_drive_type(ISADevice *fdc, int i);
|
2016-02-18 02:25:32 +08:00
|
|
|
void isa_fdc_get_drive_max_chs(FloppyDriveType type,
|
|
|
|
uint8_t *maxc, uint8_t *maxh, uint8_t *maxs);
|
2011-10-20 22:37:26 +08:00
|
|
|
|
2010-05-14 15:29:15 +08:00
|
|
|
#endif
|