Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/mach-dove/common.c |
| 3 | * |
| 4 | * Core functions for Marvell Dove 88AP510 System On Chip |
| 5 | * |
| 6 | * This file is licensed under the terms of the GNU General Public |
| 7 | * License version 2. This program is licensed "as is" without any |
| 8 | * warranty of any kind, whether express or implied. |
| 9 | */ |
| 10 | |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/delay.h> |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/platform_device.h> |
| 15 | #include <linux/pci.h> |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 16 | #include <linux/clk.h> |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 17 | #include <linux/ata_platform.h> |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 18 | #include <linux/gpio.h> |
| 19 | #include <asm/page.h> |
| 20 | #include <asm/setup.h> |
| 21 | #include <asm/timex.h> |
Lennert Buytenhek | 573a652 | 2009-11-24 19:33:52 +0200 | [diff] [blame] | 22 | #include <asm/hardware/cache-tauros2.h> |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 23 | #include <asm/mach/map.h> |
| 24 | #include <asm/mach/time.h> |
| 25 | #include <asm/mach/pci.h> |
| 26 | #include <mach/dove.h> |
| 27 | #include <mach/bridge-regs.h> |
| 28 | #include <asm/mach/arch.h> |
| 29 | #include <linux/irq.h> |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 30 | #include <plat/time.h> |
Andrew Lunn | 28a2b45 | 2011-05-15 13:32:41 +0200 | [diff] [blame] | 31 | #include <plat/common.h> |
Andrew Lunn | 45173d5 | 2011-12-07 21:48:06 +0100 | [diff] [blame] | 32 | #include <plat/addr-map.h> |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 33 | #include "common.h" |
| 34 | |
Andrew Lunn | 28a2b45 | 2011-05-15 13:32:41 +0200 | [diff] [blame] | 35 | static int get_tclk(void); |
| 36 | |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 37 | /***************************************************************************** |
| 38 | * I/O Address Mapping |
| 39 | ****************************************************************************/ |
| 40 | static struct map_desc dove_io_desc[] __initdata = { |
| 41 | { |
| 42 | .virtual = DOVE_SB_REGS_VIRT_BASE, |
| 43 | .pfn = __phys_to_pfn(DOVE_SB_REGS_PHYS_BASE), |
| 44 | .length = DOVE_SB_REGS_SIZE, |
| 45 | .type = MT_DEVICE, |
| 46 | }, { |
| 47 | .virtual = DOVE_NB_REGS_VIRT_BASE, |
| 48 | .pfn = __phys_to_pfn(DOVE_NB_REGS_PHYS_BASE), |
| 49 | .length = DOVE_NB_REGS_SIZE, |
| 50 | .type = MT_DEVICE, |
| 51 | }, { |
| 52 | .virtual = DOVE_PCIE0_IO_VIRT_BASE, |
| 53 | .pfn = __phys_to_pfn(DOVE_PCIE0_IO_PHYS_BASE), |
| 54 | .length = DOVE_PCIE0_IO_SIZE, |
| 55 | .type = MT_DEVICE, |
| 56 | }, { |
| 57 | .virtual = DOVE_PCIE1_IO_VIRT_BASE, |
| 58 | .pfn = __phys_to_pfn(DOVE_PCIE1_IO_PHYS_BASE), |
| 59 | .length = DOVE_PCIE1_IO_SIZE, |
| 60 | .type = MT_DEVICE, |
| 61 | }, |
| 62 | }; |
| 63 | |
| 64 | void __init dove_map_io(void) |
| 65 | { |
| 66 | iotable_init(dove_io_desc, ARRAY_SIZE(dove_io_desc)); |
| 67 | } |
| 68 | |
| 69 | /***************************************************************************** |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 70 | * EHCI0 |
| 71 | ****************************************************************************/ |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 72 | void __init dove_ehci0_init(void) |
| 73 | { |
Andrew Lunn | db33f4d | 2011-12-07 21:48:08 +0100 | [diff] [blame] | 74 | orion_ehci_init(DOVE_USB0_PHYS_BASE, IRQ_DOVE_USB0); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | /***************************************************************************** |
| 78 | * EHCI1 |
| 79 | ****************************************************************************/ |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 80 | void __init dove_ehci1_init(void) |
| 81 | { |
Andrew Lunn | db33f4d | 2011-12-07 21:48:08 +0100 | [diff] [blame] | 82 | orion_ehci_1_init(DOVE_USB1_PHYS_BASE, IRQ_DOVE_USB1); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | /***************************************************************************** |
| 86 | * GE00 |
| 87 | ****************************************************************************/ |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 88 | void __init dove_ge00_init(struct mv643xx_eth_platform_data *eth_data) |
| 89 | { |
Andrew Lunn | db33f4d | 2011-12-07 21:48:08 +0100 | [diff] [blame] | 90 | orion_ge00_init(eth_data, |
Andrew Lunn | 7e3819d | 2011-05-15 13:32:44 +0200 | [diff] [blame] | 91 | DOVE_GE00_PHYS_BASE, IRQ_DOVE_GE00_SUM, |
| 92 | 0, get_tclk()); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | /***************************************************************************** |
| 96 | * SoC RTC |
| 97 | ****************************************************************************/ |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 98 | void __init dove_rtc_init(void) |
| 99 | { |
Andrew Lunn | f6eaccb | 2011-05-15 13:32:42 +0200 | [diff] [blame] | 100 | orion_rtc_init(DOVE_RTC_PHYS_BASE, IRQ_DOVE_RTC); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | /***************************************************************************** |
| 104 | * SATA |
| 105 | ****************************************************************************/ |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 106 | void __init dove_sata_init(struct mv_sata_platform_data *sata_data) |
| 107 | { |
Andrew Lunn | db33f4d | 2011-12-07 21:48:08 +0100 | [diff] [blame] | 108 | orion_sata_init(sata_data, DOVE_SATA_PHYS_BASE, IRQ_DOVE_SATA); |
Andrew Lunn | 9e613f8 | 2011-05-15 13:32:50 +0200 | [diff] [blame] | 109 | |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 110 | } |
| 111 | |
| 112 | /***************************************************************************** |
| 113 | * UART0 |
| 114 | ****************************************************************************/ |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 115 | void __init dove_uart0_init(void) |
| 116 | { |
Andrew Lunn | 28a2b45 | 2011-05-15 13:32:41 +0200 | [diff] [blame] | 117 | orion_uart0_init(DOVE_UART0_VIRT_BASE, DOVE_UART0_PHYS_BASE, |
| 118 | IRQ_DOVE_UART_0, get_tclk()); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | /***************************************************************************** |
| 122 | * UART1 |
| 123 | ****************************************************************************/ |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 124 | void __init dove_uart1_init(void) |
| 125 | { |
Andrew Lunn | 28a2b45 | 2011-05-15 13:32:41 +0200 | [diff] [blame] | 126 | orion_uart1_init(DOVE_UART1_VIRT_BASE, DOVE_UART1_PHYS_BASE, |
| 127 | IRQ_DOVE_UART_1, get_tclk()); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | /***************************************************************************** |
| 131 | * UART2 |
| 132 | ****************************************************************************/ |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 133 | void __init dove_uart2_init(void) |
| 134 | { |
Andrew Lunn | 28a2b45 | 2011-05-15 13:32:41 +0200 | [diff] [blame] | 135 | orion_uart2_init(DOVE_UART2_VIRT_BASE, DOVE_UART2_PHYS_BASE, |
| 136 | IRQ_DOVE_UART_2, get_tclk()); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 137 | } |
| 138 | |
| 139 | /***************************************************************************** |
| 140 | * UART3 |
| 141 | ****************************************************************************/ |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 142 | void __init dove_uart3_init(void) |
| 143 | { |
Andrew Lunn | 28a2b45 | 2011-05-15 13:32:41 +0200 | [diff] [blame] | 144 | orion_uart3_init(DOVE_UART3_VIRT_BASE, DOVE_UART3_PHYS_BASE, |
| 145 | IRQ_DOVE_UART_3, get_tclk()); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | /***************************************************************************** |
Andrew Lunn | 980f9f6 | 2011-05-15 13:32:46 +0200 | [diff] [blame] | 149 | * SPI |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 150 | ****************************************************************************/ |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 151 | void __init dove_spi0_init(void) |
| 152 | { |
Andrew Lunn | 980f9f6 | 2011-05-15 13:32:46 +0200 | [diff] [blame] | 153 | orion_spi_init(DOVE_SPI0_PHYS_BASE, get_tclk()); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 154 | } |
| 155 | |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 156 | void __init dove_spi1_init(void) |
| 157 | { |
Nicolas Pitre | 72cc205 | 2011-09-14 01:22:05 -0400 | [diff] [blame] | 158 | orion_spi_1_init(DOVE_SPI1_PHYS_BASE, get_tclk()); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | /***************************************************************************** |
| 162 | * I2C |
| 163 | ****************************************************************************/ |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 164 | void __init dove_i2c_init(void) |
| 165 | { |
Andrew Lunn | aac7ffa | 2011-05-15 13:32:45 +0200 | [diff] [blame] | 166 | orion_i2c_init(DOVE_I2C_PHYS_BASE, IRQ_DOVE_I2C, 10); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | /***************************************************************************** |
| 170 | * Time handling |
| 171 | ****************************************************************************/ |
Lennert Buytenhek | 4ee1f6b | 2010-10-15 16:50:26 +0200 | [diff] [blame] | 172 | void __init dove_init_early(void) |
| 173 | { |
| 174 | orion_time_set_base(TIMER_VIRT_BASE); |
| 175 | } |
| 176 | |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 177 | static int get_tclk(void) |
| 178 | { |
| 179 | /* use DOVE_RESET_SAMPLE_HI/LO to detect tclk */ |
| 180 | return 166666667; |
| 181 | } |
| 182 | |
| 183 | static void dove_timer_init(void) |
| 184 | { |
Lennert Buytenhek | 4ee1f6b | 2010-10-15 16:50:26 +0200 | [diff] [blame] | 185 | orion_time_init(BRIDGE_VIRT_BASE, BRIDGE_INT_TIMER1_CLR, |
| 186 | IRQ_DOVE_BRIDGE, get_tclk()); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 187 | } |
| 188 | |
| 189 | struct sys_timer dove_timer = { |
| 190 | .init = dove_timer_init, |
| 191 | }; |
| 192 | |
| 193 | /***************************************************************************** |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 194 | * XOR 0 |
| 195 | ****************************************************************************/ |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 196 | void __init dove_xor0_init(void) |
| 197 | { |
Andrew Lunn | db33f4d | 2011-12-07 21:48:08 +0100 | [diff] [blame] | 198 | orion_xor0_init(DOVE_XOR0_PHYS_BASE, DOVE_XOR0_HIGH_PHYS_BASE, |
Andrew Lunn | ee96272 | 2011-05-15 13:32:48 +0200 | [diff] [blame] | 199 | IRQ_DOVE_XOR_00, IRQ_DOVE_XOR_01); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | /***************************************************************************** |
| 203 | * XOR 1 |
| 204 | ****************************************************************************/ |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 205 | void __init dove_xor1_init(void) |
| 206 | { |
Andrew Lunn | ee96272 | 2011-05-15 13:32:48 +0200 | [diff] [blame] | 207 | orion_xor1_init(DOVE_XOR1_PHYS_BASE, DOVE_XOR1_HIGH_PHYS_BASE, |
| 208 | IRQ_DOVE_XOR_10, IRQ_DOVE_XOR_11); |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 209 | } |
| 210 | |
Saeed Bishara | 16bc90a | 2010-05-06 16:12:06 +0300 | [diff] [blame] | 211 | /***************************************************************************** |
| 212 | * SDIO |
| 213 | ****************************************************************************/ |
| 214 | static u64 sdio_dmamask = DMA_BIT_MASK(32); |
| 215 | |
| 216 | static struct resource dove_sdio0_resources[] = { |
| 217 | { |
| 218 | .start = DOVE_SDIO0_PHYS_BASE, |
| 219 | .end = DOVE_SDIO0_PHYS_BASE + 0xff, |
| 220 | .flags = IORESOURCE_MEM, |
| 221 | }, { |
| 222 | .start = IRQ_DOVE_SDIO0, |
| 223 | .end = IRQ_DOVE_SDIO0, |
| 224 | .flags = IORESOURCE_IRQ, |
| 225 | }, |
| 226 | }; |
| 227 | |
| 228 | static struct platform_device dove_sdio0 = { |
Mike Rapoport | 930e2fe | 2010-10-28 21:23:53 +0200 | [diff] [blame] | 229 | .name = "sdhci-dove", |
Saeed Bishara | 16bc90a | 2010-05-06 16:12:06 +0300 | [diff] [blame] | 230 | .id = 0, |
| 231 | .dev = { |
| 232 | .dma_mask = &sdio_dmamask, |
| 233 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 234 | }, |
| 235 | .resource = dove_sdio0_resources, |
| 236 | .num_resources = ARRAY_SIZE(dove_sdio0_resources), |
| 237 | }; |
| 238 | |
| 239 | void __init dove_sdio0_init(void) |
| 240 | { |
| 241 | platform_device_register(&dove_sdio0); |
| 242 | } |
| 243 | |
| 244 | static struct resource dove_sdio1_resources[] = { |
| 245 | { |
| 246 | .start = DOVE_SDIO1_PHYS_BASE, |
| 247 | .end = DOVE_SDIO1_PHYS_BASE + 0xff, |
| 248 | .flags = IORESOURCE_MEM, |
| 249 | }, { |
| 250 | .start = IRQ_DOVE_SDIO1, |
| 251 | .end = IRQ_DOVE_SDIO1, |
| 252 | .flags = IORESOURCE_IRQ, |
| 253 | }, |
| 254 | }; |
| 255 | |
| 256 | static struct platform_device dove_sdio1 = { |
Mike Rapoport | 930e2fe | 2010-10-28 21:23:53 +0200 | [diff] [blame] | 257 | .name = "sdhci-dove", |
Saeed Bishara | 16bc90a | 2010-05-06 16:12:06 +0300 | [diff] [blame] | 258 | .id = 1, |
| 259 | .dev = { |
| 260 | .dma_mask = &sdio_dmamask, |
| 261 | .coherent_dma_mask = DMA_BIT_MASK(32), |
| 262 | }, |
| 263 | .resource = dove_sdio1_resources, |
| 264 | .num_resources = ARRAY_SIZE(dove_sdio1_resources), |
| 265 | }; |
| 266 | |
| 267 | void __init dove_sdio1_init(void) |
| 268 | { |
| 269 | platform_device_register(&dove_sdio1); |
| 270 | } |
| 271 | |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 272 | void __init dove_init(void) |
| 273 | { |
| 274 | int tclk; |
| 275 | |
| 276 | tclk = get_tclk(); |
| 277 | |
| 278 | printk(KERN_INFO "Dove 88AP510 SoC, "); |
| 279 | printk(KERN_INFO "TCLK = %dMHz\n", (tclk + 499999) / 1000000); |
| 280 | |
Lennert Buytenhek | 573a652 | 2009-11-24 19:33:52 +0200 | [diff] [blame] | 281 | #ifdef CONFIG_CACHE_TAUROS2 |
| 282 | tauros2_init(); |
| 283 | #endif |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 284 | dove_setup_cpu_mbus(); |
| 285 | |
Saeed Bishara | edabd38 | 2009-08-06 15:12:43 +0300 | [diff] [blame] | 286 | /* internal devices that every board has */ |
| 287 | dove_rtc_init(); |
| 288 | dove_xor0_init(); |
| 289 | dove_xor1_init(); |
| 290 | } |
Russell King | 6ca6ff9 | 2011-11-05 09:48:52 +0000 | [diff] [blame] | 291 | |
| 292 | void dove_restart(char mode, const char *cmd) |
| 293 | { |
| 294 | /* |
| 295 | * Enable soft reset to assert RSTOUTn. |
| 296 | */ |
| 297 | writel(SOFT_RESET_OUT_EN, RSTOUTn_MASK); |
| 298 | |
| 299 | /* |
| 300 | * Assert soft reset. |
| 301 | */ |
| 302 | writel(SOFT_RESET, SYSTEM_SOFT_RESET); |
| 303 | |
| 304 | while (1) |
| 305 | ; |
| 306 | } |