/src/sys/arch/arm/nvidia/ |
tegra_soc.c | 57 bus_space_tag_t bst = &arm_generic_bs_tag; local in function:tegra_bootstrap 59 if (bus_space_map(bst, TEGRA_PPSB_BASE, TEGRA_PPSB_SIZE, 0, 62 if (bus_space_map(bst, TEGRA_APB_BASE, TEGRA_APB_SIZE, 0,
|
soc_tegra124.c | 60 bus_space_tag_t bst = &arm_generic_bs_tag; local in function:tegra124_mpstart 63 bus_space_subregion(bst, tegra_ppsb_bsh, 69 bus_space_write_4(bst, bsh, EVP_RESET_VECTOR_0_REG, 71 bus_space_barrier(bst, bsh, EVP_RESET_VECTOR_0_REG, 4,
|
tegra_fuse.c | 117 bus_space_tag_t bst; local in function:tegra_fuse_read 122 bst = fuse_softc->sc_bst; 126 const uint32_t v = bus_space_read_4(bst, bsh, 0x100 + offset);
|
/src/sys/arch/evbppc/obs405/ |
rbus_machdep.c | 82 bus_space_tag_t bst = pa->pa_memt; local in function:rbus_pccbb_parent_mem 84 return rbus_new_root_delegate(bst, bst->pbs_base, 85 bst->pbs_limit - bst->pbs_base, 0); 91 bus_space_tag_t bst = pa->pa_iot; local in function:rbus_pccbb_parent_io 93 return rbus_new_root_delegate(bst, bst->pbs_base, 94 bst->pbs_limit - bst->pbs_base, 0) [all...] |
/src/sys/arch/hpcmips/include/ |
bus_space_hpcmips.h | 41 struct bus_space_tag bst; member in struct:bus_space_tag_hpcmips
|
/src/sys/arch/arc/isa/ |
isapnp_machdep.c | 69 bus_space_tag_t bst; local in function:isapnp_map 71 bst = sc->sc_iot; 72 sc->sc_addr_ioh = bst->bs_vbase + ISAPNP_ADDR - bst->bs_start; 73 sc->sc_wrdata_ioh = bst->bs_vbase + ISAPNP_WRDATA - bst->bs_start;
|
/src/sys/arch/evbarm/ifpga/ |
sm_ifpga.c | 79 bus_space_tag_t bst = ifa->ifa_iot; local in function:sm_ifpga_attach 83 if (bus_space_map(bst, ifa->ifa_addr, SMC_IOSIZE, 0, &bsh) != 0) { 91 bus_space_unmap(bst, bsh, SMC_IOSIZE); 99 sc->sc_bst = bst;
|
/src/sys/arch/evbarm/viper/ |
if_sm_pxaip.c | 83 bus_space_tag_t bst = &pxa2x0_bs_tag; local in function:sm_pxaip_attach 87 if (bus_space_map(bst, paa->pxa_addr, SMC_IOSIZE, 0, &bsh) != 0) { 97 bus_space_unmap(bst, bsh, SMC_IOSIZE); 105 sc->sc_bst = bst;
|
/src/sys/arch/evbsh3/ap_ms104_sh4/ |
if_sm_mainbus.c | 79 bus_space_tag_t bst = &ap_ms104_sh4_bus_io; local in function:sm_mainbus_attach 86 if (bus_space_map(bst, 0x08000000, SMC_IOSIZE, 0, &bsh) != 0) { 96 bus_space_unmap(bst, bsh, SMC_IOSIZE); 102 sc->sc_bst = bst;
|
/src/sys/arch/mac68k/nubus/ |
if_sm_nubus.c | 103 bus_space_tag_t bst = na->na_tag; local in function:sm_nubus_attach 109 bst = na->na_tag; 110 if (bus_space_map(bst, NUBUS_SLOT2PA(na->slot), NBMEMSIZE, 0, &bsh)) { 115 mac68k_bus_space_handle_swapped(bst, &bsh); 118 smc->sc_bst = bst; 121 cardtype = nubus_get_card_name(bst, bsh, na->fmt); 127 if (bus_space_subregion(bst, bsh, 0xFF8000, 0x20, &prom_bsh)) { 135 if (bus_space_subregion(bst, bsh, 0xFE0000, 0x20, &prom_bsh)) { 145 bus_space_unmap(bst, bsh, NBMEMSIZE); 149 myaddr[i] = bus_space_read_1(bst, prom_bsh, i*4) [all...] |
if_sn_nubus.c | 106 bus_space_tag_t bst; local in function:sn_nubus_attach 111 bst = na->na_tag; 112 if (bus_space_map(bst, NUBUS_SLOT2PA(na->slot), NBMEMSIZE, 0, &bsh)) { 118 sc->sc_st = bst; 121 cardtype = nubus_get_card_name(bst, bsh, na->fmt); 126 switch (sn_nb_card_vendor(bst, bsh, na)) { 132 if (bus_space_subregion(bst, bsh, 138 if (bus_space_subregion(bst, bsh, 144 sn_get_enaddr(bst, tmp_bsh, 0, myaddr); 155 if (bus_space_subregion(bst, bsh [all...] |
if_ae_nubus.c | 129 bus_space_tag_t bst; local in function:ae_nubus_attach 135 bst = na->na_tag; 136 if (bus_space_map(bst, NUBUS_SLOT2PA(na->slot), NBMEMSIZE, 142 sc->sc_regt = sc->sc_buft = bst; 145 cardtype = nubus_get_card_name(bst, bsh, na->fmt); 154 switch (ae_nb_card_vendor(bst, bsh, na)) { 162 if (bus_space_subregion(bst, bsh, 167 if ((sc->mem_size = ae_size_card_memory(bst, bsh, 172 if (bus_space_subregion(bst, bsh, 181 bus_space_read_1(bst, bsh, (AE_ROM_OFFSET + i * 2)) [all...] |
/src/sys/dev/marvell/ |
obio.c | 105 prop_data_t bst; local in function:obio_attach 124 bst = prop_dictionary_get(device_properties(sc->sc_dev), "bus-tag"); 125 if (bst != NULL) { 126 KASSERT(prop_object_type(bst) == PROP_TYPE_DATA); 127 KASSERT(prop_data_size(bst) == sizeof(bus_space_tag_t)); 128 memcpy(&sc->sc_iot, prop_data_data_nocopy(bst),
|
/src/sys/arch/evbppc/wii/dev/ |
sdhc_hollywood.c | 70 bus_space_tag_t bst; local in function:sdhc_hollywood_attach 81 bst = haa->haa_bst; 82 if (bus_space_map(bst, haa->haa_addr, SDHC_SIZE, 0, &bsh)) { 96 error = sdhc_host_found(&sc->sc_base, bst, bsh, SDHC_SIZE);
|
/src/sys/arch/arm/xilinx/ |
zynq7000_uart.c | 102 bus_space_tag_t bst = faa->faa_bst; local in function:zynq_uart_console_consinit 113 if (zynquart_cons_attach(bst, addr, speed, flags))
|
/src/sys/arch/arm/nxp/ |
imx_i2c.c | 57 bus_space_tag_t bst = faa->faa_bst; local in function:imxi2c_attach 84 imxi2c_attach_common(self, bst, addr, size,
|
imx6_usbphy.c | 84 bus_space_tag_t bst = faa->faa_bst; local in function:imx6_usbphy_attach 95 error = bus_space_map(bst, addr, size, 0, &bsh); 108 sc->sc_iot = bst;
|
/src/sys/arch/arm/acpi/ |
gic_v2m_acpi.c | 101 bus_space_tag_t bst = &arm_generic_bs_tag; local in function:gic_v2m_acpi_find_msi_frame 103 if (bus_space_map(bst, frame->frame_reg, GICMSIFRAME_SIZE, 0, &bsh) != 0) { 107 const uint32_t typer = bus_space_read_4(bst, bsh, GIC_MSI_TYPER); 108 bus_space_unmap(bst, bsh, GICMSIFRAME_SIZE);
|
/src/sys/arch/evbppc/ev64260/ |
autoconf.c | 212 struct powerpc_bus_space *bst = local in function:device_register 217 prop_data_create_data_nocopy(bst, sizeof(bus_space_tag_t));
|
/src/sys/arch/hp300/dev/ |
sgc.c | 100 bus_space_tag_t bst; local in function:sgcattach 107 bst = &sc->sc_tag; 108 memset(bst, 0, sizeof(struct bus_space_tag)); 109 bst->bustype = HP300_BUS_SPACE_SGC; 113 if (bus_space_map(bst, pa, PAGE_SIZE, 0, &bsh) != 0) { 117 va = bus_space_vaddr(bst, bsh); 121 bus_space_unmap(bst, bsh, PAGE_SIZE); 130 saa.saa_iot = bst;
|
sti_dio.c | 80 bus_space_tag_t bst; local in function:sti_dio_attach 86 bst = da->da_bst; 98 if (bus_space_map(bst, base, PAGE_SIZE, 0, &romh)) { 106 romend = sti_rom_size(bst, romh); 108 bus_space_unmap(bst, romh, PAGE_SIZE); 110 if (bus_space_map(bst, base, romend, 0, &romh)) { 119 if (sti_attach_common(ssc, bst, bst, romh, 128 sti_dio_probe(bus_space_tag_t bst, int scode) 146 if (bus_space_map(bst, addr, PAGE_SIZE, 0, &bsh) [all...] |
/src/sys/arch/mips/atheros/dev/ |
com_arbus.c | 243 bus_space_tag_t bst; local in function:com_arbus_cnattach 247 bst = arbus_get_bus_space_tag(); 249 if (bus_space_map(bst, addr, 0x1000, 0, &bsh)) 252 com_arbus_init_regs(®s, bst, bsh, addr, 0x1000);
|
/src/sys/dev/pci/ |
agp_i810var.h | 43 bus_space_tag_t bst; member in struct:agp_i810_softc
|
/src/sys/dev/podulebus/ |
dtide.c | 86 bus_space_tag_t bst; local in function:dtide_attach 99 podulebus_shift_tag(pa->pa_fast_t, DTIDE_REGSHIFT, &bst); 106 wdr->cmd_iot = bst; 107 wdr->ctl_iot = bst;
|
/src/sys/external/bsd/drm2/drm/ |
drm_memory.c | 104 const bus_space_tag_t bst = dev->bst; local in function:drm_legacy_ioremap 136 if (bus_space_map(bst, map->offset, map->size, flags, 154 win: map->lm_data.bus_space.bst = bst; 155 map->handle = bus_space_vaddr(bst, map->lm_data.bus_space.bsh); 162 bus_space_unmap(map->lm_data.bus_space.bst,
|