/src/sys/dev/microcode/aic7xxx/ |
aic7xxx.seq | 682 test SSTAT1,REQINIT|BUSFREE jz .; 683 test SSTAT1, BUSFREE jnz poll_for_work; 900 test SSTAT1,PHASEMIS jz .; 933 test SSTAT1,PHASEMIS jz ultra2_dma_loop; 1115 test SSTAT1,PHASEMIS jz dma_loop; /* ie. underrun */ 1269 test SSTAT1, REQINIT jz .; 1271 test SSTAT1,PHASEMIS jz data_phase_loop; 1352 test SSTAT1, REQINIT jnz .; 1446 test SSTAT1, PHASEMIS jz . - 1; 1987 test SSTAT1, REQINIT jz inb_next_wait [all...] |
aic79xx.seq | 1125 test SSTAT1,REQINIT|BUSFREE jz .; 1126 test SSTAT1, BUSFREE jnz idle_loop; 1208 test SSTAT1, SCSIPERR jnz phase_lock; 1235 test SSTAT1, SCSIPERR jnz inb_next_wait; 1494 test SSTAT1, REQINIT jz .; 1511 test SSTAT1, REQINIT jnz .; 1646 test SSTAT1, REQINIT jz snapshot_wait_data_valid;
|
aic7xxx.reg | 295 * Writing a 1 to a bit clears the associated SCSI Interrupt in SSTAT1. 312 register SSTAT1 {
|
aic7xxx_reg.h | 124 ahc_print_register(NULL, 0, "SSTAT1", 0x0c, regvalue, cur_col, wrap) 1172 #define SSTAT1 0x0c
|
aic79xx.reg | 1874 register SSTAT1 { 1890 * Writing a 1 to a bit clears the associated SCSI Interrupt in SSTAT1.
|
aic79xx_reg.h | 558 ahd_print_register(NULL, 0, "SSTAT1", 0x4c, regvalue, cur_col, wrap) 2740 #define SSTAT1 0x4c
|
/src/sys/dev/ic/ |
aic6360reg.h | 73 #define SSTAT1 0x0c /* SCSI status 1 */ 232 /* SSTAT1 How to clear? When set?*/
|
aic6360.c | 963 u_char sstat1; local in function:aic_msgin 989 sstat1 = bus_space_read_1(iot, ioh, SSTAT1); 990 if ((sstat1 & (REQINIT | PHASECHG | BUSFREE)) != 0) 994 if ((sstat1 & (PHASECHG | BUSFREE)) != 0) { 1004 if ((sstat1 & SCSIPERR) != 0) { 1247 u_char sstat1; local in function:aic_msgout 1369 sstat1 = bus_space_read_1(iot, ioh, SSTAT1); 1370 if ((sstat1 & (REQINIT | PHASECHG | BUSFREE)) != 0 1702 u_char sstat0, sstat1; local in function:aicintr [all...] |
aic7xxx.c | 757 && (ahc_inb(ahc, SSTAT1) & SCSIPERR) != 0) { 990 status = ahc_inb(ahc, SSTAT1) & (SELTO|SCSIRSTI|BUSFREE|SCSIPERR); 995 status = ahc_inb(ahc, SSTAT1) 1077 if ((ahc_inb(ahc, SSTAT1) & SCSIPERR) != 0 6648 ahc_sstat1_print(ahc_inb(ahc, SSTAT1), &cur_col, 50);
|
aic79xx.c | 1464 && (ahd_inb(ahd, SSTAT1) & SELTO) == 0) 1517 status = ahd_inb(ahd, SSTAT1) & (SELTO|SCSIRSTI|BUSFREE|SCSIPERR); 7756 if ((ahd_inb(ahd, SSTAT1) & SCSIRSTI) != 0) { 8704 ahd_sstat1_print(ahd_inb(ahd, SSTAT1), &cur_col, 50);
|