Searched refs:cac_softc (Results 1 – 5 of 5) sorted by relevance
/netbsd-src/sys/dev/ic/ |
H A D | cac.c | 67 static struct cac_ccb *cac_ccb_alloc(struct cac_softc *, int); 68 static void cac_ccb_done(struct cac_softc *, struct cac_ccb *); 69 static void cac_ccb_free(struct cac_softc *, struct cac_ccb *); 70 static int cac_ccb_poll(struct cac_softc *, struct cac_ccb *, int); 71 static int cac_ccb_start(struct cac_softc *, struct cac_ccb *); 75 static struct cac_ccb *cac_l0_completed(struct cac_softc *); 76 static int cac_l0_fifo_full(struct cac_softc *); 77 static void cac_l0_intr_enable(struct cac_softc *, int); 78 static int cac_l0_intr_pending(struct cac_softc *); 79 static void cac_l0_submit(struct cac_softc *, struct cac_ccb *); [all …]
|
H A D | cacvar.h | 70 struct cac_softc; 99 struct cac_ccb *(*cl_completed)(struct cac_softc *); 100 int (*cl_fifo_full)(struct cac_softc *); 101 void (*cl_intr_enable)(struct cac_softc *, int); 102 int (*cl_intr_pending)(struct cac_softc *); 103 void (*cl_submit)(struct cac_softc *, struct cac_ccb *); 106 struct cac_softc { struct 139 int cac_cmd(struct cac_softc *, int, void *, int, int, int, int, argument 141 int cac_init(struct cac_softc *, const char *, int);
|
H A D | ld_cac.c | 90 struct cac_softc *cac = device_private(parent); in ld_cac_attach() 142 struct cac_softc *cac; in ld_cac_start()
|
/netbsd-src/sys/dev/pci/ |
H A D | cac_pci.c | 57 static struct cac_ccb *cac_pci_l0_completed(struct cac_softc *); 58 static int cac_pci_l0_fifo_full(struct cac_softc *); 59 static void cac_pci_l0_intr_enable(struct cac_softc *, int); 60 static int cac_pci_l0_intr_pending(struct cac_softc *); 61 static void cac_pci_l0_submit(struct cac_softc *, struct cac_ccb *); 147 struct cac_softc *sc; in cac_pci_attach() 227 CFATTACH_DECL3_NEW(cac_pci, sizeof(struct cac_softc), 231 cac_pci_l0_submit(struct cac_softc *sc, struct cac_ccb *ccb) in cac_pci_l0_submit() 241 cac_pci_l0_completed(struct cac_softc *sc) in cac_pci_l0_completed() 268 cac_pci_l0_intr_pending(struct cac_softc *sc) in cac_pci_l0_intr_pending() [all …]
|
/netbsd-src/sys/dev/eisa/ |
H A D | cac_eisa.c | 88 static struct cac_ccb *cac_eisa_l0_completed(struct cac_softc *); 89 static int cac_eisa_l0_fifo_full(struct cac_softc *); 90 static void cac_eisa_l0_intr_enable(struct cac_softc *, int); 91 static int cac_eisa_l0_intr_pending(struct cac_softc *); 92 static void cac_eisa_l0_submit(struct cac_softc *, struct cac_ccb *); 94 CFATTACH_DECL3_NEW(cac_eisa, sizeof(struct cac_softc), 161 struct cac_softc *sc; in cac_eisa_attach() 235 cac_eisa_l0_fifo_full(struct cac_softc *sc) in cac_eisa_l0_fifo_full() 243 cac_eisa_l0_submit(struct cac_softc *sc, struct cac_ccb *ccb) in cac_eisa_l0_submit() 265 cac_eisa_l0_completed(struct cac_softc *sc) in cac_eisa_l0_completed() [all …]
|