diff options
| author | Michael Ellerman <michael@ellerman.id.au> | 2012-07-25 17:19:52 -0400 |
|---|---|---|
| committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2012-09-05 01:18:44 -0400 |
| commit | 579468a9f4634c18a59ce8435c12b0623c8b924f (patch) | |
| tree | 6966abe55cc2724996fa5c17ca6637c100c028a5 /arch/powerpc/sysdev | |
| parent | 7db90c0222efeae676baa2c72758fcc00666e84f (diff) | |
powerpc/dart: Remove uses of virt_to_abs() and abs_to_virt()
These days they are just wrappers around __pa() and __va() respectively.
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/sysdev')
| -rw-r--r-- | arch/powerpc/sysdev/dart_iommu.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/arch/powerpc/sysdev/dart_iommu.c b/arch/powerpc/sysdev/dart_iommu.c index 4f2680f431b..8ef63a01e34 100644 --- a/arch/powerpc/sysdev/dart_iommu.c +++ b/arch/powerpc/sysdev/dart_iommu.c | |||
| @@ -43,7 +43,6 @@ | |||
| 43 | #include <asm/iommu.h> | 43 | #include <asm/iommu.h> |
| 44 | #include <asm/pci-bridge.h> | 44 | #include <asm/pci-bridge.h> |
| 45 | #include <asm/machdep.h> | 45 | #include <asm/machdep.h> |
| 46 | #include <asm/abs_addr.h> | ||
| 47 | #include <asm/cacheflush.h> | 46 | #include <asm/cacheflush.h> |
| 48 | #include <asm/ppc-pci.h> | 47 | #include <asm/ppc-pci.h> |
| 49 | 48 | ||
| @@ -167,7 +166,7 @@ static int dart_build(struct iommu_table *tbl, long index, | |||
| 167 | */ | 166 | */ |
| 168 | l = npages; | 167 | l = npages; |
| 169 | while (l--) { | 168 | while (l--) { |
| 170 | rpn = virt_to_abs(uaddr) >> DART_PAGE_SHIFT; | 169 | rpn = __pa(uaddr) >> DART_PAGE_SHIFT; |
| 171 | 170 | ||
| 172 | *(dp++) = DARTMAP_VALID | (rpn & DARTMAP_RPNMASK); | 171 | *(dp++) = DARTMAP_VALID | (rpn & DARTMAP_RPNMASK); |
| 173 | 172 | ||
| @@ -244,7 +243,7 @@ static int __init dart_init(struct device_node *dart_node) | |||
| 244 | panic("DART: Cannot map registers!"); | 243 | panic("DART: Cannot map registers!"); |
| 245 | 244 | ||
| 246 | /* Map in DART table */ | 245 | /* Map in DART table */ |
| 247 | dart_vbase = ioremap(virt_to_abs(dart_tablebase), dart_tablesize); | 246 | dart_vbase = ioremap(__pa(dart_tablebase), dart_tablesize); |
| 248 | 247 | ||
| 249 | /* Fill initial table */ | 248 | /* Fill initial table */ |
| 250 | for (i = 0; i < dart_tablesize/4; i++) | 249 | for (i = 0; i < dart_tablesize/4; i++) |
| @@ -463,7 +462,7 @@ void __init alloc_dart_table(void) | |||
| 463 | * will blow up an entire large page anyway in the kernel mapping | 462 | * will blow up an entire large page anyway in the kernel mapping |
| 464 | */ | 463 | */ |
| 465 | dart_tablebase = (unsigned long) | 464 | dart_tablebase = (unsigned long) |
| 466 | abs_to_virt(memblock_alloc_base(1UL<<24, 1UL<<24, 0x80000000L)); | 465 | __va(memblock_alloc_base(1UL<<24, 1UL<<24, 0x80000000L)); |
| 467 | 466 | ||
| 468 | printk(KERN_INFO "DART table allocated at: %lx\n", dart_tablebase); | 467 | printk(KERN_INFO "DART table allocated at: %lx\n", dart_tablebase); |
| 469 | } | 468 | } |
