Home
last modified time | relevance | path

Searched refs:acb (Results 1 – 5 of 5) sorted by relevance

/dragonfly/sys/dev/raid/arcmsr/
HDarcmsr.c136 static struct CommandControlBlock *arcmsr_get_freesrb(struct AdapterControlBlock *acb);
141 static u_int32_t arcmsr_iop_ioctlcmd(struct AdapterControlBlock *acb, u_int32_t ioctl_cmd, caddr_t …
142 static void arcmsr_iop_parking(struct AdapterControlBlock *acb);
144 static void arcmsr_interrupt(struct AdapterControlBlock *acb);
145 static void arcmsr_polling_srbdone(struct AdapterControlBlock *acb, struct CommandControlBlock *pol…
146 static void arcmsr_free_resource(struct AdapterControlBlock *acb);
147 static void arcmsr_bus_reset(struct AdapterControlBlock *acb);
148 static void arcmsr_stop_adapter_bgrb(struct AdapterControlBlock *acb);
149 static void arcmsr_start_adapter_bgrb(struct AdapterControlBlock *acb);
150 static void arcmsr_iop_init(struct AdapterControlBlock *acb);
[all …]
HDarcmsr.h188 #define CHIP_REG_READ32(s, b, r) bus_space_read_4(acb->btag[b], acb->bhandle[b], offsetof(st…
189 #define CHIP_REG_WRITE32(s, b, r, d) bus_space_write_4(acb->btag[b], acb->bhandle[b], offsetof(s…
190 #define READ_CHIP_REG32(b, r) bus_space_read_4(acb->btag[b], acb->bhandle[b], r)
191 #define WRITE_CHIP_REG32(b, r, d) bus_space_write_4(acb->btag[b], acb->bhandle[b], r, d)
1190 struct AdapterControlBlock *acb; /* 520-523 524-527 */ member
/dragonfly/sys/dev/disk/advansys/
HDadwcam.c77 static __inline struct acb* adwgetacb(struct adw_softc *adw);
79 struct acb *acb);
93 static void adwprocesserror(struct adw_softc *adw, struct acb *acb);
106 static __inline struct acb*
109 struct acb* acb; in adwgetacb() local
112 if ((acb = SLIST_FIRST(&adw->free_acb_list)) != NULL) { in adwgetacb()
116 acb = SLIST_FIRST(&adw->free_acb_list); in adwgetacb()
117 if (acb == NULL) in adwgetacb()
125 return (acb); in adwgetacb()
129 adwfreeacb(struct adw_softc *adw, struct acb *acb) in adwfreeacb() argument
[all …]
HDadwlib.h418 struct acb { struct
426 SLIST_ENTRY(acb) links; argument
608 struct acb *acbs;
614 SLIST_HEAD(, acb) free_acb_list;
690 struct acb *acb);
692 struct acb *acb);
693 static __inline struct acb * acbbotov(struct adw_softc *adw,
695 static __inline struct acb * acbbtov(struct adw_softc *adw,
762 acbvtobo(struct adw_softc *adw, struct acb *acb) in acbvtobo() argument
764 return ((u_int32_t)((caddr_t)acb - (caddr_t)adw->acbs)); in acbvtobo()
[all …]
/dragonfly/sys/dev/video/bktr/
HDmsp34xx.c122 int acb; member
316 msp->acb &= ~scarts[out][SCART_MASK]; in msp3400c_set_scart()
317 msp->acb |= scarts[out][in]; in msp3400c_set_scart()
318 msp3400c_write(client,I2C_MSP3400C_DFP, 0x0013, msp->acb); in msp3400c_set_scart()