Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-realview/core.c |
| 3 | * |
| 4 | * Copyright (C) 1999 - 2003 ARM Limited |
| 5 | * Copyright (C) 2000 Deep Blue Solutions Ltd |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License as published by |
| 9 | * the Free Software Foundation; either version 2 of the License, or |
| 10 | * (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 20 | */ |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 21 | #include <linux/init.h> |
Russell King | 1be7228 | 2005-10-31 16:57:06 +0000 | [diff] [blame] | 22 | #include <linux/platform_device.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 23 | #include <linux/dma-mapping.h> |
| 24 | #include <linux/sysdev.h> |
| 25 | #include <linux/interrupt.h> |
Russell King | a62c80e | 2006-01-07 13:52:45 +0000 | [diff] [blame] | 26 | #include <linux/amba/bus.h> |
| 27 | #include <linux/amba/clcd.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 28 | #include <linux/io.h> |
Steve Glendinning | c5142e8 | 2009-01-20 13:23:30 +0000 | [diff] [blame] | 29 | #include <linux/smsc911x.h> |
Catalin Marinas | 6be62ba | 2009-02-12 15:59:21 +0100 | [diff] [blame] | 30 | #include <linux/ata_platform.h> |
Linus Walleij | 6ef297f | 2009-09-22 14:29:36 +0100 | [diff] [blame] | 31 | #include <linux/amba/mmci.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/gfp.h> |
Jean-Christop PLAGNIOL-VILLARD | 6d803ba | 2010-11-17 10:04:33 +0100 | [diff] [blame] | 33 | #include <linux/clkdev.h> |
Marc Zyngier | b8b87ae | 2011-05-18 10:51:49 +0100 | [diff] [blame] | 34 | #include <linux/mtd/physmap.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 35 | |
| 36 | #include <asm/system.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 37 | #include <mach/hardware.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 38 | #include <asm/irq.h> |
| 39 | #include <asm/leds.h> |
Colin Tuckley | 68c3d93 | 2008-11-10 14:10:11 +0000 | [diff] [blame] | 40 | #include <asm/mach-types.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 41 | #include <asm/hardware/arm_timer.h> |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame] | 42 | #include <asm/hardware/icst.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 43 | |
| 44 | #include <asm/mach/arch.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 45 | #include <asm/mach/irq.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 46 | #include <asm/mach/map.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 47 | |
| 48 | #include <asm/hardware/gic.h> |
| 49 | |
Catalin Marinas | ee8c957 | 2009-05-30 14:00:17 +0100 | [diff] [blame] | 50 | #include <mach/platform.h> |
| 51 | #include <mach/irqs.h> |
Rob Herring | 8a9618f | 2010-10-06 16:18:08 +0100 | [diff] [blame] | 52 | #include <asm/hardware/timer-sp.h> |
Catalin Marinas | ee8c957 | 2009-05-30 14:00:17 +0100 | [diff] [blame] | 53 | |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 54 | #include <plat/clcd.h> |
Russell King | 1da0c89 | 2010-12-15 21:56:47 +0000 | [diff] [blame] | 55 | #include <plat/sched_clock.h> |
| 56 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 57 | #include "core.h" |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 58 | |
Catalin Marinas | c97c5aa | 2009-11-04 12:19:05 +0000 | [diff] [blame] | 59 | #ifdef CONFIG_ZONE_DMA |
| 60 | /* |
| 61 | * Adjust the zones if there are restrictions for DMA access. |
| 62 | */ |
Russell King | b65b478 | 2010-05-22 20:58:51 +0100 | [diff] [blame] | 63 | void __init realview_adjust_zones(unsigned long *size, unsigned long *hole) |
Catalin Marinas | c97c5aa | 2009-11-04 12:19:05 +0000 | [diff] [blame] | 64 | { |
| 65 | unsigned long dma_size = SZ_256M >> PAGE_SHIFT; |
| 66 | |
Russell King | b65b478 | 2010-05-22 20:58:51 +0100 | [diff] [blame] | 67 | if (!machine_is_realview_pbx() || size[0] <= dma_size) |
Catalin Marinas | c97c5aa | 2009-11-04 12:19:05 +0000 | [diff] [blame] | 68 | return; |
| 69 | |
| 70 | size[ZONE_NORMAL] = size[0] - dma_size; |
| 71 | size[ZONE_DMA] = dma_size; |
| 72 | hole[ZONE_NORMAL] = hole[0]; |
| 73 | hole[ZONE_DMA] = 0; |
| 74 | } |
| 75 | #endif |
| 76 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 77 | |
| 78 | #define REALVIEW_FLASHCTRL (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_FLASH_OFFSET) |
| 79 | |
Marc Zyngier | 667f390 | 2011-05-18 10:51:55 +0100 | [diff] [blame^] | 80 | static void realview_flash_set_vpp(struct platform_device *pdev, int on) |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 81 | { |
| 82 | u32 val; |
| 83 | |
| 84 | val = __raw_readl(REALVIEW_FLASHCTRL); |
| 85 | if (on) |
| 86 | val |= REALVIEW_FLASHPROG_FLVPPEN; |
| 87 | else |
| 88 | val &= ~REALVIEW_FLASHPROG_FLVPPEN; |
| 89 | __raw_writel(val, REALVIEW_FLASHCTRL); |
| 90 | } |
| 91 | |
Marc Zyngier | b8b87ae | 2011-05-18 10:51:49 +0100 | [diff] [blame] | 92 | static struct physmap_flash_data realview_flash_data = { |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 93 | .width = 4, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 94 | .set_vpp = realview_flash_set_vpp, |
| 95 | }; |
| 96 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 97 | struct platform_device realview_flash_device = { |
Marc Zyngier | b8b87ae | 2011-05-18 10:51:49 +0100 | [diff] [blame] | 98 | .name = "physmap-flash", |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 99 | .id = 0, |
| 100 | .dev = { |
| 101 | .platform_data = &realview_flash_data, |
| 102 | }, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 103 | }; |
| 104 | |
Catalin Marinas | a44ddfd | 2008-04-18 22:43:10 +0100 | [diff] [blame] | 105 | int realview_flash_register(struct resource *res, u32 num) |
| 106 | { |
| 107 | realview_flash_device.resource = res; |
| 108 | realview_flash_device.num_resources = num; |
| 109 | return platform_device_register(&realview_flash_device); |
| 110 | } |
| 111 | |
Steve Glendinning | c5142e8 | 2009-01-20 13:23:30 +0000 | [diff] [blame] | 112 | static struct smsc911x_platform_config smsc911x_config = { |
| 113 | .flags = SMSC911X_USE_32BIT, |
| 114 | .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_HIGH, |
| 115 | .irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL, |
| 116 | .phy_interface = PHY_INTERFACE_MODE_MII, |
Catalin Marinas | 0a5b2f6 | 2008-12-01 14:54:59 +0000 | [diff] [blame] | 117 | }; |
| 118 | |
Catalin Marinas | 0a38133 | 2008-12-01 14:54:58 +0000 | [diff] [blame] | 119 | static struct platform_device realview_eth_device = { |
Steve Glendinning | c5142e8 | 2009-01-20 13:23:30 +0000 | [diff] [blame] | 120 | .name = "smsc911x", |
Catalin Marinas | 0a38133 | 2008-12-01 14:54:58 +0000 | [diff] [blame] | 121 | .id = 0, |
| 122 | .num_resources = 2, |
| 123 | }; |
| 124 | |
| 125 | int realview_eth_register(const char *name, struct resource *res) |
| 126 | { |
| 127 | if (name) |
| 128 | realview_eth_device.name = name; |
| 129 | realview_eth_device.resource = res; |
Steve Glendinning | c5142e8 | 2009-01-20 13:23:30 +0000 | [diff] [blame] | 130 | if (strcmp(realview_eth_device.name, "smsc911x") == 0) |
| 131 | realview_eth_device.dev.platform_data = &smsc911x_config; |
Catalin Marinas | 0a38133 | 2008-12-01 14:54:58 +0000 | [diff] [blame] | 132 | |
| 133 | return platform_device_register(&realview_eth_device); |
| 134 | } |
| 135 | |
Catalin Marinas | 7db2171 | 2009-02-12 16:00:21 +0100 | [diff] [blame] | 136 | struct platform_device realview_usb_device = { |
| 137 | .name = "isp1760", |
| 138 | .num_resources = 2, |
| 139 | }; |
| 140 | |
| 141 | int realview_usb_register(struct resource *res) |
| 142 | { |
| 143 | realview_usb_device.resource = res; |
| 144 | return platform_device_register(&realview_usb_device); |
| 145 | } |
| 146 | |
Catalin Marinas | 6be62ba | 2009-02-12 15:59:21 +0100 | [diff] [blame] | 147 | static struct pata_platform_info pata_platform_data = { |
| 148 | .ioport_shift = 1, |
| 149 | }; |
| 150 | |
| 151 | static struct resource pata_resources[] = { |
| 152 | [0] = { |
| 153 | .start = REALVIEW_CF_BASE, |
| 154 | .end = REALVIEW_CF_BASE + 0xff, |
| 155 | .flags = IORESOURCE_MEM, |
| 156 | }, |
| 157 | [1] = { |
| 158 | .start = REALVIEW_CF_BASE + 0x100, |
| 159 | .end = REALVIEW_CF_BASE + SZ_4K - 1, |
| 160 | .flags = IORESOURCE_MEM, |
| 161 | }, |
| 162 | }; |
| 163 | |
| 164 | struct platform_device realview_cf_device = { |
| 165 | .name = "pata_platform", |
| 166 | .id = -1, |
| 167 | .num_resources = ARRAY_SIZE(pata_resources), |
| 168 | .resource = pata_resources, |
| 169 | .dev = { |
| 170 | .platform_data = &pata_platform_data, |
| 171 | }, |
| 172 | }; |
| 173 | |
Russell King | 6b65cd7 | 2006-12-10 21:21:32 +0100 | [diff] [blame] | 174 | static struct resource realview_i2c_resource = { |
| 175 | .start = REALVIEW_I2C_BASE, |
| 176 | .end = REALVIEW_I2C_BASE + SZ_4K - 1, |
| 177 | .flags = IORESOURCE_MEM, |
| 178 | }; |
| 179 | |
| 180 | struct platform_device realview_i2c_device = { |
| 181 | .name = "versatile-i2c", |
Catalin Marinas | 533ad5e | 2009-02-12 15:58:20 +0100 | [diff] [blame] | 182 | .id = 0, |
Russell King | 6b65cd7 | 2006-12-10 21:21:32 +0100 | [diff] [blame] | 183 | .num_resources = 1, |
| 184 | .resource = &realview_i2c_resource, |
| 185 | }; |
| 186 | |
Catalin Marinas | 533ad5e | 2009-02-12 15:58:20 +0100 | [diff] [blame] | 187 | static struct i2c_board_info realview_i2c_board_info[] = { |
| 188 | { |
Russell King | 64e8be6 | 2009-07-18 15:51:55 +0100 | [diff] [blame] | 189 | I2C_BOARD_INFO("ds1338", 0xd0 >> 1), |
Catalin Marinas | 533ad5e | 2009-02-12 15:58:20 +0100 | [diff] [blame] | 190 | }, |
| 191 | }; |
| 192 | |
| 193 | static int __init realview_i2c_init(void) |
| 194 | { |
| 195 | return i2c_register_board_info(0, realview_i2c_board_info, |
| 196 | ARRAY_SIZE(realview_i2c_board_info)); |
| 197 | } |
| 198 | arch_initcall(realview_i2c_init); |
| 199 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 200 | #define REALVIEW_SYSMCI (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_MCI_OFFSET) |
| 201 | |
Russell King | 98b0979 | 2009-07-09 15:17:41 +0100 | [diff] [blame] | 202 | /* |
| 203 | * This is only used if GPIOLIB support is disabled |
| 204 | */ |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 205 | static unsigned int realview_mmc_status(struct device *dev) |
| 206 | { |
| 207 | struct amba_device *adev = container_of(dev, struct amba_device, dev); |
| 208 | u32 mask; |
| 209 | |
Linus Walleij | 48f1d5a | 2010-07-02 10:24:03 +0100 | [diff] [blame] | 210 | if (machine_is_realview_pb1176()) { |
| 211 | static bool inserted = false; |
| 212 | |
| 213 | /* |
| 214 | * The PB1176 does not have the status register, |
| 215 | * assume it is inserted at startup, then invert |
| 216 | * for each call so card insertion/removal will |
| 217 | * be detected anyway. This will not be called if |
| 218 | * GPIO on PL061 is active, which is the proper |
| 219 | * way to do this on the PB1176. |
| 220 | */ |
| 221 | inserted = !inserted; |
| 222 | return inserted ? 0 : 1; |
| 223 | } |
| 224 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 225 | if (adev->res.start == REALVIEW_MMCI0_BASE) |
| 226 | mask = 1; |
| 227 | else |
| 228 | mask = 2; |
| 229 | |
Russell King | 74bc809 | 2010-07-29 15:58:59 +0100 | [diff] [blame] | 230 | return readl(REALVIEW_SYSMCI) & mask; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 231 | } |
| 232 | |
Linus Walleij | 6ef297f | 2009-09-22 14:29:36 +0100 | [diff] [blame] | 233 | struct mmci_platform_data realview_mmc0_plat_data = { |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 234 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, |
| 235 | .status = realview_mmc_status, |
Russell King | 98b0979 | 2009-07-09 15:17:41 +0100 | [diff] [blame] | 236 | .gpio_wp = 17, |
| 237 | .gpio_cd = 16, |
Rabin Vincent | 2971944 | 2010-08-09 12:54:43 +0100 | [diff] [blame] | 238 | .cd_invert = true, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 239 | }; |
| 240 | |
Linus Walleij | 6ef297f | 2009-09-22 14:29:36 +0100 | [diff] [blame] | 241 | struct mmci_platform_data realview_mmc1_plat_data = { |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 242 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, |
| 243 | .status = realview_mmc_status, |
Russell King | 98b0979 | 2009-07-09 15:17:41 +0100 | [diff] [blame] | 244 | .gpio_wp = 19, |
| 245 | .gpio_cd = 18, |
Rabin Vincent | 2971944 | 2010-08-09 12:54:43 +0100 | [diff] [blame] | 246 | .cd_invert = true, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 247 | }; |
| 248 | |
| 249 | /* |
| 250 | * Clock handling |
| 251 | */ |
Russell King | 39c0cb0 | 2010-01-16 16:27:28 +0000 | [diff] [blame] | 252 | static const struct icst_params realview_oscvco_params = { |
Russell King | 64fceb1 | 2010-01-16 17:28:44 +0000 | [diff] [blame] | 253 | .ref = 24000000, |
Russell King | 4de2edb | 2010-01-16 18:08:47 +0000 | [diff] [blame] | 254 | .vco_max = ICST307_VCO_MAX, |
Russell King | e73a46a | 2010-01-16 19:49:39 +0000 | [diff] [blame] | 255 | .vco_min = ICST307_VCO_MIN, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 256 | .vd_min = 4 + 8, |
| 257 | .vd_max = 511 + 8, |
| 258 | .rd_min = 1 + 2, |
| 259 | .rd_max = 127 + 2, |
Russell King | 232eaf7 | 2010-01-16 19:46:19 +0000 | [diff] [blame] | 260 | .s2div = icst307_s2div, |
| 261 | .idx2s = icst307_idx2s, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 262 | }; |
| 263 | |
Russell King | 39c0cb0 | 2010-01-16 16:27:28 +0000 | [diff] [blame] | 264 | static void realview_oscvco_set(struct clk *clk, struct icst_vco vco) |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 265 | { |
| 266 | void __iomem *sys_lock = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_LOCK_OFFSET; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 267 | u32 val; |
| 268 | |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 269 | val = readl(clk->vcoreg) & ~0x7ffff; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 270 | val |= vco.v | (vco.r << 9) | (vco.s << 16); |
| 271 | |
| 272 | writel(0xa05f, sys_lock); |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 273 | writel(val, clk->vcoreg); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 274 | writel(0, sys_lock); |
| 275 | } |
| 276 | |
Russell King | 9bf5b2e | 2010-03-01 16:18:39 +0000 | [diff] [blame] | 277 | static const struct clk_ops oscvco_clk_ops = { |
| 278 | .round = icst_clk_round, |
| 279 | .set = icst_clk_set, |
| 280 | .setvco = realview_oscvco_set, |
| 281 | }; |
| 282 | |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 283 | static struct clk oscvco_clk = { |
Russell King | 9bf5b2e | 2010-03-01 16:18:39 +0000 | [diff] [blame] | 284 | .ops = &oscvco_clk_ops, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 285 | .params = &realview_oscvco_params, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 286 | }; |
| 287 | |
| 288 | /* |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 289 | * These are fixed clocks. |
| 290 | */ |
| 291 | static struct clk ref24_clk = { |
| 292 | .rate = 24000000, |
| 293 | }; |
| 294 | |
Russell King | 3126c7b | 2010-07-15 11:01:17 +0100 | [diff] [blame] | 295 | static struct clk dummy_apb_pclk; |
| 296 | |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 297 | static struct clk_lookup lookups[] = { |
Russell King | 3126c7b | 2010-07-15 11:01:17 +0100 | [diff] [blame] | 298 | { /* Bus clock */ |
| 299 | .con_id = "apb_pclk", |
| 300 | .clk = &dummy_apb_pclk, |
| 301 | }, { /* UART0 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 302 | .dev_id = "dev:uart0", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 303 | .clk = &ref24_clk, |
| 304 | }, { /* UART1 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 305 | .dev_id = "dev:uart1", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 306 | .clk = &ref24_clk, |
| 307 | }, { /* UART2 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 308 | .dev_id = "dev:uart2", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 309 | .clk = &ref24_clk, |
| 310 | }, { /* UART3 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 311 | .dev_id = "fpga:uart3", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 312 | .clk = &ref24_clk, |
Linus Walleij | 48f1d5a | 2010-07-02 10:24:03 +0100 | [diff] [blame] | 313 | }, { /* UART3 is on the dev chip in PB1176 */ |
| 314 | .dev_id = "dev:uart3", |
| 315 | .clk = &ref24_clk, |
| 316 | }, { /* UART4 only exists in PB1176 */ |
| 317 | .dev_id = "fpga:uart4", |
| 318 | .clk = &ref24_clk, |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 319 | }, { /* KMI0 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 320 | .dev_id = "fpga:kmi0", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 321 | .clk = &ref24_clk, |
| 322 | }, { /* KMI1 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 323 | .dev_id = "fpga:kmi1", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 324 | .clk = &ref24_clk, |
| 325 | }, { /* MMC0 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 326 | .dev_id = "fpga:mmc0", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 327 | .clk = &ref24_clk, |
Linus Walleij | 48f1d5a | 2010-07-02 10:24:03 +0100 | [diff] [blame] | 328 | }, { /* CLCD is in the PB1176 and EB DevChip */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 329 | .dev_id = "dev:clcd", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 330 | .clk = &oscvco_clk, |
| 331 | }, { /* PB:CLCD */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 332 | .dev_id = "issp:clcd", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 333 | .clk = &oscvco_clk, |
Linus Walleij | d6ada86 | 2010-07-14 23:58:38 +0100 | [diff] [blame] | 334 | }, { /* SSP */ |
| 335 | .dev_id = "dev:ssp0", |
| 336 | .clk = &ref24_clk, |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 337 | } |
| 338 | }; |
| 339 | |
Russell King | 631e55f | 2011-01-11 13:05:01 +0000 | [diff] [blame] | 340 | void __init realview_init_early(void) |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 341 | { |
Russell King | 631e55f | 2011-01-11 13:05:01 +0000 | [diff] [blame] | 342 | void __iomem *sys = __io_address(REALVIEW_SYS_BASE); |
| 343 | |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 344 | if (machine_is_realview_pb1176()) |
Russell King | 631e55f | 2011-01-11 13:05:01 +0000 | [diff] [blame] | 345 | oscvco_clk.vcoreg = sys + REALVIEW_SYS_OSC0_OFFSET; |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 346 | else |
Russell King | 631e55f | 2011-01-11 13:05:01 +0000 | [diff] [blame] | 347 | oscvco_clk.vcoreg = sys + REALVIEW_SYS_OSC4_OFFSET; |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 348 | |
Russell King | 0a0300d | 2010-01-12 12:28:00 +0000 | [diff] [blame] | 349 | clkdev_add_table(lookups, ARRAY_SIZE(lookups)); |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 350 | |
Russell King | 631e55f | 2011-01-11 13:05:01 +0000 | [diff] [blame] | 351 | versatile_sched_clock_init(sys + REALVIEW_SYS_24MHz_OFFSET, 24000000); |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 352 | } |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 353 | |
| 354 | /* |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 355 | * CLCD support. |
| 356 | */ |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 357 | #define SYS_CLCD_NLCDIOON (1 << 2) |
| 358 | #define SYS_CLCD_VDDPOSSWITCH (1 << 3) |
| 359 | #define SYS_CLCD_PWR3V5SWITCH (1 << 4) |
| 360 | #define SYS_CLCD_ID_MASK (0x1f << 8) |
| 361 | #define SYS_CLCD_ID_SANYO_3_8 (0x00 << 8) |
| 362 | #define SYS_CLCD_ID_UNKNOWN_8_4 (0x01 << 8) |
| 363 | #define SYS_CLCD_ID_EPSON_2_2 (0x02 << 8) |
| 364 | #define SYS_CLCD_ID_SANYO_2_5 (0x07 << 8) |
| 365 | #define SYS_CLCD_ID_VGA (0x1f << 8) |
| 366 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 367 | /* |
| 368 | * Disable all display connectors on the interface module. |
| 369 | */ |
| 370 | static void realview_clcd_disable(struct clcd_fb *fb) |
| 371 | { |
| 372 | void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET; |
| 373 | u32 val; |
| 374 | |
| 375 | val = readl(sys_clcd); |
| 376 | val &= ~SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH; |
| 377 | writel(val, sys_clcd); |
| 378 | } |
| 379 | |
| 380 | /* |
| 381 | * Enable the relevant connector on the interface module. |
| 382 | */ |
| 383 | static void realview_clcd_enable(struct clcd_fb *fb) |
| 384 | { |
| 385 | void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET; |
| 386 | u32 val; |
| 387 | |
Catalin Marinas | 9e7714d | 2006-03-16 14:10:20 +0000 | [diff] [blame] | 388 | /* |
| 389 | * Enable the PSUs |
| 390 | */ |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 391 | val = readl(sys_clcd); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 392 | val |= SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH; |
| 393 | writel(val, sys_clcd); |
| 394 | } |
| 395 | |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 396 | /* |
| 397 | * Detect which LCD panel is connected, and return the appropriate |
| 398 | * clcd_panel structure. Note: we do not have any information on |
| 399 | * the required timings for the 8.4in panel, so we presently assume |
| 400 | * VGA timings. |
| 401 | */ |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 402 | static int realview_clcd_setup(struct clcd_fb *fb) |
| 403 | { |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 404 | void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET; |
| 405 | const char *panel_name, *vga_panel_name; |
Colin Tuckley | c34a102 | 2008-11-10 14:10:12 +0000 | [diff] [blame] | 406 | unsigned long framesize; |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 407 | u32 val; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 408 | |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 409 | if (machine_is_realview_eb()) { |
Colin Tuckley | c34a102 | 2008-11-10 14:10:12 +0000 | [diff] [blame] | 410 | /* VGA, 16bpp */ |
| 411 | framesize = 640 * 480 * 2; |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 412 | vga_panel_name = "VGA"; |
| 413 | } else { |
Colin Tuckley | c34a102 | 2008-11-10 14:10:12 +0000 | [diff] [blame] | 414 | /* XVGA, 16bpp */ |
| 415 | framesize = 1024 * 768 * 2; |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 416 | vga_panel_name = "XVGA"; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 417 | } |
| 418 | |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 419 | val = readl(sys_clcd) & SYS_CLCD_ID_MASK; |
| 420 | if (val == SYS_CLCD_ID_SANYO_3_8) |
| 421 | panel_name = "Sanyo TM38QV67A02A"; |
| 422 | else if (val == SYS_CLCD_ID_SANYO_2_5) |
| 423 | panel_name = "Sanyo QVGA Portrait"; |
| 424 | else if (val == SYS_CLCD_ID_EPSON_2_2) |
| 425 | panel_name = "Epson L2F50113T00"; |
| 426 | else if (val == SYS_CLCD_ID_VGA) |
| 427 | panel_name = vga_panel_name; |
| 428 | else { |
| 429 | pr_err("CLCD: unknown LCD panel ID 0x%08x, using VGA\n", val); |
| 430 | panel_name = vga_panel_name; |
| 431 | } |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 432 | |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 433 | fb->panel = versatile_clcd_get_panel(panel_name); |
| 434 | if (!fb->panel) |
| 435 | return -EINVAL; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 436 | |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 437 | return versatile_clcd_setup_dma(fb, framesize); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 438 | } |
| 439 | |
| 440 | struct clcd_board clcd_plat_data = { |
| 441 | .name = "RealView", |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 442 | .caps = CLCD_CAP_ALL, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 443 | .check = clcdfb_check, |
| 444 | .decode = clcdfb_decode, |
| 445 | .disable = realview_clcd_disable, |
| 446 | .enable = realview_clcd_enable, |
| 447 | .setup = realview_clcd_setup, |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 448 | .mmap = versatile_clcd_mmap_dma, |
| 449 | .remove = versatile_clcd_remove_dma, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 450 | }; |
| 451 | |
| 452 | #ifdef CONFIG_LEDS |
| 453 | #define VA_LEDS_BASE (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_LED_OFFSET) |
| 454 | |
| 455 | void realview_leds_event(led_event_t ledevt) |
| 456 | { |
| 457 | unsigned long flags; |
| 458 | u32 val; |
Catalin Marinas | da055eb | 2009-05-30 13:56:16 +0100 | [diff] [blame] | 459 | u32 led = 1 << smp_processor_id(); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 460 | |
| 461 | local_irq_save(flags); |
| 462 | val = readl(VA_LEDS_BASE); |
| 463 | |
| 464 | switch (ledevt) { |
| 465 | case led_idle_start: |
Catalin Marinas | da055eb | 2009-05-30 13:56:16 +0100 | [diff] [blame] | 466 | val = val & ~led; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 467 | break; |
| 468 | |
| 469 | case led_idle_end: |
Catalin Marinas | da055eb | 2009-05-30 13:56:16 +0100 | [diff] [blame] | 470 | val = val | led; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 471 | break; |
| 472 | |
| 473 | case led_timer: |
Catalin Marinas | da055eb | 2009-05-30 13:56:16 +0100 | [diff] [blame] | 474 | val = val ^ REALVIEW_SYS_LED7; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 475 | break; |
| 476 | |
| 477 | case led_halted: |
| 478 | val = 0; |
| 479 | break; |
| 480 | |
| 481 | default: |
| 482 | break; |
| 483 | } |
| 484 | |
| 485 | writel(val, VA_LEDS_BASE); |
| 486 | local_irq_restore(flags); |
| 487 | } |
| 488 | #endif /* CONFIG_LEDS */ |
| 489 | |
| 490 | /* |
| 491 | * Where is the timer (VA)? |
| 492 | */ |
Catalin Marinas | 8019273 | 2008-04-18 22:43:11 +0100 | [diff] [blame] | 493 | void __iomem *timer0_va_base; |
| 494 | void __iomem *timer1_va_base; |
| 495 | void __iomem *timer2_va_base; |
| 496 | void __iomem *timer3_va_base; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 497 | |
| 498 | /* |
Catalin Marinas | a8655e8 | 2008-02-04 17:30:57 +0100 | [diff] [blame] | 499 | * Set up the clock source and clock events devices |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 500 | */ |
Catalin Marinas | 8cc4c54 | 2008-02-04 17:43:02 +0100 | [diff] [blame] | 501 | void __init realview_timer_init(unsigned int timer_irq) |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 502 | { |
| 503 | u32 val; |
| 504 | |
| 505 | /* |
| 506 | * set clock frequency: |
| 507 | * REALVIEW_REFCLK is 32KHz |
| 508 | * REALVIEW_TIMCLK is 1MHz |
| 509 | */ |
| 510 | val = readl(__io_address(REALVIEW_SCTL_BASE)); |
| 511 | writel((REALVIEW_TIMCLK << REALVIEW_TIMER1_EnSel) | |
| 512 | (REALVIEW_TIMCLK << REALVIEW_TIMER2_EnSel) | |
| 513 | (REALVIEW_TIMCLK << REALVIEW_TIMER3_EnSel) | |
| 514 | (REALVIEW_TIMCLK << REALVIEW_TIMER4_EnSel) | val, |
| 515 | __io_address(REALVIEW_SCTL_BASE)); |
| 516 | |
| 517 | /* |
| 518 | * Initialise to a known state (all timers off) |
| 519 | */ |
Catalin Marinas | 8019273 | 2008-04-18 22:43:11 +0100 | [diff] [blame] | 520 | writel(0, timer0_va_base + TIMER_CTRL); |
| 521 | writel(0, timer1_va_base + TIMER_CTRL); |
| 522 | writel(0, timer2_va_base + TIMER_CTRL); |
| 523 | writel(0, timer3_va_base + TIMER_CTRL); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 524 | |
Russell King | e388771 | 2010-01-14 13:30:16 +0000 | [diff] [blame] | 525 | sp804_clocksource_init(timer3_va_base); |
| 526 | sp804_clockevents_init(timer0_va_base, timer_irq); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 527 | } |
Catalin Marinas | 5b39d15 | 2009-11-04 12:19:04 +0000 | [diff] [blame] | 528 | |
| 529 | /* |
| 530 | * Setup the memory banks. |
| 531 | */ |
| 532 | void realview_fixup(struct machine_desc *mdesc, struct tag *tags, char **from, |
| 533 | struct meminfo *meminfo) |
| 534 | { |
| 535 | /* |
| 536 | * Most RealView platforms have 512MB contiguous RAM at 0x70000000. |
| 537 | * Half of this is mirrored at 0. |
| 538 | */ |
| 539 | #ifdef CONFIG_REALVIEW_HIGH_PHYS_OFFSET |
| 540 | meminfo->bank[0].start = 0x70000000; |
| 541 | meminfo->bank[0].size = SZ_512M; |
| 542 | meminfo->nr_banks = 1; |
| 543 | #else |
| 544 | meminfo->bank[0].start = 0; |
| 545 | meminfo->bank[0].size = SZ_256M; |
| 546 | meminfo->nr_banks = 1; |
| 547 | #endif |
| 548 | } |