Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* linux/include/asm-arm/arch-s3c2410/map.h |
| 2 | * |
Ben Dooks | f056076 | 2006-12-17 19:59:20 +0100 | [diff] [blame] | 3 | * Copyright (c) 2003 Simtec Electronics |
| 4 | * Ben Dooks <ben@simtec.co.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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__ |
Ben Dooks | cdcb383 | 2006-12-17 20:15:13 +0100 | [diff] [blame] | 28 | #define S3C2410_ADDR(x) ((void __iomem __force *)0xF0000000 + (x)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #else |
| 30 | #define S3C2410_ADDR(x) (0xF0000000 + (x)) |
| 31 | #endif |
| 32 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #define S3C2410_PA_MEMCTRL (0x48000000) |
| 43 | #define S3C24XX_SZ_MEMCTRL SZ_1M |
| 44 | |
| 45 | /* USB host controller */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #define S3C2410_PA_USBHOST (0x49000000) |
| 47 | #define S3C24XX_SZ_USBHOST SZ_1M |
| 48 | |
| 49 | /* DMA controller */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #define S3C2410_PA_DMA (0x4B000000) |
| 51 | #define S3C24XX_SZ_DMA SZ_1M |
| 52 | |
| 53 | /* Clock and Power management */ |
Ben Dooks | 58d19d6 | 2006-12-17 20:50:55 +0100 | [diff] [blame] | 54 | #define S3C24XX_VA_CLKPWR S3C2410_ADDR(0x00200000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | #define S3C2410_PA_CLKPWR (0x4C000000) |
| 56 | #define S3C24XX_SZ_CLKPWR SZ_1M |
| 57 | |
| 58 | /* LCD controller */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | #define S3C2410_PA_LCD (0x4D000000) |
| 60 | #define S3C24XX_SZ_LCD SZ_1M |
| 61 | |
| 62 | /* NAND flash controller */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | #define S3C2410_PA_NAND (0x4E000000) |
| 64 | #define S3C24XX_SZ_NAND SZ_1M |
| 65 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | /* UARTs */ |
Ben Dooks | 58d19d6 | 2006-12-17 20:50:55 +0100 | [diff] [blame] | 67 | #define S3C24XX_VA_UART S3C2410_ADDR(0x00400000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | #define S3C2410_PA_UART (0x50000000) |
| 69 | #define S3C24XX_SZ_UART SZ_1M |
| 70 | |
| 71 | /* Timers */ |
Ben Dooks | 58d19d6 | 2006-12-17 20:50:55 +0100 | [diff] [blame] | 72 | #define S3C24XX_VA_TIMER S3C2410_ADDR(0x00500000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | #define S3C2410_PA_TIMER (0x51000000) |
| 74 | #define S3C24XX_SZ_TIMER SZ_1M |
| 75 | |
| 76 | /* USB Device port */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | #define S3C2410_PA_USBDEV (0x52000000) |
| 78 | #define S3C24XX_SZ_USBDEV SZ_1M |
| 79 | |
| 80 | /* Watchdog */ |
Ben Dooks | 58d19d6 | 2006-12-17 20:50:55 +0100 | [diff] [blame] | 81 | #define S3C24XX_VA_WATCHDOG S3C2410_ADDR(0x00700000) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | #define S3C2410_PA_WATCHDOG (0x53000000) |
| 83 | #define S3C24XX_SZ_WATCHDOG SZ_1M |
| 84 | |
| 85 | /* IIC hardware controller */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | #define S3C2410_PA_IIC (0x54000000) |
| 87 | #define S3C24XX_SZ_IIC SZ_1M |
| 88 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | /* IIS controller */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | #define S3C2410_PA_IIS (0x55000000) |
| 91 | #define S3C24XX_SZ_IIS SZ_1M |
| 92 | |
| 93 | /* GPIO ports */ |
Ben Dooks | 68d5969 | 2006-06-18 16:21:52 +0100 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | #define S3C2410_PA_GPIO (0x56000000) |
Ben Dooks | 68d5969 | 2006-06-18 16:21:52 +0100 | [diff] [blame] | 104 | #define S3C24XX_VA_GPIO ((S3C2410_PA_GPIO - S3C24XX_PA_UART) + S3C24XX_VA_UART) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 105 | #define S3C24XX_SZ_GPIO SZ_1M |
| 106 | |
| 107 | /* RTC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | #define S3C2410_PA_RTC (0x57000000) |
| 109 | #define S3C24XX_SZ_RTC SZ_1M |
| 110 | |
| 111 | /* ADC */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | #define S3C2410_PA_ADC (0x58000000) |
| 113 | #define S3C24XX_SZ_ADC SZ_1M |
| 114 | |
| 115 | /* SPI */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | #define S3C2410_PA_SPI (0x59000000) |
| 117 | #define S3C24XX_SZ_SPI SZ_1M |
| 118 | |
| 119 | /* SDI */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Ben Dooks | fd88edd | 2006-09-15 23:34:34 +0100 | [diff] [blame] | 127 | /* AC97 */ |
| 128 | |
| 129 | #define S3C2440_PA_AC97 (0x5B000000) |
| 130 | #define S3C2440_SZ_AC97 SZ_1M |
| 131 | |
Ben Dooks | ece9794 | 2007-05-21 09:40:06 +0100 | [diff] [blame] | 132 | /* S3C2443 High-speed SD/MMC */ |
| 133 | #define S3C2443_PA_HSMMC (0x4A800000) |
| 134 | #define S3C2443_SZ_HSMMC (256) |
| 135 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
Lucas Correia Villa Real | 0367a8d | 2006-01-26 15:20:50 +0000 | [diff] [blame] | 157 | /* Use a single interface for common resources between S3C24XX cpus */ |
| 158 | |
Lucas Correia Villa Real | 0367a8d | 2006-01-26 15:20:50 +0000 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
Ben Dooks | 68d9ab3 | 2006-06-24 21:21:27 +0100 | [diff] [blame] | 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 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | #endif /* __ASM_ARCH_MAP_H */ |