Home
last modified time | relevance | path

Searched refs:dma_softc (Results 1 – 7 of 7) sorted by relevance

/mirbsd/src/sys/arch/sparc/dev/
Ddma.c60 void dma_reset(struct dma_softc *, int);
61 void espdma_reset(struct dma_softc *);
63 void ledma_reset(struct dma_softc *);
64 void dma_enintr(struct dma_softc *);
65 int dma_isintr(struct dma_softc *);
66 int espdmaintr(struct dma_softc *);
67 int ledmaintr(struct dma_softc *);
68 int dma_setup(struct dma_softc *, caddr_t *, size_t *,
70 void dma_go(struct dma_softc *);
73 sizeof(struct dma_softc), dmamatch, dmaattach
[all …]
Ddmavar.h27 struct dma_softc { struct
42 void (*reset)(struct dma_softc *); /* reset routine */ argument
43 void (*enintr)(struct dma_softc *); /* enable interrupts */ argument
44 int (*isintr)(struct dma_softc *); /* interrupt ? */ argument
45 int (*intr)(struct dma_softc *); /* interrupt ! */ argument
46 int (*setup)(struct dma_softc *, caddr_t *, size_t *, int, size_t *); argument
47 void (*go)(struct dma_softc *); argument
Dif_levar.h52 struct dma_softc *sc_dma; /* pointer to my dma */
Despvar.h42 struct dma_softc *sc_dma; /* pointer to my dma */
Desp.c256 esc->sc_dma = (struct dma_softc *)parent;
268 esc->sc_dma = (struct dma_softc *)
Dif_le.c99 int ledmaintr(struct dma_softc *);
497 lesc->sc_dma = (struct dma_softc *)parent;
/mirbsd/src/sys/dev/sbus/
Ddma_sbus.c87 struct dma_softc { struct
107 static bus_space_tag_t dma_alloc_bustag(struct dma_softc *sc); argument
110 sizeof(struct dma_softc), dmamatch_sbus, dmaattach_sbus
114 sizeof(struct dma_softc), dmamatch_sbus, dmaattach_sbus
130 struct dma_softc *sc = t->cookie; in dmaprint_sbus()
154 struct dma_softc *dsc = (void *)self;
279 dma_alloc_bustag(struct dma_softc *sc) in dma_alloc_bustag()