OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ncr_sc
(Results
1 - 15
of
15
) sorted by relevancy
/src/sys/dev/podulebus/
oak.c
140
struct ncr5380_softc *
ncr_sc
= &sc->sc_ncr5380;
local in function:oak_attach
147
ncr_sc
->sc_dev = self;
148
ncr_sc
->sc_flags |= NCR5380_FORCE_POLLING;
149
ncr_sc
->sc_min_dma_len = 0;
150
ncr_sc
->sc_no_disconnect = 0xff;
151
ncr_sc
->sc_parity_disable = 0;
153
ncr_sc
->sc_dma_alloc = NULL;
154
ncr_sc
->sc_dma_free = NULL;
155
ncr_sc
->sc_dma_poll = NULL;
156
ncr_sc
->sc_dma_setup = NULL
[
all
...]
hcsc.c
145
struct ncr5380_softc *
ncr_sc
= &sc->sc_ncr5380;
local in function:hcsc_attach
152
ncr_sc
->sc_dev = self;
153
ncr_sc
->sc_min_dma_len = 0;
154
ncr_sc
->sc_no_disconnect = 0;
155
ncr_sc
->sc_parity_disable = 0;
157
ncr_sc
->sc_dma_alloc = NULL;
158
ncr_sc
->sc_dma_free = NULL;
159
ncr_sc
->sc_dma_poll = NULL;
160
ncr_sc
->sc_dma_setup = NULL;
161
ncr_sc
->sc_dma_start = NULL
[
all
...]
/src/sys/arch/sun3/dev/
sivar.h
67
struct ncr5380_softc
ncr_sc
;
member in struct:si_softc
si.c
124
struct ncr5380_softc *
ncr_sc
= &sc->
ncr_sc
;
local in function:si_attach
133
ncr_sc
->sc_no_disconnect =
135
ncr_sc
->sc_parity_disable =
138
ncr_sc
->sc_flags |= NCR5380_FORCE_POLLING;
144
ncr_sc
->sc_dma_alloc = NULL;
147
ncr_sc
->sc_min_dma_len = MIN_DMA_LEN;
152
ncr_sc
->sci_r0 = ®s->sci.sci_r0;
153
ncr_sc
->sci_r1 = ®s->sci.sci_r1;
154
ncr_sc
->sci_r2 = ®s->sci.sci_r2
[
all
...]
si_obio.c
158
struct ncr5380_softc *
ncr_sc
= &sc->
ncr_sc
;
local in function:si_obio_attach
162
ncr_sc
->sc_dev = self;
192
ncr_sc
->sc_pio_out = ncr5380_pio_out;
193
ncr_sc
->sc_pio_in = ncr5380_pio_in;
194
ncr_sc
->sc_dma_alloc = si_dma_alloc;
195
ncr_sc
->sc_dma_free = si_dma_free;
196
ncr_sc
->sc_dma_setup = si_obio_dma_setup;
197
ncr_sc
->sc_dma_start = si_obio_dma_start;
198
ncr_sc
->sc_dma_poll = si_dma_poll
[
all
...]
si_vme.c
174
struct ncr5380_softc *
ncr_sc
= &sc->
ncr_sc
;
local in function:si_vme_attach
178
ncr_sc
->sc_dev = self;
209
ncr_sc
->sc_pio_out = ncr5380_pio_out;
210
ncr_sc
->sc_pio_in = ncr5380_pio_in;
211
ncr_sc
->sc_dma_alloc = si_dma_alloc;
212
ncr_sc
->sc_dma_free = si_dma_free;
213
ncr_sc
->sc_dma_setup = si_vme_dma_setup;
214
ncr_sc
->sc_dma_start = si_vme_dma_start;
215
ncr_sc
->sc_dma_poll = si_dma_poll
[
all
...]
si_sebuf.c
97
struct ncr5380_softc
ncr_sc
;
member in struct:se_softc
167
struct ncr5380_softc *
ncr_sc
= &sc->
ncr_sc
;
local in function:se_attach
173
ncr_sc
->sc_dev = self;
190
ncr_sc
->sc_pio_out = ncr5380_pio_out;
191
ncr_sc
->sc_pio_in = ncr5380_pio_in;
194
ncr_sc
->sc_dma_alloc = se_dma_alloc;
195
ncr_sc
->sc_dma_free = se_dma_free;
196
ncr_sc
->sc_dma_setup = se_dma_setup;
197
ncr_sc
->sc_dma_start = se_dma_start
[
all
...]
/src/sys/arch/mac68k/dev/
sbcvar.h
58
struct ncr5380_softc
ncr_sc
;
member in struct:sbc_softc
sbc.c
173
struct ncr5380_softc *
ncr_sc
= p;
local in function:sbc_irq_intr
174
struct sbc_softc *sc = (struct sbc_softc *)
ncr_sc
;
178
if (*
ncr_sc
->sci_csr & SCI_CSR_INT) {
181
decode_5380_intr(
ncr_sc
);
184
claimed = ncr5380_intr(
ncr_sc
);
186
if (((*
ncr_sc
->sci_csr & ~SCI_CSR_PHASE_MATCH) == SCI_CSR_INT)
187
&& ((*
ncr_sc
->sci_bus_csr & ~SCI_BUS_RST) == 0)) {
188
SCI_CLR_INTR(
ncr_sc
); /* RST interrupt */
190
(*sc->sc_clrintr)(
ncr_sc
);
195
device_xname(
ncr_sc
->sc_dev))
439
struct ncr5380_softc *
ncr_sc
= (struct ncr5380_softc *)p;
local in function:sbc_drq_intr
[
all
...]
/src/sys/arch/mac68k/obio/
sbc_obio.c
117
struct ncr5380_softc *
ncr_sc
= &sc->
ncr_sc
;
local in function:sbc_obio_attach
122
ncr_sc
->sc_dev = self;
184
ncr_sc
->sci_r0 = &sc->sc_regs->sci_pr0.sci_reg;
185
ncr_sc
->sci_r1 = &sc->sc_regs->sci_pr1.sci_reg;
186
ncr_sc
->sci_r2 = &sc->sc_regs->sci_pr2.sci_reg;
187
ncr_sc
->sci_r3 = &sc->sc_regs->sci_pr3.sci_reg;
188
ncr_sc
->sci_r4 = &sc->sc_regs->sci_pr4.sci_reg;
189
ncr_sc
->sci_r5 = &sc->sc_regs->sci_pr5.sci_reg;
190
ncr_sc
->sci_r6 = &sc->sc_regs->sci_pr6.sci_reg
[
all
...]
/src/sys/arch/acorn32/podulebus/
csa.c
135
struct ncr5380_softc *
ncr_sc
= &sc->sc_ncr5380;
local in function:csa_attach
140
ncr_sc
->sc_dev = self;
151
ncr_sc
->sc_flags |= NCR5380_FORCE_POLLING;
152
ncr_sc
->sc_min_dma_len = 0;
153
ncr_sc
->sc_no_disconnect = 0x00;
154
ncr_sc
->sc_parity_disable = 0x00;
156
ncr_sc
->sc_dma_alloc = NULL;
157
ncr_sc
->sc_dma_free = NULL;
158
ncr_sc
->sc_dma_poll = NULL;
159
ncr_sc
->sc_dma_setup = NULL
[
all
...]
/src/sys/arch/news68k/dev/
si.c
67
struct ncr5380_softc
ncr_sc
;
member in struct:si_softc
128
struct ncr5380_softc *
ncr_sc
= &sc->
ncr_sc
;
local in function:si_attach
132
ncr_sc
->sc_dev = self;
133
ncr_sc
->sc_regt = ha->ha_bust;
134
if (bus_space_map(
ncr_sc
->sc_regt, (bus_addr_t)ha->ha_address,
135
ha->ha_size, 0, &
ncr_sc
->sc_regh) != 0) {
150
ncr_sc
->sc_no_disconnect = (sc->sc_options & SI_NO_DISCONNECT);
151
ncr_sc
->sc_parity_disable = (sc->sc_options & SI_NO_PARITY_CHK) >> 8;
153
ncr_sc
->sc_flags |= NCR5380_FORCE_POLLING
[
all
...]
/src/sys/arch/vax/vsa/
ncr.c
85
struct ncr5380_softc
ncr_sc
;
member in struct:si_softc
138
struct ncr5380_softc * const
ncr_sc
= &sc->
ncr_sc
;
local in function:si_vsbus_attach
141
ncr_sc
->sc_dev = self;
164
ncr_sc
->sc_dma_alloc = si_dma_alloc;
165
ncr_sc
->sc_dma_free = si_dma_free;
166
ncr_sc
->sc_dma_setup = si_dma_setup;
167
ncr_sc
->sc_dma_start = si_dma_start;
168
ncr_sc
->sc_dma_poll = si_dma_poll;
169
ncr_sc
->sc_dma_eop = si_dma_eop
339
struct ncr5380_softc *
ncr_sc
= arg;
local in function:si_dma_go
[
all
...]
/src/sys/arch/sparc/dev/
sw.c
162
struct ncr5380_softc
ncr_sc
;
member in struct:sw_softc
247
struct ncr5380_softc *
ncr_sc
= &sc->
ncr_sc
;
local in function:sw_attach
254
ncr_sc
->sc_dev = self;
266
ncr_sc
->sc_regt = oba->oba_bustag;
267
ncr_sc
->sc_regh = bh;
271
ncr_sc
->sc_dma_setup = sw_dma_setup;
272
ncr_sc
->sc_dma_start = sw_dma_start;
273
ncr_sc
->sc_dma_eop = sw_dma_stop;
274
ncr_sc
->sc_dma_stop = sw_dma_stop
396
struct ncr5380_softc *
ncr_sc
= &sc->
ncr_sc
;
local in function:sw_intr
[
all
...]
/src/sys/dev/vme/
si.c
139
struct ncr5380_softc
ncr_sc
;
member in struct:si_softc
227
struct ncr5380_softc *
ncr_sc
= &sc->
ncr_sc
;
local in function:si_attach
238
ncr_sc
->sc_dev = self;
248
ncr_sc
->sc_regt = bt;
249
ncr_sc
->sc_regh = bh;
253
ncr_sc
->sc_dma_setup = si_dma_setup;
254
ncr_sc
->sc_dma_start = si_dma_start;
255
ncr_sc
->sc_dma_eop = si_dma_stop;
256
ncr_sc
->sc_dma_stop = si_dma_stop
362
struct ncr5380_softc *
ncr_sc
= &sc->
ncr_sc
;
local in function:si_intr
[
all
...]
Completed in 18 milliseconds
Indexes created Mon Sep 29 21:09:56 GMT 2025