[ARM] 4520/1: S3C: Remove old VA values from static map
[safe/jmp/linux-2.6] / include / asm-arm / arch-s3c2410 / map.h
1 /* linux/include/asm-arm/arch-s3c2410/map.h
2  *
3  * Copyright (c) 2003 Simtec Electronics
4  *      Ben Dooks <ben@simtec.co.uk>
5  *
6  * S3C2410 - Memory map definitions
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11 */
12
13 #ifndef __ASM_ARCH_MAP_H
14 #define __ASM_ARCH_MAP_H
15
16 /* we have a bit of a tight squeeze to fit all our registers from
17  * 0xF00000000 upwards, since we use all of the nGCS space in some
18  * capacity, and also need to fit the S3C2410 registers in as well...
19  *
20  * we try to ensure stuff like the IRQ registers are available for
21  * an single MOVS instruction (ie, only 8 bits of set data)
22  *
23  * Note, we are trying to remove some of these from the implementation
24  * as they are only useful to certain drivers...
25  */
26
27 #ifndef __ASSEMBLY__
28 #define S3C2410_ADDR(x)   ((void __iomem __force *)0xF0000000 + (x))
29 #else
30 #define S3C2410_ADDR(x)   (0xF0000000 + (x))
31 #endif
32
33 /* interrupt controller is the first thing we put in, to make
34  * the assembly code for the irq detection easier
35  */
36 #define S3C24XX_VA_IRQ     S3C2410_ADDR(0x00000000)
37 #define S3C2410_PA_IRQ     (0x4A000000)
38 #define S3C24XX_SZ_IRQ     SZ_1M
39
40 /* memory controller registers */
41 #define S3C24XX_VA_MEMCTRL S3C2410_ADDR(0x00100000)
42 #define S3C2410_PA_MEMCTRL (0x48000000)
43 #define S3C24XX_SZ_MEMCTRL SZ_1M
44
45 /* USB host controller */
46 #define S3C2410_PA_USBHOST (0x49000000)
47 #define S3C24XX_SZ_USBHOST SZ_1M
48
49 /* DMA controller */
50 #define S3C2410_PA_DMA     (0x4B000000)
51 #define S3C24XX_SZ_DMA     SZ_1M
52
53 /* Clock and Power management */
54 #define S3C24XX_VA_CLKPWR  S3C2410_ADDR(0x00200000)
55 #define S3C2410_PA_CLKPWR  (0x4C000000)
56 #define S3C24XX_SZ_CLKPWR  SZ_1M
57
58 /* LCD controller */
59 #define S3C2410_PA_LCD     (0x4D000000)
60 #define S3C24XX_SZ_LCD     SZ_1M
61
62 /* NAND flash controller */
63 #define S3C2410_PA_NAND    (0x4E000000)
64 #define S3C24XX_SZ_NAND    SZ_1M
65
66 /* UARTs */
67 #define S3C24XX_VA_UART    S3C2410_ADDR(0x00400000)
68 #define S3C2410_PA_UART    (0x50000000)
69 #define S3C24XX_SZ_UART    SZ_1M
70
71 /* Timers */
72 #define S3C24XX_VA_TIMER   S3C2410_ADDR(0x00500000)
73 #define S3C2410_PA_TIMER   (0x51000000)
74 #define S3C24XX_SZ_TIMER   SZ_1M
75
76 /* USB Device port */
77 #define S3C2410_PA_USBDEV  (0x52000000)
78 #define S3C24XX_SZ_USBDEV  SZ_1M
79
80 /* Watchdog */
81 #define S3C24XX_VA_WATCHDOG S3C2410_ADDR(0x00700000)
82 #define S3C2410_PA_WATCHDOG (0x53000000)
83 #define S3C24XX_SZ_WATCHDOG SZ_1M
84
85 /* IIC hardware controller */
86 #define S3C2410_PA_IIC     (0x54000000)
87 #define S3C24XX_SZ_IIC     SZ_1M
88
89 /* IIS controller */
90 #define S3C2410_PA_IIS     (0x55000000)
91 #define S3C24XX_SZ_IIS     SZ_1M
92
93 /* GPIO ports */
94
95 /* the calculation for the VA of this must ensure that
96  * it is the same distance apart from the UART in the
97  * phsyical address space, as the initial mapping for the IO
98  * is done as a 1:1 maping. This puts it (currently) at
99  * 0xF6800000, which is not in the way of any current mapping
100  * by the base system.
101 */
102
103 #define S3C2410_PA_GPIO    (0x56000000)
104 #define S3C24XX_VA_GPIO    ((S3C2410_PA_GPIO - S3C24XX_PA_UART) + S3C24XX_VA_UART)
105 #define S3C24XX_SZ_GPIO    SZ_1M
106
107 /* RTC */
108 #define S3C2410_PA_RTC     (0x57000000)
109 #define S3C24XX_SZ_RTC     SZ_1M
110
111 /* ADC */
112 #define S3C2410_PA_ADC     (0x58000000)
113 #define S3C24XX_SZ_ADC     SZ_1M
114
115 /* SPI */
116 #define S3C2410_PA_SPI     (0x59000000)
117 #define S3C24XX_SZ_SPI     SZ_1M
118
119 /* SDI */
120 #define S3C2410_PA_SDI     (0x5A000000)
121 #define S3C24XX_SZ_SDI     SZ_1M
122
123 /* CAMIF */
124 #define S3C2440_PA_CAMIF   (0x4F000000)
125 #define S3C2440_SZ_CAMIF   SZ_1M
126
127 /* AC97 */
128
129 #define S3C2440_PA_AC97    (0x5B000000)
130 #define S3C2440_SZ_AC97    SZ_1M
131
132 /* S3C2443 High-speed SD/MMC */
133 #define S3C2443_PA_HSMMC   (0x4A800000)
134 #define S3C2443_SZ_HSMMC   (256)
135
136 /* ISA style IO, for each machine to sort out mappings for, if it
137  * implements it. We reserve two 16M regions for ISA.
138  */
139
140 #define S3C24XX_VA_ISA_WORD  S3C2410_ADDR(0x02000000)
141 #define S3C24XX_VA_ISA_BYTE  S3C2410_ADDR(0x03000000)
142
143 /* physical addresses of all the chip-select areas */
144
145 #define S3C2410_CS0 (0x00000000)
146 #define S3C2410_CS1 (0x08000000)
147 #define S3C2410_CS2 (0x10000000)
148 #define S3C2410_CS3 (0x18000000)
149 #define S3C2410_CS4 (0x20000000)
150 #define S3C2410_CS5 (0x28000000)
151 #define S3C2410_CS6 (0x30000000)
152 #define S3C2410_CS7 (0x38000000)
153
154 #define S3C2410_SDRAM_PA    (S3C2410_CS6)
155
156
157 /* Use a single interface for common resources between S3C24XX cpus */
158
159 #define S3C24XX_PA_IRQ      S3C2410_PA_IRQ
160 #define S3C24XX_PA_MEMCTRL  S3C2410_PA_MEMCTRL
161 #define S3C24XX_PA_USBHOST  S3C2410_PA_USBHOST
162 #define S3C24XX_PA_DMA      S3C2410_PA_DMA
163 #define S3C24XX_PA_CLKPWR   S3C2410_PA_CLKPWR
164 #define S3C24XX_PA_LCD      S3C2410_PA_LCD
165 #define S3C24XX_PA_UART     S3C2410_PA_UART
166 #define S3C24XX_PA_TIMER    S3C2410_PA_TIMER
167 #define S3C24XX_PA_USBDEV   S3C2410_PA_USBDEV
168 #define S3C24XX_PA_WATCHDOG S3C2410_PA_WATCHDOG
169 #define S3C24XX_PA_IIC      S3C2410_PA_IIC
170 #define S3C24XX_PA_IIS      S3C2410_PA_IIS
171 #define S3C24XX_PA_GPIO     S3C2410_PA_GPIO
172 #define S3C24XX_PA_RTC      S3C2410_PA_RTC
173 #define S3C24XX_PA_ADC      S3C2410_PA_ADC
174 #define S3C24XX_PA_SPI      S3C2410_PA_SPI
175
176 /* deal with the registers that move under the 2412/2413 */
177
178 #if defined(CONFIG_CPU_S3C2412) || defined(CONFIG_CPU_S3C2413)
179 #ifndef __ASSEMBLY__
180 extern void __iomem *s3c24xx_va_gpio2;
181 #endif
182 #ifdef CONFIG_CPU_S3C2412_ONLY
183 #define S3C24XX_VA_GPIO2 (S3C24XX_VA_GPIO + 0x10)
184 #else
185 #define S3C24XX_VA_GPIO2 s3c24xx_va_gpio2
186 #endif
187 #else
188 #define s3c24xx_va_gpio2 S3C24XX_VA_GPIO
189 #define S3C24XX_VA_GPIO2 S3C24XX_VA_GPIO
190 #endif
191
192 #endif /* __ASM_ARCH_MAP_H */