diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-11-22 09:47:38 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-11-22 09:47:38 +0000 |
commit | cb5795d66cc52f42f5b29eff22aa1e28ba8814e0 (patch) | |
tree | 8225572a8021c53ff6497bc9fb29c49d1ab76707 /sys | |
parent | 6ed3ac6216d5802e099750724efff68f5568b4dd (diff) |
simplify the iommu page table mapping. use pmap_kenter.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/sparc/sparc/iommu.c | 25 |
1 files changed, 7 insertions, 18 deletions
diff --git a/sys/arch/sparc/sparc/iommu.c b/sys/arch/sparc/sparc/iommu.c index 72a7c9de09f..39589a0f107 100644 --- a/sys/arch/sparc/sparc/iommu.c +++ b/sys/arch/sparc/sparc/iommu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iommu.c,v 1.11 2001/11/06 19:53:16 miod Exp $ */ +/* $OpenBSD: iommu.c,v 1.12 2001/11/22 09:47:37 art Exp $ */ /* $NetBSD: iommu.c,v 1.13 1997/07/29 09:42:04 fair Exp $ */ /* @@ -130,7 +130,7 @@ iommu_attach(parent, self, aux) register iopte_t *tpte_p; struct pglist mlist; struct vm_page *m; - vaddr_t iopte_va; + vaddr_t va; paddr_t iopte_pa; /*XXX-GCC!*/mmupcrsave=0; @@ -186,20 +186,17 @@ iommu_attach(parent, self, aux) #define DVMA_PTESIZE ((0 - DVMA4M_BASE) / 1024) if (uvm_pglistalloc(DVMA_PTESIZE, 0, 0xffffffff, DVMA_PTESIZE, 0, &mlist, 1, 0) || - (iopte_va = uvm_km_valloc(kernel_map, DVMA_PTESIZE)) == 0) + (va = uvm_km_valloc(kernel_map, DVMA_PTESIZE)) == 0) panic("iommu_attach: can't allocate memory for pagetables"); #undef DVMA_PTESIZE m = TAILQ_FIRST(&mlist); iopte_pa = VM_PAGE_TO_PHYS(m); - sc->sc_ptes = (iopte_t *) iopte_va; + sc->sc_ptes = (iopte_t *) va; while (m) { - /* XXX - art, pagewire breaks the tailq */ - uvm_pagewire(m); - pmap_enter(pmap_kernel(), iopte_va, VM_PAGE_TO_PHYS(m), - VM_PROT_READ|VM_PROT_WRITE, - VM_PROT_READ|VM_PROT_WRITE|PMAP_WIRED); - iopte_va += NBPG; + paddr_t pa = VM_PAGE_TO_PHYS(m); + pmap_kenter_pa(va, pa | PMAP_NC, VM_PROT_READ|VM_PROT_WRITE); + va += PAGE_SIZE; m = TAILQ_NEXT(m, pageq); } @@ -212,14 +209,6 @@ iommu_attach(parent, self, aux) * XXX Note that this is rather messy. */ - - /* - * Now discache the page tables so that the IOMMU sees our - * changes. - */ - kvm_uncache((caddr_t)sc->sc_ptes, - (((0 - DVMA4M_BASE)/sc->sc_pagesize) * sizeof(iopte_t)) / NBPG); - /* * Ok. We've got to read in the original table using MMU bypass, * and copy all of its entries to the appropriate place in our |