Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 330238
b: refs/heads/master
c: 579468a
h: refs/heads/master
v: v3
  • Loading branch information
Michael Ellerman authored and Benjamin Herrenschmidt committed Sep 5, 2012
1 parent bd74c12 commit 8f24abf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7db90c0222efeae676baa2c72758fcc00666e84f
refs/heads/master: 579468a9f4634c18a59ce8435c12b0623c8b924f
7 changes: 3 additions & 4 deletions trunk/arch/powerpc/sysdev/dart_iommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
#include <asm/iommu.h>
#include <asm/pci-bridge.h>
#include <asm/machdep.h>
#include <asm/abs_addr.h>
#include <asm/cacheflush.h>
#include <asm/ppc-pci.h>

Expand Down Expand Up @@ -167,7 +166,7 @@ static int dart_build(struct iommu_table *tbl, long index,
*/
l = npages;
while (l--) {
rpn = virt_to_abs(uaddr) >> DART_PAGE_SHIFT;
rpn = __pa(uaddr) >> DART_PAGE_SHIFT;

*(dp++) = DARTMAP_VALID | (rpn & DARTMAP_RPNMASK);

Expand Down Expand Up @@ -244,7 +243,7 @@ static int __init dart_init(struct device_node *dart_node)
panic("DART: Cannot map registers!");

/* Map in DART table */
dart_vbase = ioremap(virt_to_abs(dart_tablebase), dart_tablesize);
dart_vbase = ioremap(__pa(dart_tablebase), dart_tablesize);

/* Fill initial table */
for (i = 0; i < dart_tablesize/4; i++)
Expand Down Expand Up @@ -463,7 +462,7 @@ void __init alloc_dart_table(void)
* will blow up an entire large page anyway in the kernel mapping
*/
dart_tablebase = (unsigned long)
abs_to_virt(memblock_alloc_base(1UL<<24, 1UL<<24, 0x80000000L));
__va(memblock_alloc_base(1UL<<24, 1UL<<24, 0x80000000L));

printk(KERN_INFO "DART table allocated at: %lx\n", dart_tablebase);
}

0 comments on commit 8f24abf

Please sign in to comment.