Home
last modified time | relevance | path

Searched refs:SCB_RESID_DCNT (Results 1 – 4 of 4) sorted by relevance

/linux-3.4.99/drivers/scsi/aic7xxx_old/
Daic7xxx.seq141 bmov SCB_RESID_DCNT, SCB_DATACNT, 3;
143 mov SCB_RESID_DCNT[0],SCB_DATACNT[0];
144 mov SCB_RESID_DCNT[1],SCB_DATACNT[1];
145 mov SCB_RESID_DCNT[2],SCB_DATACNT[2];
345 bmov HCNT, SCB_RESID_DCNT, 3;
348 bmov STCNT, SCB_RESID_DCNT, 3;
352 mvi SCB_RESID_DCNT call bcopy_3;
559 bmov SCB_RESID_DCNT, STCNT, 3;
565 mov SCB_RESID_DCNT[0],STCNT[0];
566 mov SCB_RESID_DCNT[1],STCNT[1];
[all …]
Daic7xxx_reg.h503 #define SCB_RESID_DCNT 0xa9 macro
Daic7xxx.reg921 SCB_RESID_DCNT {
/linux-3.4.99/drivers/scsi/
Daic7xxx_old.c4695 resid_dcnt = aic_inb(p, SCB_RESID_DCNT) | in aic7xxx_handle_seqint()
4696 (aic_inb(p, SCB_RESID_DCNT + 1) << 8) | in aic7xxx_handle_seqint()
4697 (aic_inb(p, SCB_RESID_DCNT + 2) << 16); in aic7xxx_handle_seqint()
4742 aic_outb(p, resid_dcnt & 0xff, SCB_RESID_DCNT); in aic7xxx_handle_seqint()
4743 aic_outb(p, (resid_dcnt >> 8) & 0xff, SCB_RESID_DCNT + 1); in aic7xxx_handle_seqint()
4744 aic_outb(p, (resid_dcnt >> 16) & 0xff, SCB_RESID_DCNT + 2); in aic7xxx_handle_seqint()