aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm
diff options
context:
space:
mode:
authorAndrew Victor <andrew@sanpeople.com>2006-09-28 11:26:47 -0400
committerRussell King <rmk+kernel@arm.linux.org.uk>2006-09-28 13:11:22 -0400
commit1f51c10c5e85050506663bce1d69513eb901db87 (patch)
treea71ad28d526c2b4fa3f4ad67084ab61338a0e534 /arch/arm
parentcc2b28ba61b0a6bdfcf18274b8b883b98486eca4 (diff)
[ARM] 3870/1: AT91: Start removing static memory mappings
This patch removes the static memory mapping for the currently-unused peripherals [Synchronous Serial, Timer/Counter unit], and for those drivers that already ioremap() their registers [UART]. Also, the Ethernet driver now uses the platform_device resources but doesn't yet use ioremap() so we need to pass it the virtual address instead of the physical address. Signed-off-by: Andrew Victor <andrew@sanpeople.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r--arch/arm/mach-at91rm9200/at91rm9200.c45
-rw-r--r--arch/arm/mach-at91rm9200/devices.c4
2 files changed, 2 insertions, 47 deletions
diff --git a/arch/arm/mach-at91rm9200/at91rm9200.c b/arch/arm/mach-at91rm9200/at91rm9200.c
index c32d0c996f90..dcf6136fedf9 100644
--- a/arch/arm/mach-at91rm9200/at91rm9200.c
+++ b/arch/arm/mach-at91rm9200/at91rm9200.c
@@ -31,41 +31,6 @@ static struct map_desc at91rm9200_io_desc[] __initdata = {
31 .length = SZ_16K, 31 .length = SZ_16K,
32 .type = MT_DEVICE, 32 .type = MT_DEVICE,
33 }, { 33 }, {
34 .virtual = AT91_VA_BASE_SSC2,
35 .pfn = __phys_to_pfn(AT91RM9200_BASE_SSC2),
36 .length = SZ_16K,
37 .type = MT_DEVICE,
38 }, {
39 .virtual = AT91_VA_BASE_SSC1,
40 .pfn = __phys_to_pfn(AT91RM9200_BASE_SSC1),
41 .length = SZ_16K,
42 .type = MT_DEVICE,
43 }, {
44 .virtual = AT91_VA_BASE_SSC0,
45 .pfn = __phys_to_pfn(AT91RM9200_BASE_SSC0),
46 .length = SZ_16K,
47 .type = MT_DEVICE,
48 }, {
49 .virtual = AT91_VA_BASE_US3,
50 .pfn = __phys_to_pfn(AT91RM9200_BASE_US3),
51 .length = SZ_16K,
52 .type = MT_DEVICE,
53 }, {
54 .virtual = AT91_VA_BASE_US2,
55 .pfn = __phys_to_pfn(AT91RM9200_BASE_US2),
56 .length = SZ_16K,
57 .type = MT_DEVICE,
58 }, {
59 .virtual = AT91_VA_BASE_US1,
60 .pfn = __phys_to_pfn(AT91RM9200_BASE_US1),
61 .length = SZ_16K,
62 .type = MT_DEVICE,
63 }, {
64 .virtual = AT91_VA_BASE_US0,
65 .pfn = __phys_to_pfn(AT91RM9200_BASE_US0),
66 .length = SZ_16K,
67 .type = MT_DEVICE,
68 }, {
69 .virtual = AT91_VA_BASE_EMAC, 34 .virtual = AT91_VA_BASE_EMAC,
70 .pfn = __phys_to_pfn(AT91RM9200_BASE_EMAC), 35 .pfn = __phys_to_pfn(AT91RM9200_BASE_EMAC),
71 .length = SZ_16K, 36 .length = SZ_16K,
@@ -86,16 +51,6 @@ static struct map_desc at91rm9200_io_desc[] __initdata = {
86 .length = SZ_16K, 51 .length = SZ_16K,
87 .type = MT_DEVICE, 52 .type = MT_DEVICE,
88 }, { 53 }, {
89 .virtual = AT91_VA_BASE_TCB1,
90 .pfn = __phys_to_pfn(AT91RM9200_BASE_TCB1),
91 .length = SZ_16K,
92 .type = MT_DEVICE,
93 }, {
94 .virtual = AT91_VA_BASE_TCB0,
95 .pfn = __phys_to_pfn(AT91RM9200_BASE_TCB0),
96 .length = SZ_16K,
97 .type = MT_DEVICE,
98 }, {
99 .virtual = AT91_SRAM_VIRT_BASE, 54 .virtual = AT91_SRAM_VIRT_BASE,
100 .pfn = __phys_to_pfn(AT91RM9200_SRAM_BASE), 55 .pfn = __phys_to_pfn(AT91RM9200_SRAM_BASE),
101 .length = AT91RM9200_SRAM_SIZE, 56 .length = AT91RM9200_SRAM_SIZE,
diff --git a/arch/arm/mach-at91rm9200/devices.c b/arch/arm/mach-at91rm9200/devices.c
index db7c684cdb63..01525530c287 100644
--- a/arch/arm/mach-at91rm9200/devices.c
+++ b/arch/arm/mach-at91rm9200/devices.c
@@ -131,8 +131,8 @@ static struct at91_eth_data eth_data;
131 131
132static struct resource at91_eth_resources[] = { 132static struct resource at91_eth_resources[] = {
133 [0] = { 133 [0] = {
134 .start = AT91RM9200_BASE_EMAC, 134 .start = AT91_VA_BASE_EMAC,
135 .end = AT91RM9200_BASE_EMAC + SZ_16K - 1, 135 .end = AT91_VA_BASE_EMAC + SZ_16K - 1,
136 .flags = IORESOURCE_MEM, 136 .flags = IORESOURCE_MEM,
137 }, 137 },
138 [1] = { 138 [1] = {