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> |
Kay Sievers | edbaa60 | 2011-12-21 16:26:03 -0800 | [diff] [blame] | 24 | #include <linux/device.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 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> |
Linus Walleij | 11c32d7 | 2014-05-22 23:25:14 +0200 | [diff] [blame] | 28 | #include <linux/platform_data/video-clcd-versatile.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 29 | #include <linux/io.h> |
Steve Glendinning | c5142e8 | 2009-01-20 13:23:30 +0000 | [diff] [blame] | 30 | #include <linux/smsc911x.h> |
Arnd Bergmann | b70661c | 2015-02-25 16:31:57 +0100 | [diff] [blame] | 31 | #include <linux/smc91x.h> |
Catalin Marinas | 6be62ba | 2009-02-12 15:59:21 +0100 | [diff] [blame] | 32 | #include <linux/ata_platform.h> |
Linus Walleij | 6ef297f | 2009-09-22 14:29:36 +0100 | [diff] [blame] | 33 | #include <linux/amba/mmci.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/gfp.h> |
Marc Zyngier | b8b87ae | 2011-05-18 10:51:49 +0100 | [diff] [blame] | 35 | #include <linux/mtd/physmap.h> |
Laura Abbott | 1c2f87c | 2014-04-13 22:54:58 +0100 | [diff] [blame] | 36 | #include <linux/memblock.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 37 | |
Sudeep Holla | 0b7402d | 2015-05-18 16:29:40 +0100 | [diff] [blame] | 38 | #include <clocksource/timer-sp804.h> |
Arnd Bergmann | 6d407a6 | 2015-11-25 17:32:22 +0100 | [diff] [blame] | 39 | #include "hardware.h" |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 40 | #include <asm/irq.h> |
Colin Tuckley | 68c3d93 | 2008-11-10 14:10:11 +0000 | [diff] [blame] | 41 | #include <asm/mach-types.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 | |
Arnd Bergmann | 6d407a6 | 2015-11-25 17:32:22 +0100 | [diff] [blame] | 48 | #include "platform.h" |
Catalin Marinas | ee8c957 | 2009-05-30 14:00:17 +0100 | [diff] [blame] | 49 | |
Russell King | 1da0c89 | 2010-12-15 21:56:47 +0000 | [diff] [blame] | 50 | #include <plat/sched_clock.h> |
| 51 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 52 | #include "core.h" |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 53 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 54 | #define REALVIEW_FLASHCTRL (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_FLASH_OFFSET) |
| 55 | |
Marc Zyngier | 667f390 | 2011-05-18 10:51:55 +0100 | [diff] [blame] | 56 | static void realview_flash_set_vpp(struct platform_device *pdev, int on) |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 57 | { |
| 58 | u32 val; |
| 59 | |
| 60 | val = __raw_readl(REALVIEW_FLASHCTRL); |
| 61 | if (on) |
| 62 | val |= REALVIEW_FLASHPROG_FLVPPEN; |
| 63 | else |
| 64 | val &= ~REALVIEW_FLASHPROG_FLVPPEN; |
| 65 | __raw_writel(val, REALVIEW_FLASHCTRL); |
| 66 | } |
| 67 | |
Marc Zyngier | b8b87ae | 2011-05-18 10:51:49 +0100 | [diff] [blame] | 68 | static struct physmap_flash_data realview_flash_data = { |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 69 | .width = 4, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 70 | .set_vpp = realview_flash_set_vpp, |
| 71 | }; |
| 72 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 73 | struct platform_device realview_flash_device = { |
Marc Zyngier | b8b87ae | 2011-05-18 10:51:49 +0100 | [diff] [blame] | 74 | .name = "physmap-flash", |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 75 | .id = 0, |
| 76 | .dev = { |
| 77 | .platform_data = &realview_flash_data, |
| 78 | }, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 79 | }; |
| 80 | |
Catalin Marinas | a44ddfd | 2008-04-18 22:43:10 +0100 | [diff] [blame] | 81 | int realview_flash_register(struct resource *res, u32 num) |
| 82 | { |
| 83 | realview_flash_device.resource = res; |
| 84 | realview_flash_device.num_resources = num; |
| 85 | return platform_device_register(&realview_flash_device); |
| 86 | } |
| 87 | |
Steve Glendinning | c5142e8 | 2009-01-20 13:23:30 +0000 | [diff] [blame] | 88 | static struct smsc911x_platform_config smsc911x_config = { |
| 89 | .flags = SMSC911X_USE_32BIT, |
| 90 | .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_HIGH, |
| 91 | .irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL, |
| 92 | .phy_interface = PHY_INTERFACE_MODE_MII, |
Catalin Marinas | 0a5b2f6 | 2008-12-01 14:54:59 +0000 | [diff] [blame] | 93 | }; |
| 94 | |
Arnd Bergmann | b70661c | 2015-02-25 16:31:57 +0100 | [diff] [blame] | 95 | static struct smc91x_platdata smc91x_platdata = { |
| 96 | .flags = SMC91X_USE_32BIT | SMC91X_NOWAIT, |
| 97 | }; |
| 98 | |
Catalin Marinas | 0a38133 | 2008-12-01 14:54:58 +0000 | [diff] [blame] | 99 | static struct platform_device realview_eth_device = { |
Steve Glendinning | c5142e8 | 2009-01-20 13:23:30 +0000 | [diff] [blame] | 100 | .name = "smsc911x", |
Catalin Marinas | 0a38133 | 2008-12-01 14:54:58 +0000 | [diff] [blame] | 101 | .id = 0, |
| 102 | .num_resources = 2, |
| 103 | }; |
| 104 | |
| 105 | int realview_eth_register(const char *name, struct resource *res) |
| 106 | { |
| 107 | if (name) |
| 108 | realview_eth_device.name = name; |
| 109 | realview_eth_device.resource = res; |
Steve Glendinning | c5142e8 | 2009-01-20 13:23:30 +0000 | [diff] [blame] | 110 | if (strcmp(realview_eth_device.name, "smsc911x") == 0) |
| 111 | realview_eth_device.dev.platform_data = &smsc911x_config; |
Arnd Bergmann | b70661c | 2015-02-25 16:31:57 +0100 | [diff] [blame] | 112 | else |
| 113 | realview_eth_device.dev.platform_data = &smc91x_platdata; |
Catalin Marinas | 0a38133 | 2008-12-01 14:54:58 +0000 | [diff] [blame] | 114 | |
| 115 | return platform_device_register(&realview_eth_device); |
| 116 | } |
| 117 | |
Catalin Marinas | 7db2171 | 2009-02-12 16:00:21 +0100 | [diff] [blame] | 118 | struct platform_device realview_usb_device = { |
| 119 | .name = "isp1760", |
| 120 | .num_resources = 2, |
| 121 | }; |
| 122 | |
| 123 | int realview_usb_register(struct resource *res) |
| 124 | { |
| 125 | realview_usb_device.resource = res; |
| 126 | return platform_device_register(&realview_usb_device); |
| 127 | } |
| 128 | |
Catalin Marinas | 6be62ba | 2009-02-12 15:59:21 +0100 | [diff] [blame] | 129 | static struct pata_platform_info pata_platform_data = { |
| 130 | .ioport_shift = 1, |
| 131 | }; |
| 132 | |
| 133 | static struct resource pata_resources[] = { |
| 134 | [0] = { |
| 135 | .start = REALVIEW_CF_BASE, |
| 136 | .end = REALVIEW_CF_BASE + 0xff, |
| 137 | .flags = IORESOURCE_MEM, |
| 138 | }, |
| 139 | [1] = { |
| 140 | .start = REALVIEW_CF_BASE + 0x100, |
| 141 | .end = REALVIEW_CF_BASE + SZ_4K - 1, |
| 142 | .flags = IORESOURCE_MEM, |
| 143 | }, |
| 144 | }; |
| 145 | |
| 146 | struct platform_device realview_cf_device = { |
| 147 | .name = "pata_platform", |
| 148 | .id = -1, |
| 149 | .num_resources = ARRAY_SIZE(pata_resources), |
| 150 | .resource = pata_resources, |
| 151 | .dev = { |
| 152 | .platform_data = &pata_platform_data, |
| 153 | }, |
| 154 | }; |
| 155 | |
Linus Walleij | e4ecf2b | 2014-02-27 14:29:22 +0100 | [diff] [blame] | 156 | static struct resource realview_leds_resources[] = { |
| 157 | { |
| 158 | .start = REALVIEW_SYS_BASE + REALVIEW_SYS_LED_OFFSET, |
| 159 | .end = REALVIEW_SYS_BASE + REALVIEW_SYS_LED_OFFSET + 4, |
| 160 | .flags = IORESOURCE_MEM, |
| 161 | }, |
| 162 | }; |
| 163 | |
| 164 | struct platform_device realview_leds_device = { |
| 165 | .name = "versatile-leds", |
| 166 | .id = -1, |
| 167 | .num_resources = ARRAY_SIZE(realview_leds_resources), |
| 168 | .resource = realview_leds_resources, |
| 169 | }; |
| 170 | |
Russell King | 6b65cd7 | 2006-12-10 21:21:32 +0100 | [diff] [blame] | 171 | static struct resource realview_i2c_resource = { |
| 172 | .start = REALVIEW_I2C_BASE, |
| 173 | .end = REALVIEW_I2C_BASE + SZ_4K - 1, |
| 174 | .flags = IORESOURCE_MEM, |
| 175 | }; |
| 176 | |
| 177 | struct platform_device realview_i2c_device = { |
| 178 | .name = "versatile-i2c", |
Catalin Marinas | 533ad5e | 2009-02-12 15:58:20 +0100 | [diff] [blame] | 179 | .id = 0, |
Russell King | 6b65cd7 | 2006-12-10 21:21:32 +0100 | [diff] [blame] | 180 | .num_resources = 1, |
| 181 | .resource = &realview_i2c_resource, |
| 182 | }; |
| 183 | |
Catalin Marinas | 533ad5e | 2009-02-12 15:58:20 +0100 | [diff] [blame] | 184 | static struct i2c_board_info realview_i2c_board_info[] = { |
| 185 | { |
Russell King | 64e8be6 | 2009-07-18 15:51:55 +0100 | [diff] [blame] | 186 | I2C_BOARD_INFO("ds1338", 0xd0 >> 1), |
Catalin Marinas | 533ad5e | 2009-02-12 15:58:20 +0100 | [diff] [blame] | 187 | }, |
| 188 | }; |
| 189 | |
| 190 | static int __init realview_i2c_init(void) |
| 191 | { |
| 192 | return i2c_register_board_info(0, realview_i2c_board_info, |
| 193 | ARRAY_SIZE(realview_i2c_board_info)); |
| 194 | } |
| 195 | arch_initcall(realview_i2c_init); |
| 196 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 197 | #define REALVIEW_SYSMCI (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_MCI_OFFSET) |
| 198 | |
Russell King | 98b0979 | 2009-07-09 15:17:41 +0100 | [diff] [blame] | 199 | /* |
| 200 | * This is only used if GPIOLIB support is disabled |
| 201 | */ |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 202 | static unsigned int realview_mmc_status(struct device *dev) |
| 203 | { |
| 204 | struct amba_device *adev = container_of(dev, struct amba_device, dev); |
| 205 | u32 mask; |
| 206 | |
Linus Walleij | 48f1d5a | 2010-07-02 10:24:03 +0100 | [diff] [blame] | 207 | if (machine_is_realview_pb1176()) { |
| 208 | static bool inserted = false; |
| 209 | |
| 210 | /* |
| 211 | * The PB1176 does not have the status register, |
| 212 | * assume it is inserted at startup, then invert |
| 213 | * for each call so card insertion/removal will |
| 214 | * be detected anyway. This will not be called if |
| 215 | * GPIO on PL061 is active, which is the proper |
| 216 | * way to do this on the PB1176. |
| 217 | */ |
| 218 | inserted = !inserted; |
| 219 | return inserted ? 0 : 1; |
| 220 | } |
| 221 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 222 | if (adev->res.start == REALVIEW_MMCI0_BASE) |
| 223 | mask = 1; |
| 224 | else |
| 225 | mask = 2; |
| 226 | |
Russell King | 74bc809 | 2010-07-29 15:58:59 +0100 | [diff] [blame] | 227 | return readl(REALVIEW_SYSMCI) & mask; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 228 | } |
| 229 | |
Linus Walleij | 6ef297f | 2009-09-22 14:29:36 +0100 | [diff] [blame] | 230 | struct mmci_platform_data realview_mmc0_plat_data = { |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 231 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, |
| 232 | .status = realview_mmc_status, |
Russell King | 98b0979 | 2009-07-09 15:17:41 +0100 | [diff] [blame] | 233 | .gpio_wp = 17, |
| 234 | .gpio_cd = 16, |
Rabin Vincent | 2971944 | 2010-08-09 12:54:43 +0100 | [diff] [blame] | 235 | .cd_invert = true, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 236 | }; |
| 237 | |
Linus Walleij | 6ef297f | 2009-09-22 14:29:36 +0100 | [diff] [blame] | 238 | struct mmci_platform_data realview_mmc1_plat_data = { |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 239 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, |
| 240 | .status = realview_mmc_status, |
Russell King | 98b0979 | 2009-07-09 15:17:41 +0100 | [diff] [blame] | 241 | .gpio_wp = 19, |
| 242 | .gpio_cd = 18, |
Rabin Vincent | 2971944 | 2010-08-09 12:54:43 +0100 | [diff] [blame] | 243 | .cd_invert = true, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 244 | }; |
| 245 | |
Russell King | 631e55f | 2011-01-11 13:05:01 +0000 | [diff] [blame] | 246 | void __init realview_init_early(void) |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 247 | { |
Russell King | 631e55f | 2011-01-11 13:05:01 +0000 | [diff] [blame] | 248 | void __iomem *sys = __io_address(REALVIEW_SYS_BASE); |
| 249 | |
Russell King | 631e55f | 2011-01-11 13:05:01 +0000 | [diff] [blame] | 250 | versatile_sched_clock_init(sys + REALVIEW_SYS_24MHz_OFFSET, 24000000); |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 251 | } |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 252 | |
| 253 | /* |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 254 | * CLCD support. |
| 255 | */ |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 256 | #define SYS_CLCD_NLCDIOON (1 << 2) |
| 257 | #define SYS_CLCD_VDDPOSSWITCH (1 << 3) |
| 258 | #define SYS_CLCD_PWR3V5SWITCH (1 << 4) |
| 259 | #define SYS_CLCD_ID_MASK (0x1f << 8) |
| 260 | #define SYS_CLCD_ID_SANYO_3_8 (0x00 << 8) |
| 261 | #define SYS_CLCD_ID_UNKNOWN_8_4 (0x01 << 8) |
| 262 | #define SYS_CLCD_ID_EPSON_2_2 (0x02 << 8) |
| 263 | #define SYS_CLCD_ID_SANYO_2_5 (0x07 << 8) |
| 264 | #define SYS_CLCD_ID_VGA (0x1f << 8) |
| 265 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 266 | /* |
| 267 | * Disable all display connectors on the interface module. |
| 268 | */ |
| 269 | static void realview_clcd_disable(struct clcd_fb *fb) |
| 270 | { |
| 271 | void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET; |
| 272 | u32 val; |
| 273 | |
| 274 | val = readl(sys_clcd); |
| 275 | val &= ~SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH; |
| 276 | writel(val, sys_clcd); |
| 277 | } |
| 278 | |
| 279 | /* |
| 280 | * Enable the relevant connector on the interface module. |
| 281 | */ |
| 282 | static void realview_clcd_enable(struct clcd_fb *fb) |
| 283 | { |
| 284 | void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET; |
| 285 | u32 val; |
| 286 | |
Catalin Marinas | 9e7714d | 2006-03-16 14:10:20 +0000 | [diff] [blame] | 287 | /* |
| 288 | * Enable the PSUs |
| 289 | */ |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 290 | val = readl(sys_clcd); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 291 | val |= SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH; |
| 292 | writel(val, sys_clcd); |
| 293 | } |
| 294 | |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 295 | /* |
| 296 | * Detect which LCD panel is connected, and return the appropriate |
| 297 | * clcd_panel structure. Note: we do not have any information on |
| 298 | * the required timings for the 8.4in panel, so we presently assume |
| 299 | * VGA timings. |
| 300 | */ |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 301 | static int realview_clcd_setup(struct clcd_fb *fb) |
| 302 | { |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 303 | void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET; |
| 304 | const char *panel_name, *vga_panel_name; |
Colin Tuckley | c34a102 | 2008-11-10 14:10:12 +0000 | [diff] [blame] | 305 | unsigned long framesize; |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 306 | u32 val; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 307 | |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 308 | if (machine_is_realview_eb()) { |
Colin Tuckley | c34a102 | 2008-11-10 14:10:12 +0000 | [diff] [blame] | 309 | /* VGA, 16bpp */ |
| 310 | framesize = 640 * 480 * 2; |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 311 | vga_panel_name = "VGA"; |
| 312 | } else { |
Colin Tuckley | c34a102 | 2008-11-10 14:10:12 +0000 | [diff] [blame] | 313 | /* XVGA, 16bpp */ |
| 314 | framesize = 1024 * 768 * 2; |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 315 | vga_panel_name = "XVGA"; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 316 | } |
| 317 | |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 318 | val = readl(sys_clcd) & SYS_CLCD_ID_MASK; |
| 319 | if (val == SYS_CLCD_ID_SANYO_3_8) |
| 320 | panel_name = "Sanyo TM38QV67A02A"; |
| 321 | else if (val == SYS_CLCD_ID_SANYO_2_5) |
| 322 | panel_name = "Sanyo QVGA Portrait"; |
| 323 | else if (val == SYS_CLCD_ID_EPSON_2_2) |
| 324 | panel_name = "Epson L2F50113T00"; |
| 325 | else if (val == SYS_CLCD_ID_VGA) |
| 326 | panel_name = vga_panel_name; |
| 327 | else { |
| 328 | pr_err("CLCD: unknown LCD panel ID 0x%08x, using VGA\n", val); |
| 329 | panel_name = vga_panel_name; |
| 330 | } |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 331 | |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 332 | fb->panel = versatile_clcd_get_panel(panel_name); |
| 333 | if (!fb->panel) |
| 334 | return -EINVAL; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 335 | |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 336 | return versatile_clcd_setup_dma(fb, framesize); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | struct clcd_board clcd_plat_data = { |
| 340 | .name = "RealView", |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 341 | .caps = CLCD_CAP_ALL, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 342 | .check = clcdfb_check, |
| 343 | .decode = clcdfb_decode, |
| 344 | .disable = realview_clcd_disable, |
| 345 | .enable = realview_clcd_enable, |
| 346 | .setup = realview_clcd_setup, |
Russell King | 3cb5ee4 | 2011-01-18 20:13:20 +0000 | [diff] [blame] | 347 | .mmap = versatile_clcd_mmap_dma, |
| 348 | .remove = versatile_clcd_remove_dma, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 349 | }; |
| 350 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 351 | /* |
| 352 | * Where is the timer (VA)? |
| 353 | */ |
Catalin Marinas | 8019273 | 2008-04-18 22:43:11 +0100 | [diff] [blame] | 354 | void __iomem *timer0_va_base; |
| 355 | void __iomem *timer1_va_base; |
| 356 | void __iomem *timer2_va_base; |
| 357 | void __iomem *timer3_va_base; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 358 | |
| 359 | /* |
Catalin Marinas | a8655e8 | 2008-02-04 17:30:57 +0100 | [diff] [blame] | 360 | * Set up the clock source and clock events devices |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 361 | */ |
Catalin Marinas | 8cc4c54 | 2008-02-04 17:43:02 +0100 | [diff] [blame] | 362 | void __init realview_timer_init(unsigned int timer_irq) |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 363 | { |
| 364 | u32 val; |
| 365 | |
| 366 | /* |
| 367 | * set clock frequency: |
| 368 | * REALVIEW_REFCLK is 32KHz |
| 369 | * REALVIEW_TIMCLK is 1MHz |
| 370 | */ |
| 371 | val = readl(__io_address(REALVIEW_SCTL_BASE)); |
| 372 | writel((REALVIEW_TIMCLK << REALVIEW_TIMER1_EnSel) | |
| 373 | (REALVIEW_TIMCLK << REALVIEW_TIMER2_EnSel) | |
| 374 | (REALVIEW_TIMCLK << REALVIEW_TIMER3_EnSel) | |
| 375 | (REALVIEW_TIMCLK << REALVIEW_TIMER4_EnSel) | val, |
| 376 | __io_address(REALVIEW_SCTL_BASE)); |
| 377 | |
| 378 | /* |
| 379 | * Initialise to a known state (all timers off) |
| 380 | */ |
Sudeep Holla | 1e5f051 | 2015-05-18 16:29:04 +0100 | [diff] [blame] | 381 | sp804_timer_disable(timer0_va_base); |
| 382 | sp804_timer_disable(timer1_va_base); |
| 383 | sp804_timer_disable(timer2_va_base); |
| 384 | sp804_timer_disable(timer3_va_base); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 385 | |
Russell King | fb593cf | 2011-05-12 12:08:23 +0100 | [diff] [blame] | 386 | sp804_clocksource_init(timer3_va_base, "timer3"); |
Russell King | 57cc4f7 | 2011-05-12 15:31:13 +0100 | [diff] [blame] | 387 | sp804_clockevents_init(timer0_va_base, timer_irq, "timer0"); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 388 | } |
Catalin Marinas | 5b39d15 | 2009-11-04 12:19:04 +0000 | [diff] [blame] | 389 | |
| 390 | /* |
| 391 | * Setup the memory banks. |
| 392 | */ |
Laura Abbott | 1c2f87c | 2014-04-13 22:54:58 +0100 | [diff] [blame] | 393 | void realview_fixup(struct tag *tags, char **from) |
Catalin Marinas | 5b39d15 | 2009-11-04 12:19:04 +0000 | [diff] [blame] | 394 | { |
| 395 | /* |
| 396 | * Most RealView platforms have 512MB contiguous RAM at 0x70000000. |
| 397 | * Half of this is mirrored at 0. |
| 398 | */ |
| 399 | #ifdef CONFIG_REALVIEW_HIGH_PHYS_OFFSET |
Laura Abbott | 1c2f87c | 2014-04-13 22:54:58 +0100 | [diff] [blame] | 400 | memblock_add(0x70000000, SZ_512M); |
Catalin Marinas | 5b39d15 | 2009-11-04 12:19:04 +0000 | [diff] [blame] | 401 | #else |
Laura Abbott | 1c2f87c | 2014-04-13 22:54:58 +0100 | [diff] [blame] | 402 | memblock_add(0, SZ_256M); |
Catalin Marinas | 5b39d15 | 2009-11-04 12:19:04 +0000 | [diff] [blame] | 403 | #endif |
| 404 | } |