Lines Matching refs:cac_softc
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 *);
85 int cac_ioctl_vol(struct cac_softc *, struct bioc_vol *);
86 int cac_create_sensors(struct cac_softc *);
102 cac_init(struct cac_softc *sc, const char *intrstr, int startfw) in cac_init()
222 struct cac_softc *sc; in cac_rescan()
249 struct cac_softc *sc; in cac_shutdown()
286 struct cac_softc *sc; in cac_intr()
312 cac_cmd(struct cac_softc *sc, int command, void *data, int datasize, in cac_cmd()
398 cac_ccb_poll(struct cac_softc *sc, struct cac_ccb *wantccb, int timo) in cac_ccb_poll()
429 cac_ccb_start(struct cac_softc *sc, struct cac_ccb *ccb) in cac_ccb_start()
454 cac_ccb_done(struct cac_softc *sc, struct cac_ccb *ccb) in cac_ccb_done()
499 cac_ccb_alloc(struct cac_softc *sc, int nosleep) in cac_ccb_alloc()
525 cac_ccb_free(struct cac_softc *sc, struct cac_ccb *ccb) in cac_ccb_free()
541 cac_l0_fifo_full(struct cac_softc *sc) in cac_l0_fifo_full()
550 cac_l0_submit(struct cac_softc *sc, struct cac_ccb *ccb) in cac_l0_submit()
562 cac_l0_completed(struct cac_softc *sc) in cac_l0_completed()
589 cac_l0_intr_pending(struct cac_softc *sc) in cac_l0_intr_pending()
598 cac_l0_intr_enable(struct cac_softc *sc, int state) in cac_l0_intr_enable()
617 struct cac_softc *sc = device_private(dev); in cac_ioctl()
655 cac_ioctl_vol(struct cac_softc *sc, struct bioc_vol *bv) in cac_ioctl_vol()
690 cac_create_sensors(struct cac_softc *sc) in cac_create_sensors()
730 struct cac_softc *sc = sme->sme_cookie; in cac_sensor_refresh()