/src/sys/arch/sparc64/dev/ |
vpci.c | 278 int *vdma = NULL; local in function:vpci_init_iommu 294 if (!prom_getprop(sc->sc_node, "virtual-dma", sizeof(vdma), &nitem, 295 (void **)&vdma)) { 296 DPRINTF(VDB_BUSMAP, ("vpci_init_iommu: vdma[0]=0x%x vdma[1]=0x%x\n", 297 vdma[0], vdma[1])); 298 iobase = vdma[0]; 299 iolen = vdma[1]; 304 free(vdma, M_DEVBUF) [all...] |
schizo.c | 470 int *vdma = NULL, nitem, tsbsize = 7; local in function:schizo_init_iommu 485 if (!prom_getprop(sc->sc_node, "virtual-dma", sizeof(vdma), &nitem, 486 (void **)&vdma)) { 488 iobase = vdma[0]; 490 switch (vdma[1]) { 499 printf("bogus tsb size %x, using 7\n", vdma[1]); 504 free(vdma, M_DEVBUF);
|
psycho.c | 1031 int *vdma = NULL; local in function:psycho_iommu_init 1050 if (!prom_getprop(sc->sc_node, "virtual-dma", sizeof(vdma), &nitem, 1051 &vdma)) { 1053 iobase = vdma[0]; 1055 switch (vdma[1]) { 1064 printf("bogus tsb size %x, using 7\n", vdma[1]);
|