Lines Matching +full:- +full:- +full:no +full:- +full:install +full:- +full:suggests

27  * IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
93 /* Set to non-zero to enable verbose reporting of footbridge system ints */
120 aprint_normal("%s at %s", fba->fba_name, pnp); in footbridge_print()
156 sc->sc_dev = self; in footbridge_attach()
157 sc->sc_iot = &footbridge_bs_tag; in footbridge_attach()
160 if (bus_space_map(sc->sc_iot, DC21285_ARMCSR_VBASE, in footbridge_attach()
161 DC21285_ARMCSR_VSIZE, 0, &sc->sc_ioh)) in footbridge_attach()
165 vendor = bus_space_read_2(sc->sc_iot, sc->sc_ioh, VENDOR_ID); in footbridge_attach()
166 device = bus_space_read_2(sc->sc_iot, sc->sc_ioh, DEVICE_ID); in footbridge_attach()
167 rev = bus_space_read_1(sc->sc_iot, sc->sc_ioh, REVISION); in footbridge_attach()
174 bus_space_write_4(sc->sc_iot, sc->sc_ioh, IRQ_ENABLE_CLEAR, 0xffffffff); in footbridge_attach()
175 bus_space_write_4(sc->sc_iot, sc->sc_ioh, FIQ_ENABLE_CLEAR, 0xffffffff); in footbridge_attach()
177 /* Install a generic handler to catch a load of system interrupts */ in footbridge_attach()
178 sc->sc_serr_ih = footbridge_intr_claim(IRQ_SERR, IPL_HIGH, in footbridge_attach()
180 sc->sc_sdram_par_ih = footbridge_intr_claim(IRQ_SDRAM_PARITY, IPL_HIGH, in footbridge_attach()
182 sc->sc_data_par_ih = footbridge_intr_claim(IRQ_DATA_PARITY, IPL_HIGH, in footbridge_attach()
184 sc->sc_master_abt_ih = footbridge_intr_claim(IRQ_MASTER_ABORT, IPL_HIGH, in footbridge_attach()
186 sc->sc_target_abt_ih = footbridge_intr_claim(IRQ_TARGET_ABORT, IPL_HIGH, in footbridge_attach()
188 sc->sc_parity_ih = footbridge_intr_claim(IRQ_PARITY, IPL_HIGH, in footbridge_attach()
204 * range 0xb800-0xc000 cause the system to hang. This suggests that in footbridge_attach()
206 * (note that the range 0xb800-c000 is on an S3 card, others may vary in footbridge_attach()
220 mask--; in footbridge_attach()
227 bus_space_write_4(sc->sc_iot, sc->sc_ioh, SDRAM_BA_MASK, mask); in footbridge_attach()
228 bus_space_write_4(sc->sc_iot, sc->sc_ioh, SDRAM_BA_OFFSET, 0); in footbridge_attach()
229 bus_space_write_4(sc->sc_iot, sc->sc_ioh, SDRAM_MEMORY_ADDR, 0x20000000); in footbridge_attach()
251 fba.fba_fca.fca_iot = sc->sc_iot; in footbridge_attach()
252 fba.fba_fca.fca_ioh = sc->sc_ioh; in footbridge_attach()
278 ctrl = bus_space_read_4(sc->sc_iot, sc->sc_ioh, SA_CONTROL); in footbridge_intr()
286 bus_space_write_4(sc->sc_iot, sc->sc_ioh, SA_CONTROL, in footbridge_intr()
292 ctrl = bus_space_read_4(sc->sc_iot, sc->sc_ioh, PCI_COMMAND_STATUS_REG); in footbridge_intr()
301 bus_space_write_4(sc->sc_iot, sc->sc_ioh, in footbridge_intr()