Lines Matching defs:neo_softc
119 struct neo_softc { struct
120 struct device dev;
122 bus_space_tag_t bufiot;
123 bus_space_handle_t bufioh;
125 bus_space_tag_t regiot;
126 bus_space_handle_t regioh;
128 u_int32_t type;
129 void *ih;
131 void (*pintr)(void *); /* dma completion intr handler */
132 void *parg; /* arg for intr() */
134 void (*rintr)(void *); /* dma completion intr handler */
135 void *rarg; /* arg for intr() */
137 u_int32_t ac97_base, ac97_status, ac97_busy;
138 u_int32_t buftop, pbuf, rbuf, cbuf, acbuf;
139 u_int32_t playint, recint, misc1int, misc2int;
163 static int nm_waitcd(struct neo_softc *sc); argument