/openbmc/linux/drivers/block/ |
H A D | floppy.c | 234 static int set_dor(int fdc, char mask, char data); 305 #define REVDRIVE(fdc, unit) ((unit) + ((fdc) << 2)) argument 595 static inline unsigned char fdc_inb(int fdc, int reg) in fdc_inb() argument 597 return fd_inb(fdc_state[fdc].address, reg); in fdc_inb() 600 static inline void fdc_outb(unsigned char value, int fdc, int reg) in fdc_outb() argument 602 fd_outb(value, fdc_state[fdc].address, reg); in fdc_outb() 735 int fdc = FDC(drive); in disk_change() local 739 if (!(fdc_state[fdc].dor & (0x10 << UNIT(drive))) || in disk_change() 740 (fdc_state[fdc].dor & 3) != UNIT(drive) || fdc != FDC(drive)) { in disk_change() 743 (unsigned int)fdc_state[fdc].dor); in disk_change() [all …]
|
/openbmc/linux/arch/parisc/kernel/ |
H A D | pacache.S | 757 1: fdc,m r31(%r28) 758 fdc,m r31(%r28) 759 fdc,m r31(%r28) 760 fdc,m r31(%r28) 761 fdc,m r31(%r28) 762 fdc,m r31(%r28) 763 fdc,m r31(%r28) 764 fdc,m r31(%r28) 765 fdc,m r31(%r28) 766 fdc,m r31(%r28) [all …]
|
H A D | relocate_kernel.S | 127 fdc %r0(%r12)
|
/openbmc/qemu/include/hw/block/ |
H A D | fdc.h | 12 void isa_fdc_init_drives(ISADevice *fdc, DriveInfo **fds); 17 void isa_fdc_set_iobase(ISADevice *fdc, hwaddr iobase); 18 void isa_fdc_set_enabled(ISADevice *fdc, bool enabled); 20 FloppyDriveType isa_fdc_get_drive_type(ISADevice *fdc, int i);
|
/openbmc/qemu/hw/block/ |
H A D | fdc-isa.c | 77 void isa_fdc_init_drives(ISADevice *fdc, DriveInfo **fds) in isa_fdc_init_drives() argument 79 fdctrl_init_drives(&ISA_FDC(fdc)->state.bus, fds); in isa_fdc_init_drives() 123 FloppyDriveType isa_fdc_get_drive_type(ISADevice *fdc, int i) in isa_fdc_get_drive_type() argument 125 FDCtrlISABus *isa = ISA_FDC(fdc); in isa_fdc_get_drive_type() 197 void isa_fdc_set_iobase(ISADevice *fdc, hwaddr iobase) in isa_fdc_set_iobase() argument 199 FDCtrlISABus *isa = ISA_FDC(fdc); in isa_fdc_set_iobase() 201 fdc->ioport_id = iobase; in isa_fdc_set_iobase() 206 void isa_fdc_set_enabled(ISADevice *fdc, bool enabled) in isa_fdc_set_enabled() argument 208 portio_list_set_enabled(&ISA_FDC(fdc)->portio_list, enabled); in isa_fdc_set_enabled()
|
H A D | meson.build | 6 system_ss.add(when: 'CONFIG_FDC', if_true: files('fdc.c')) 7 system_ss.add(when: 'CONFIG_FDC_ISA', if_true: files('fdc-isa.c')) 8 system_ss.add(when: 'CONFIG_FDC_SYSBUS', if_true: files('fdc-sysbus.c'))
|
H A D | fdc-internal.h | 38 FDCtrl *fdc; member
|
H A D | fdc.c | 85 static void floppy_bus_create(FDCtrl *fdc, FloppyBus *bus, DeviceState *dev) in floppy_bus_create() argument 88 bus->fdc = fdc; in floppy_bus_create() 476 drive = get_drv(bus->fdc, dev->unit); in floppy_drive_realize() 489 drive = get_drv(bus->fdc, dev->unit); in floppy_drive_realize() 544 drive->fdctrl = bus->fdc; in floppy_drive_realize()
|
H A D | trace-events | 3 # fdc.c 7 # fdc-sysbus.c
|
/openbmc/qemu/tests/qemu-iotests/ |
H A D | 172.out | 11 dev: isa-fdc, id "" 40 dev: isa-fdc, id "" 79 dev: isa-fdc, id "" 136 dev: isa-fdc, id "" 194 dev: isa-fdc, id "" 237 dev: isa-fdc, id "" 276 dev: isa-fdc, id "" 333 dev: isa-fdc, id "" 394 dev: isa-fdc, id "" 433 dev: isa-fdc, id "" [all …]
|
/openbmc/linux/arch/powerpc/boot/dts/ |
H A D | amigaone.dts | 151 fdc@3f0 { 152 device_type = "fdc";
|
/openbmc/qemu/hw/i386/ |
H A D | pc.c | 439 Object *fdc; in check_fdc() local 443 fdc = object_dynamic_cast(obj, TYPE_ISA_FDC); in check_fdc() 444 if (!fdc) { in check_fdc() 1101 ISADevice *fdc = isa_new(TYPE_ISA_FDC); in pc_superio_init() local 1102 if (fdc) { in pc_superio_init() 1103 isa_realize_and_unref(fdc, isa_bus, &error_fatal); in pc_superio_init() 1104 isa_fdc_init_drives(fdc, fd); in pc_superio_init()
|
/openbmc/qemu/docs/about/ |
H A D | removed-features.rst | 272 -global isa-fdc.driveA=... 273 -global sysbus-fdc.driveA=... 284 -global isa-fdc.driveB=... 285 -global sysbus-fdc.driveB=... 295 -device isa-fdc,...,driveA=... 300 -device isa-fdc,... 306 -device isa-fdc,...,driveB=... 311 -device isa-fdc,...
|
/openbmc/qemu/target/hppa/ |
H A D | insns.decode | 150 nop 000001 ----- ----- -- 11001010 0 ----- # fdc, disp 151 nop_addrx 000001 ..... ..... -- 01001010 . ----- @addrx # fdc, index
|
/openbmc/u-boot/cmd/ |
H A D | Makefile | 61 obj-$(CONFIG_CMD_FDC) += fdc.o
|
/openbmc/linux/drivers/net/ethernet/ |
H A D | jme.c | 2582 int rc, fdc = 0; in jme_set_link_ksettings() local 2595 fdc = 1; in jme_set_link_ksettings() 2602 if (fdc) in jme_set_link_ksettings()
|
/openbmc/qemu/tests/qtest/ |
H A D | meson.build | 58 (config_all_devices.has_key('CONFIG_FDC_ISA') ? ['fdc-test'] : []) + \
|
/openbmc/qemu/docs/ |
H A D | qdev-device-use.txt | 392 floppy floppy, isa-fdc
|
/openbmc/qemu/ |
H A D | MAINTAINERS | 1956 F: hw/block/fdc.c 1957 F: hw/block/fdc-internal.h 1958 F: hw/block/fdc-isa.c 1959 F: hw/block/fdc-sysbus.c 1960 F: include/hw/block/fdc.h 1961 F: tests/qtest/fdc-test.c
|
/openbmc/qemu/qga/ |
H A D | qapi-schema.json | 829 # @fdc: floppy disks 870 'data': [ 'ide', 'fdc', 'scsi', 'virtio', 'xen', 'usb', 'uml', 'sata',
|
/openbmc/linux/arch/m68k/ifpsp060/ |
H A D | fplsp.sa | 1221 dc.l $4800b7de,$60ff0000,$27283fdc,$000082e3
|
/openbmc/linux/ |
H A D | CREDITS | 1517 D: Original author of the ftape-HOWTO, i82078 fdc detection code.
|
H A D | opengrok0.0.log | [all...] |
H A D | opengrok1.0.log | 2196 2024-12-28 20:07:12.732-0600 FINEST t585 AnalyzerGuru.lambda$findBySuffix$5: '/openbmc/qemu/tests/qtest/fdc-test.c': chosen by suffix: CAnalyzerFactory 2197 2024-12-28 20:07:12.732-0600 FINE t585 DefaultIndexChangedListener.fileAdd: Add: '/openbmc/qemu/tests/qtest/fdc-test.c' (CAnalyzer) 2198 2024-12-28 20:07:12.732-0600 FINER t585 HistoryGuru.storeHistory: repository {dir='/opengrok/src/openbmc/qemu',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} supports history for directories, skipping '/opengrok/src/openbmc/qemu/tests/qtest/fdc-test.c' 2203 2024-12-28 20:07:12.736-0600 FINEST t628 Ctags.trySplitSource: Re-read '/opengrok/src/openbmc/qemu/tests/qtest/fdc-test.c' 2340 2024-12-28 20:07:12.769-0600 FINER t585 IndexDatabase.createAnnotationCache: failed to create annotation: repository {dir='/opengrok/src/openbmc/qemu',type=git,historyCache=on,renamed=false,merge=true,annotationCache=off} does not allow to create annotation cache for '/opengrok/src/openbmc/qemu/tests/qtest/fdc-test.c' 2341 2024-12-28 20:07:12.769-0600 FINEST t585 Statistics.logIt: Added: '/openbmc/qemu/tests/qtest/fdc-test.c' (CAnalyzer) (took 36 ms) [all...] |