diff options
author | Sergei Shtylyov <sshtylyov@ru.mvista.com> | 2010-04-16 13:29:11 -0400 |
---|---|---|
committer | Kevin Hilman <khilman@deeprootsystems.com> | 2010-05-06 18:02:06 -0400 |
commit | 7034217467abe91b5bc63fc2993bb8eec1cf3c9f (patch) | |
tree | 5e0aeb13a0b69f111fa53a78f3dc0b61e437087b /arch/arm/mach-davinci/board-dm355-leopard.c | |
parent | ef03592a1a8112309f1fca1c11fbaef8ab541ef2 (diff) |
DaVinci: move AEMIF #define's to the proper headers
Currently each DaVinci board file #define's its own version of the EMIFA base
addresses (all named DAVINCI_ASYNC_EMIF_*_BASE), which leads to duplication.
Move these #define's to the SoC specific headers, changing their prefixes from
'DAVINCI' to the 'DM355', 'DM644X', and 'DM646X' since all these base addresses
are SoC specific...
And while at it, rename DM646X_ASYNC_EMIF_DATA_CE0_BASE to
DM646X_ASYNC_EMIF_CS2_SPACE_BASE in order to match the DM646x datasheet.
Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
Diffstat (limited to 'arch/arm/mach-davinci/board-dm355-leopard.c')
-rw-r--r-- | arch/arm/mach-davinci/board-dm355-leopard.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/arch/arm/mach-davinci/board-dm355-leopard.c b/arch/arm/mach-davinci/board-dm355-leopard.c index 21f32eb41e8c..c3d5a70a7f38 100644 --- a/arch/arm/mach-davinci/board-dm355-leopard.c +++ b/arch/arm/mach-davinci/board-dm355-leopard.c | |||
@@ -30,9 +30,6 @@ | |||
30 | #include <mach/mmc.h> | 30 | #include <mach/mmc.h> |
31 | #include <mach/usb.h> | 31 | #include <mach/usb.h> |
32 | 32 | ||
33 | #define DAVINCI_ASYNC_EMIF_CONTROL_BASE 0x01e10000 | ||
34 | #define DAVINCI_ASYNC_EMIF_DATA_CE0_BASE 0x02000000 | ||
35 | |||
36 | /* NOTE: this is geared for the standard config, with a socketed | 33 | /* NOTE: this is geared for the standard config, with a socketed |
37 | * 2 GByte Micron NAND (MT29F16G08FAA) using 128KB sectors. If you | 34 | * 2 GByte Micron NAND (MT29F16G08FAA) using 128KB sectors. If you |
38 | * swap chips, maybe with a different block size, partitioning may | 35 | * swap chips, maybe with a different block size, partitioning may |
@@ -82,12 +79,12 @@ static struct davinci_nand_pdata davinci_nand_data = { | |||
82 | 79 | ||
83 | static struct resource davinci_nand_resources[] = { | 80 | static struct resource davinci_nand_resources[] = { |
84 | { | 81 | { |
85 | .start = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE, | 82 | .start = DM355_ASYNC_EMIF_DATA_CE0_BASE, |
86 | .end = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE + SZ_32M - 1, | 83 | .end = DM355_ASYNC_EMIF_DATA_CE0_BASE + SZ_32M - 1, |
87 | .flags = IORESOURCE_MEM, | 84 | .flags = IORESOURCE_MEM, |
88 | }, { | 85 | }, { |
89 | .start = DAVINCI_ASYNC_EMIF_CONTROL_BASE, | 86 | .start = DM355_ASYNC_EMIF_CONTROL_BASE, |
90 | .end = DAVINCI_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1, | 87 | .end = DM355_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1, |
91 | .flags = IORESOURCE_MEM, | 88 | .flags = IORESOURCE_MEM, |
92 | }, | 89 | }, |
93 | }; | 90 | }; |