Lines Matching defs:assigned
972 * Now that memory locations are assigned,
973 * update the assigned address property.
2252 pci_regspec_t *assigned;
2259 DDI_PROP_DONTPASS, "assigned-addresses",
2260 (caddr_t)&assigned,
2263 "Failed to read assigned-addresses property\n");
2268 * For each "assigned-addresses" property entry with a length,
2278 if ((assigned[i].pci_size_low != 0)||
2279 (assigned[i].pci_size_hi != 0)) {
2280 switch (PCI_REG_ADDR_G(assigned[i].pci_phys_hi)) {
2285 assigned[i].pci_size_low,
2286 assigned[i].pci_phys_low,
2287 PCI_REG_REG_G(assigned[i].pci_phys_hi));
2295 assigned[i].pci_size_low,
2296 assigned[i].pci_phys_mid,
2297 assigned[i].pci_phys_low,
2298 PCI_REG_REG_G(assigned[i].pci_phys_hi));
2306 assigned[i].pci_size_low,
2307 assigned[i].pci_phys_low,
2308 PCI_REG_REG_G(assigned[i].pci_phys_hi));
2313 kmem_free(assigned, length);
2318 kmem_free(assigned, length);
2566 * later (after memory is assigned).
3291 pci_regspec_t *assigned;
3296 "assigned-addresses", (caddr_t)&assigned, &alen);
3304 * assigned-addresses(s) plus one and then
3309 bcopy(assigned, newreg, alen);
3315 "no memory for assigned-addresses property\n");
3327 * Write out the new "assigned-addresses" spec
3330 "assigned-addresses", (int *)newreg,
3337 kmem_free(assigned, alen);