/src/sys/arch/powerpc/booke/dev/ |
pq3diic.c | 91 struct cpunode_locators * const cnl = &cna->cna_locs; local in function:pq3diic_attach 100 error = bus_space_map(sc->sc_iot, cnl->cnl_addr, I2C_SIZE, 116 sc->sc_ih = intr_establish(cnl->cnl_intrs[0], IPL_VM, IST_ONCHIP, 120 cnl->cnl_intrs[0]); 123 cnl->cnl_intrs[0]);
|
cpunode.c | 90 const struct cpunode_locators *cnl = cpu_md_ops.md_cpunode_locs; local in function:cpunode_attach 109 for (u_int childmask = 1; cnl->cnl_name != NULL; cnl++) { 111 bool found = (cnl->cnl_ids[0] == 0); 115 cnl->cnl_name, cnl->cnl_instance, cnl->cnl_size, 116 cnl->cnl_addr); 117 if (cnl->cnl_nintr > 0) { 118 aprint_normal(", intrs=%u", cnl->cnl_intrs[0]) [all...] |
pq3ddrc.c | 102 struct cpunode_locators * const cnl = &cna->cna_locs; local in function:pq3ddrc_attach 109 int error = bus_space_map(cna->cna_memt, cnl->cnl_addr, cnl->cnl_size, 145 sc->sc_ih = intr_establish(cnl->cnl_intrs[0], IPL_VM, 149 cnl->cnl_intrs[0]); 152 cnl->cnl_intrs[0]);
|
pq3sdhc.c | 84 struct cpunode_locators * const cnl = &cna->cna_locs; local in function:pq3sdhc_attach 97 error = bus_space_map(sc->sc_bst, cnl->cnl_addr, cnl->cnl_size, 0, 101 "can't map registers for %s: %d\n", cnl->cnl_name, error); 118 sc->sc_ih = intr_establish(cnl->cnl_intrs[0], IPL_VM, IST_ONCHIP, 122 cnl->cnl_intrs[0]); 126 cnl->cnl_intrs[0]); 129 cnl->cnl_size); 142 bus_space_unmap(sc->sc_bst, sc->sc_bsh, cnl->cnl_size);
|
e500wdog.c | 78 struct cpunode_locators * const cnl = &cna->cna_locs; local in function:e500wdog_match 81 || cnl->cnl_instance != 0 83 || strcmp(cnl->cnl_name, "wdog") != 0)
|
pq3ehci.c | 105 struct cpunode_locators * const cnl = &cna->cna_locs; local in function:pq3ehci_attach 121 error = bus_space_map(sc->sc.iot, cnl->cnl_addr, cnl->cnl_size, 0, 126 cnl->cnl_name, cnl->cnl_instance, error); 129 sc->sc.sc_size = cnl->cnl_size; 137 cpu_write_4(cnl->cnl_addr + USB_SNOOP1, 139 cpu_write_4(cnl->cnl_addr + USB_CONTROL, USB_EN); 141 sc->sc_ih = intr_establish(cnl->cnl_intrs[0], IPL_USB, IST_ONCHIP, 145 cnl->cnl_intrs[0]) [all...] |
pq3duart.c | 158 struct cpunode_locators * const cnl = &cna->cna_locs; local in function:pq3duart_attach 160 u_int nports = cnl->cnl_size / DUART_SIZE; 170 da.da_addr = cnl->cnl_addr + (port - 1) * DUART_SIZE; 176 dsc->dsc_ih = intr_establish(cnl->cnl_intrs[0], IPL_SERIAL, 181 cnl->cnl_intrs[0]); 185 cnl->cnl_intrs[0]);
|
pq3obio.c | 178 struct cpunode_locators * const cnl = &cna->cna_locs; local in function:pq3obio_attach 187 error = bus_space_map(sc->sc_bst, cnl->cnl_addr, cnl->cnl_size, 0,
|
pq3etsec.c | 378 struct cpunode_locators * const cnl = &cna->cna_locs; local in function:pq3mdio_attach 387 if (bus_space_map(mdio->mdio_bst, cnl->cnl_addr, 388 cnl->cnl_size, 0, &mdio->mdio_bsh) != 0) { 390 cnl->cnl_addr); 397 KASSERTMSG(cnl->cnl_addr == ETSEC1_BASE 398 || cnl->cnl_addr == ETSEC2_BASE 399 || cnl->cnl_addr == ETSEC3_BASE 400 || cnl->cnl_addr == ETSEC4_BASE, 401 "unknown tsec addr %x", cnl->cnl_addr); 567 struct cpunode_locators * const cnl = &cna->cna_locs local in function:pq3etsec_attach [all...] |
/src/sys/arch/powerpc/booke/ |
e500_autoconf.c | 119 struct cpunode_locators * const cnl = &cna->cna_locs; local in function:e500_cpunode_submatch 122 || strcmp(cnl->cnl_name, name) != 0 123 || e500_device_disabled_p(cnl->cnl_flags) 126 && cf->cf_loc[CPUNODECF_INSTANCE] != cnl->cnl_instance))
|
/src/sys/arch/powerpc/booke/pci/ |
pq3pci.c | 700 const struct cpunode_locators *cnl) 704 cnl->cnl_name, cnl->cnl_instance); 717 sc->sc_ih = intr_establish_xname(cnl->cnl_intrs[0], IPL_VM, IST_ONCHIP, 721 device_xname(sc->sc_dev), cnl->cnl_intrs[0]); 745 struct cpunode_locators * const cnl = &cna->cna_locs; local in function:pq3pci_cpunode_attach 751 sc->sc_pcie = strcmp(cnl->cnl_name, "pcie") == 0; 757 u_int lanes = e500_truth_decode(cnl->cnl_instance, pordevsr, 765 bool pcix_p = e500_truth_decode(cnl->cnl_instance, pordevsr, 767 u_int width = e500_truth_decode(cnl->cnl_instance, pordevsr [all...] |