/src/sys/arch/x68k/dev/ |
fd.c | 311 static int out_fdc(bus_space_tag_t, bus_space_handle_t, uint8_t); 513 out_fdc(iot, ioh, NE7CMD_SPECIFY); /* specify command */ 514 out_fdc(iot, ioh, 0xd0); 515 out_fdc(iot, ioh, 0x10); 539 out_fdc(fdc->sc_iot, fdc->sc_ioh, NE7CMD_SENSEI); 569 out_fdc(iot, ioh, NE7CMD_SENSEI); 580 out_fdc(iot, ioh, NE7CMD_RECAL); 581 out_fdc(iot, ioh, drive); 586 out_fdc(iot, ioh, NE7CMD_SENSEI); 909 out_fdc(bus_space_tag_t iot, bus_space_handle_t ioh, uint8_t x function in typeref:typename:int [all...] |
/src/sys/arch/atari/dev/ |
hdfd.c | 324 int out_fdc(u_char); 374 if (out_fdc(NE7CMD_SPECIFY) < 0) 376 out_fdc(0xdf); 377 out_fdc(7); 428 out_fdc(NE7CMD_CONFIGURE); 429 if (out_fdc(0) == 0) { 430 out_fdc(0x1a); /* No polling, fifo depth = 10 */ 431 out_fdc(0); 434 out_fdc(NE7CMD_LOCK); 495 out_fdc(NE7CMD_RECAL) 806 out_fdc(u_char x) function in typeref:typename:int [all...] |
/src/sys/arch/arc/jazz/ |
fd.c | 307 out_fdc(iot, ioh, NE7CMD_RECAL); 308 out_fdc(iot, ioh, drive); 311 out_fdc(iot, ioh, NE7CMD_SENSEI); 635 out_fdc(bus_space_tag_t iot, bus_space_handle_t ioh, uint8_t x) function in typeref:typename:int 736 out_fdc(fdc->sc_iot, fdc->sc_ioh, NE7CMD_SENSEI); 843 out_fdc(iot, ioh, NE7CMD_SPECIFY);/* specify command */ 844 out_fdc(iot, ioh, fd->sc_type->steprate); 845 out_fdc(iot, ioh, 6); /* XXX head load time == 6ms */ 847 out_fdc(iot, ioh, NE7CMD_SEEK); /* seek function */ 848 out_fdc(iot, ioh, fd->sc_drive); /* drive number * [all...] |
fdcvar.h | 132 int out_fdc(bus_space_tag_t iot, bus_space_handle_t ioh, u_char x);
|
fdc_jazzio.c | 140 if (out_fdc(iot, ioh, NE7CMD_SPECIFY) < 0) 142 out_fdc(iot, ioh, 0xdf); /* XXX */ 143 out_fdc(iot, ioh, 2); /* XXX */
|
/src/sys/arch/acorn32/mainbus/ |
fd.c | 308 int out_fdc(bus_space_tag_t iot, bus_space_handle_t ioh, u_char x); 343 if (out_fdc(iot, ioh, NE7CMD_SPECIFY) < 0) 345 out_fdc(iot, ioh, 0xdf); 346 out_fdc(iot, ioh, 2); 466 out_fdc(iot, ioh, NE7CMD_RECAL); 467 out_fdc(iot, ioh, drive); 470 out_fdc(iot, ioh, NE7CMD_SENSEI); 768 out_fdc(bus_space_tag_t iot, bus_space_handle_t ioh, u_char x) function in typeref:typename:int 869 out_fdc(fdc->sc_iot, fdc->sc_ioh, NE7CMD_SENSEI); 981 out_fdc(iot, ioh, NE7CMD_CONFIGURE);/* configure command * [all...] |
/src/sys/dev/isa/ |
fd.c | 421 if (out_fdc(iot, ioh, NE7CMD_SPECIFY) < 0) { 425 out_fdc(iot, ioh, 0xdf); 426 out_fdc(iot, ioh, 2); 509 out_fdc(iot, ioh, NE7CMD_SENSEI); 517 out_fdc(iot, ioh, NE7CMD_RECAL); 518 out_fdc(iot, ioh, drive); 527 out_fdc(iot, ioh, NE7CMD_SENSEI); 904 out_fdc(bus_space_tag_t iot, bus_space_handle_t ioh, u_char x) function in typeref:typename:int 1017 out_fdc(fdc->sc_iot, fdc->sc_ioh, NE7CMD_SENSEI); 1125 out_fdc(iot, ioh, NE7CMD_SPECIFY);/* specify command * [all...] |
fdc_isa.c | 162 if (out_fdc(iot, ioh, NE7CMD_SPECIFY) < 0) 164 out_fdc(iot, ioh, 0xdf); 165 out_fdc(iot, ioh, 2);
|
fdcvar.h | 144 int out_fdc(bus_space_tag_t iot, bus_space_handle_t ioh, u_char x);
|
/src/sys/dev/pcmcia/ |
fdc_pcmcia.c | 117 (void)out_fdc(iot, ioh, 0x00); /* doc says 0 */ 118 (void)out_fdc(iot, ioh, 8); /* FIFO is active low. */ 119 (void)out_fdc(iot, ioh, fdc->sc_status[9]); /* same comp */
|
/src/sys/arch/atari/isa/ |
fdcisa.c | 160 if (out_fdc(iot, ioh, NE7CMD_SPECIFY) < 0) 162 out_fdc(iot, ioh, 0xdf); 163 out_fdc(iot, ioh, 2);
|
/src/sys/arch/sun3/dev/ |
fd.c | 320 static int out_fdc(struct fdc_softc *, u_char); 399 if (out_fdc(fdc, NE7CMD_DUMPREG) || fdcresult(fdc) != 10) 410 out_fdc(fdc, NE7CMD_CFG); 411 out_fdc(fdc, vroom); 412 out_fdc(fdc, fdc->sc_cfg); 413 out_fdc(fdc, 0); /* PRETRK */ 475 if (out_fdc(fdc, NE7CMD_VERSION) == 0 && 520 out_fdc(fdc, NE7CMD_RECAL); 521 out_fdc(fdc, drive); 528 if (out_fdc(fdc, NE7CMD_SENSEI) 866 out_fdc(struct fdc_softc *fdc, u_char x) function in typeref:typename:int [all...] |