diff options
Diffstat (limited to 'arch/arm/mach-clps711x/p720t.c')
-rw-r--r-- | arch/arm/mach-clps711x/p720t.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/arch/arm/mach-clps711x/p720t.c b/arch/arm/mach-clps711x/p720t.c index 5bdb90edf992..a1acb945fb51 100644 --- a/arch/arm/mach-clps711x/p720t.c +++ b/arch/arm/mach-clps711x/p720t.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <asm/pgtable.h> | 29 | #include <asm/pgtable.h> |
30 | #include <asm/page.h> | 30 | #include <asm/page.h> |
31 | #include <asm/setup.h> | 31 | #include <asm/setup.h> |
32 | #include <asm/sizes.h> | ||
32 | #include <asm/mach-types.h> | 33 | #include <asm/mach-types.h> |
33 | #include <asm/mach/arch.h> | 34 | #include <asm/mach/arch.h> |
34 | #include <asm/mach/map.h> | 35 | #include <asm/mach/map.h> |
@@ -42,8 +43,17 @@ | |||
42 | * We map both here. | 43 | * We map both here. |
43 | */ | 44 | */ |
44 | static struct map_desc p720t_io_desc[] __initdata = { | 45 | static struct map_desc p720t_io_desc[] __initdata = { |
45 | { SYSPLD_VIRT_BASE, SYSPLD_PHYS_BASE, 1048576, MT_DEVICE }, | 46 | { |
46 | { 0xfe400000, 0x10400000, 1048576, MT_DEVICE } | 47 | .virtual = SYSPLD_VIRT_BASE, |
48 | .pfn = __phys_to_pfn(SYSPLD_PHYS_BASE), | ||
49 | .length = SZ_1M, | ||
50 | .type = MT_DEVICE | ||
51 | }, { | ||
52 | .virtual = 0xfe400000, | ||
53 | .pfn = __phys_to_pfn(0x10400000), | ||
54 | .length = SZ_1M, | ||
55 | .type = MT_DEVICE | ||
56 | } | ||
47 | }; | 57 | }; |
48 | 58 | ||
49 | static void __init | 59 | static void __init |