Searched refs:INW (Results 1 – 4 of 4) sorted by relevance
/linux-6.1.9/drivers/scsi/sym53c8xx_2/ |
D | sym_hipd.h | 193 #define INW(np, r) INW_OFF(np, offsetof(struct sym_reg, r)) macro 202 #define OUTONW(np, r, m) OUTW(np, r, INW(np, r) | (m)) 203 #define OUTOFFW(np, r, m) OUTW(np, r, INW(np, r) & ~(m))
|
D | sym_hipd.c | 151 INW(np, nc_sist); in sym_soft_reset() 206 ((INW(np, nc_sbdl) & 0xff) << 9) | /* d7-0 */ in sym_reset_scsi_bus() 207 ((INW(np, nc_sbdl) & 0xff00) << 10) | /* d15-8 */ in sym_reset_scsi_bus() 310 INW(np, nc_sist); /* clear pending scsi interrupt */ in getfreq() 312 INW(np, nc_sist); /* another one, just to be sure :) */ in getfreq() 325 while (!(INW(np, nc_sist) & GEN) && ms++ < 100000) in getfreq() 1181 sist = INW(np, nc_sist); 1865 INW(np, nc_sist); 2426 delta = INW(np, nc_dfbc); 2850 sist |= INW(np, nc_sist);
|
/linux-6.1.9/drivers/scsi/ |
D | ncr53c8xx.h | 419 #define INW(r) INW_OFF (offsetof(struct ncr_reg,r)) macro 432 #define OUTONW(r, m) OUTW(r, INW(r) | (m)) 433 #define OUTOFFW(r, m) OUTW(r, INW(r) & ~(m))
|
D | ncr53c8xx.c | 4475 ((INW(nc_sbdl) & 0xff) << 9) | /* d7-0 */ in ncr_reset_scsi_bus() 4476 ((INW(nc_sbdl) & 0xff00) << 10) | /* d15-8 */ in ncr_reset_scsi_bus() 5760 sist = (istat & SIP) ? INW (nc_sist) : 0; in ncr_exception() 7697 (void) INW (nc_sist); /* clear pending scsi interrupt */ 7699 (void) INW (nc_sist); /* another one, just to be sure :) */ 7703 while (!(INW(nc_sist) & GEN) && ms++ < 100000) {
|