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> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 33 | |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 34 | #include <asm/clkdev.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 35 | #include <asm/system.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 36 | #include <mach/hardware.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 37 | #include <asm/irq.h> |
| 38 | #include <asm/leds.h> |
Colin Tuckley | 68c3d93 | 2008-11-10 14:10:11 +0000 | [diff] [blame] | 39 | #include <asm/mach-types.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 40 | #include <asm/hardware/arm_timer.h> |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame] | 41 | #include <asm/hardware/icst.h> |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 42 | |
| 43 | #include <asm/mach/arch.h> |
| 44 | #include <asm/mach/flash.h> |
| 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 | |
Russell King | f4b8b31 | 2010-01-14 12:48:06 +0000 | [diff] [blame] | 50 | #include <mach/clkdev.h> |
Catalin Marinas | ee8c957 | 2009-05-30 14:00:17 +0100 | [diff] [blame] | 51 | #include <mach/platform.h> |
| 52 | #include <mach/irqs.h> |
Russell King | e388771 | 2010-01-14 13:30:16 +0000 | [diff] [blame] | 53 | #include <plat/timer-sp.h> |
Catalin Marinas | ee8c957 | 2009-05-30 14:00:17 +0100 | [diff] [blame] | 54 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 55 | #include "core.h" |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 56 | |
Catalin Marinas | 1bbdf63 | 2008-12-01 14:54:58 +0000 | [diff] [blame] | 57 | /* used by entry-macro.S and platsmp.c */ |
Catalin Marinas | c4057f5 | 2008-02-04 17:41:01 +0100 | [diff] [blame] | 58 | void __iomem *gic_cpu_base_addr; |
| 59 | |
Catalin Marinas | c97c5aa | 2009-11-04 12:19:05 +0000 | [diff] [blame] | 60 | #ifdef CONFIG_ZONE_DMA |
| 61 | /* |
| 62 | * Adjust the zones if there are restrictions for DMA access. |
| 63 | */ |
Russell King | b65b478 | 2010-05-22 20:58:51 +0100 | [diff] [blame] | 64 | void __init realview_adjust_zones(unsigned long *size, unsigned long *hole) |
Catalin Marinas | c97c5aa | 2009-11-04 12:19:05 +0000 | [diff] [blame] | 65 | { |
| 66 | unsigned long dma_size = SZ_256M >> PAGE_SHIFT; |
| 67 | |
Russell King | b65b478 | 2010-05-22 20:58:51 +0100 | [diff] [blame] | 68 | if (!machine_is_realview_pbx() || size[0] <= dma_size) |
Catalin Marinas | c97c5aa | 2009-11-04 12:19:05 +0000 | [diff] [blame] | 69 | return; |
| 70 | |
| 71 | size[ZONE_NORMAL] = size[0] - dma_size; |
| 72 | size[ZONE_DMA] = dma_size; |
| 73 | hole[ZONE_NORMAL] = hole[0]; |
| 74 | hole[ZONE_DMA] = 0; |
| 75 | } |
| 76 | #endif |
| 77 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 78 | |
| 79 | #define REALVIEW_FLASHCTRL (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_FLASH_OFFSET) |
| 80 | |
| 81 | static int realview_flash_init(void) |
| 82 | { |
| 83 | u32 val; |
| 84 | |
| 85 | val = __raw_readl(REALVIEW_FLASHCTRL); |
| 86 | val &= ~REALVIEW_FLASHPROG_FLVPPEN; |
| 87 | __raw_writel(val, REALVIEW_FLASHCTRL); |
| 88 | |
| 89 | return 0; |
| 90 | } |
| 91 | |
| 92 | static void realview_flash_exit(void) |
| 93 | { |
| 94 | u32 val; |
| 95 | |
| 96 | val = __raw_readl(REALVIEW_FLASHCTRL); |
| 97 | val &= ~REALVIEW_FLASHPROG_FLVPPEN; |
| 98 | __raw_writel(val, REALVIEW_FLASHCTRL); |
| 99 | } |
| 100 | |
| 101 | static void realview_flash_set_vpp(int on) |
| 102 | { |
| 103 | u32 val; |
| 104 | |
| 105 | val = __raw_readl(REALVIEW_FLASHCTRL); |
| 106 | if (on) |
| 107 | val |= REALVIEW_FLASHPROG_FLVPPEN; |
| 108 | else |
| 109 | val &= ~REALVIEW_FLASHPROG_FLVPPEN; |
| 110 | __raw_writel(val, REALVIEW_FLASHCTRL); |
| 111 | } |
| 112 | |
| 113 | static struct flash_platform_data realview_flash_data = { |
| 114 | .map_name = "cfi_probe", |
| 115 | .width = 4, |
| 116 | .init = realview_flash_init, |
| 117 | .exit = realview_flash_exit, |
| 118 | .set_vpp = realview_flash_set_vpp, |
| 119 | }; |
| 120 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 121 | struct platform_device realview_flash_device = { |
| 122 | .name = "armflash", |
| 123 | .id = 0, |
| 124 | .dev = { |
| 125 | .platform_data = &realview_flash_data, |
| 126 | }, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 127 | }; |
| 128 | |
Catalin Marinas | a44ddfd | 2008-04-18 22:43:10 +0100 | [diff] [blame] | 129 | int realview_flash_register(struct resource *res, u32 num) |
| 130 | { |
| 131 | realview_flash_device.resource = res; |
| 132 | realview_flash_device.num_resources = num; |
| 133 | return platform_device_register(&realview_flash_device); |
| 134 | } |
| 135 | |
Steve Glendinning | c5142e8 | 2009-01-20 13:23:30 +0000 | [diff] [blame] | 136 | static struct smsc911x_platform_config smsc911x_config = { |
| 137 | .flags = SMSC911X_USE_32BIT, |
| 138 | .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_HIGH, |
| 139 | .irq_type = SMSC911X_IRQ_TYPE_PUSH_PULL, |
| 140 | .phy_interface = PHY_INTERFACE_MODE_MII, |
Catalin Marinas | 0a5b2f6 | 2008-12-01 14:54:59 +0000 | [diff] [blame] | 141 | }; |
| 142 | |
Catalin Marinas | 0a38133 | 2008-12-01 14:54:58 +0000 | [diff] [blame] | 143 | static struct platform_device realview_eth_device = { |
Steve Glendinning | c5142e8 | 2009-01-20 13:23:30 +0000 | [diff] [blame] | 144 | .name = "smsc911x", |
Catalin Marinas | 0a38133 | 2008-12-01 14:54:58 +0000 | [diff] [blame] | 145 | .id = 0, |
| 146 | .num_resources = 2, |
| 147 | }; |
| 148 | |
| 149 | int realview_eth_register(const char *name, struct resource *res) |
| 150 | { |
| 151 | if (name) |
| 152 | realview_eth_device.name = name; |
| 153 | realview_eth_device.resource = res; |
Steve Glendinning | c5142e8 | 2009-01-20 13:23:30 +0000 | [diff] [blame] | 154 | if (strcmp(realview_eth_device.name, "smsc911x") == 0) |
| 155 | realview_eth_device.dev.platform_data = &smsc911x_config; |
Catalin Marinas | 0a38133 | 2008-12-01 14:54:58 +0000 | [diff] [blame] | 156 | |
| 157 | return platform_device_register(&realview_eth_device); |
| 158 | } |
| 159 | |
Catalin Marinas | 7db2171 | 2009-02-12 16:00:21 +0100 | [diff] [blame] | 160 | struct platform_device realview_usb_device = { |
| 161 | .name = "isp1760", |
| 162 | .num_resources = 2, |
| 163 | }; |
| 164 | |
| 165 | int realview_usb_register(struct resource *res) |
| 166 | { |
| 167 | realview_usb_device.resource = res; |
| 168 | return platform_device_register(&realview_usb_device); |
| 169 | } |
| 170 | |
Catalin Marinas | 6be62ba | 2009-02-12 15:59:21 +0100 | [diff] [blame] | 171 | static struct pata_platform_info pata_platform_data = { |
| 172 | .ioport_shift = 1, |
| 173 | }; |
| 174 | |
| 175 | static struct resource pata_resources[] = { |
| 176 | [0] = { |
| 177 | .start = REALVIEW_CF_BASE, |
| 178 | .end = REALVIEW_CF_BASE + 0xff, |
| 179 | .flags = IORESOURCE_MEM, |
| 180 | }, |
| 181 | [1] = { |
| 182 | .start = REALVIEW_CF_BASE + 0x100, |
| 183 | .end = REALVIEW_CF_BASE + SZ_4K - 1, |
| 184 | .flags = IORESOURCE_MEM, |
| 185 | }, |
| 186 | }; |
| 187 | |
| 188 | struct platform_device realview_cf_device = { |
| 189 | .name = "pata_platform", |
| 190 | .id = -1, |
| 191 | .num_resources = ARRAY_SIZE(pata_resources), |
| 192 | .resource = pata_resources, |
| 193 | .dev = { |
| 194 | .platform_data = &pata_platform_data, |
| 195 | }, |
| 196 | }; |
| 197 | |
Russell King | 6b65cd7 | 2006-12-10 21:21:32 +0100 | [diff] [blame] | 198 | static struct resource realview_i2c_resource = { |
| 199 | .start = REALVIEW_I2C_BASE, |
| 200 | .end = REALVIEW_I2C_BASE + SZ_4K - 1, |
| 201 | .flags = IORESOURCE_MEM, |
| 202 | }; |
| 203 | |
| 204 | struct platform_device realview_i2c_device = { |
| 205 | .name = "versatile-i2c", |
Catalin Marinas | 533ad5e | 2009-02-12 15:58:20 +0100 | [diff] [blame] | 206 | .id = 0, |
Russell King | 6b65cd7 | 2006-12-10 21:21:32 +0100 | [diff] [blame] | 207 | .num_resources = 1, |
| 208 | .resource = &realview_i2c_resource, |
| 209 | }; |
| 210 | |
Catalin Marinas | 533ad5e | 2009-02-12 15:58:20 +0100 | [diff] [blame] | 211 | static struct i2c_board_info realview_i2c_board_info[] = { |
| 212 | { |
Russell King | 64e8be6 | 2009-07-18 15:51:55 +0100 | [diff] [blame] | 213 | I2C_BOARD_INFO("ds1338", 0xd0 >> 1), |
Catalin Marinas | 533ad5e | 2009-02-12 15:58:20 +0100 | [diff] [blame] | 214 | }, |
| 215 | }; |
| 216 | |
| 217 | static int __init realview_i2c_init(void) |
| 218 | { |
| 219 | return i2c_register_board_info(0, realview_i2c_board_info, |
| 220 | ARRAY_SIZE(realview_i2c_board_info)); |
| 221 | } |
| 222 | arch_initcall(realview_i2c_init); |
| 223 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 224 | #define REALVIEW_SYSMCI (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_MCI_OFFSET) |
| 225 | |
Russell King | 98b0979 | 2009-07-09 15:17:41 +0100 | [diff] [blame] | 226 | /* |
| 227 | * This is only used if GPIOLIB support is disabled |
| 228 | */ |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 229 | static unsigned int realview_mmc_status(struct device *dev) |
| 230 | { |
| 231 | struct amba_device *adev = container_of(dev, struct amba_device, dev); |
| 232 | u32 mask; |
| 233 | |
Linus Walleij | 48f1d5a | 2010-07-02 10:24:03 +0100 | [diff] [blame] | 234 | if (machine_is_realview_pb1176()) { |
| 235 | static bool inserted = false; |
| 236 | |
| 237 | /* |
| 238 | * The PB1176 does not have the status register, |
| 239 | * assume it is inserted at startup, then invert |
| 240 | * for each call so card insertion/removal will |
| 241 | * be detected anyway. This will not be called if |
| 242 | * GPIO on PL061 is active, which is the proper |
| 243 | * way to do this on the PB1176. |
| 244 | */ |
| 245 | inserted = !inserted; |
| 246 | return inserted ? 0 : 1; |
| 247 | } |
| 248 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 249 | if (adev->res.start == REALVIEW_MMCI0_BASE) |
| 250 | mask = 1; |
| 251 | else |
| 252 | mask = 2; |
| 253 | |
Russell King | 74bc809 | 2010-07-29 15:58:59 +0100 | [diff] [blame] | 254 | return readl(REALVIEW_SYSMCI) & mask; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 255 | } |
| 256 | |
Linus Walleij | 6ef297f | 2009-09-22 14:29:36 +0100 | [diff] [blame] | 257 | struct mmci_platform_data realview_mmc0_plat_data = { |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 258 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, |
| 259 | .status = realview_mmc_status, |
Russell King | 98b0979 | 2009-07-09 15:17:41 +0100 | [diff] [blame] | 260 | .gpio_wp = 17, |
| 261 | .gpio_cd = 16, |
Rabin Vincent | 2971944 | 2010-08-09 12:54:43 +0100 | [diff] [blame^] | 262 | .cd_invert = true, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 263 | }; |
| 264 | |
Linus Walleij | 6ef297f | 2009-09-22 14:29:36 +0100 | [diff] [blame] | 265 | struct mmci_platform_data realview_mmc1_plat_data = { |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 266 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, |
| 267 | .status = realview_mmc_status, |
Russell King | 98b0979 | 2009-07-09 15:17:41 +0100 | [diff] [blame] | 268 | .gpio_wp = 19, |
| 269 | .gpio_cd = 18, |
Rabin Vincent | 2971944 | 2010-08-09 12:54:43 +0100 | [diff] [blame^] | 270 | .cd_invert = true, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 271 | }; |
| 272 | |
| 273 | /* |
| 274 | * Clock handling |
| 275 | */ |
Russell King | 39c0cb0 | 2010-01-16 16:27:28 +0000 | [diff] [blame] | 276 | static const struct icst_params realview_oscvco_params = { |
Russell King | 64fceb1 | 2010-01-16 17:28:44 +0000 | [diff] [blame] | 277 | .ref = 24000000, |
Russell King | 4de2edb | 2010-01-16 18:08:47 +0000 | [diff] [blame] | 278 | .vco_max = ICST307_VCO_MAX, |
Russell King | e73a46a | 2010-01-16 19:49:39 +0000 | [diff] [blame] | 279 | .vco_min = ICST307_VCO_MIN, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 280 | .vd_min = 4 + 8, |
| 281 | .vd_max = 511 + 8, |
| 282 | .rd_min = 1 + 2, |
| 283 | .rd_max = 127 + 2, |
Russell King | 232eaf7 | 2010-01-16 19:46:19 +0000 | [diff] [blame] | 284 | .s2div = icst307_s2div, |
| 285 | .idx2s = icst307_idx2s, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 286 | }; |
| 287 | |
Russell King | 39c0cb0 | 2010-01-16 16:27:28 +0000 | [diff] [blame] | 288 | static void realview_oscvco_set(struct clk *clk, struct icst_vco vco) |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 289 | { |
| 290 | 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] | 291 | u32 val; |
| 292 | |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 293 | val = readl(clk->vcoreg) & ~0x7ffff; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 294 | val |= vco.v | (vco.r << 9) | (vco.s << 16); |
| 295 | |
| 296 | writel(0xa05f, sys_lock); |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 297 | writel(val, clk->vcoreg); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 298 | writel(0, sys_lock); |
| 299 | } |
| 300 | |
Russell King | 9bf5b2e | 2010-03-01 16:18:39 +0000 | [diff] [blame] | 301 | static const struct clk_ops oscvco_clk_ops = { |
| 302 | .round = icst_clk_round, |
| 303 | .set = icst_clk_set, |
| 304 | .setvco = realview_oscvco_set, |
| 305 | }; |
| 306 | |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 307 | static struct clk oscvco_clk = { |
Russell King | 9bf5b2e | 2010-03-01 16:18:39 +0000 | [diff] [blame] | 308 | .ops = &oscvco_clk_ops, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 309 | .params = &realview_oscvco_params, |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 310 | }; |
| 311 | |
| 312 | /* |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 313 | * These are fixed clocks. |
| 314 | */ |
| 315 | static struct clk ref24_clk = { |
| 316 | .rate = 24000000, |
| 317 | }; |
| 318 | |
Russell King | 3126c7b | 2010-07-15 11:01:17 +0100 | [diff] [blame] | 319 | static struct clk dummy_apb_pclk; |
| 320 | |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 321 | static struct clk_lookup lookups[] = { |
Russell King | 3126c7b | 2010-07-15 11:01:17 +0100 | [diff] [blame] | 322 | { /* Bus clock */ |
| 323 | .con_id = "apb_pclk", |
| 324 | .clk = &dummy_apb_pclk, |
| 325 | }, { /* UART0 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 326 | .dev_id = "dev:uart0", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 327 | .clk = &ref24_clk, |
| 328 | }, { /* UART1 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 329 | .dev_id = "dev:uart1", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 330 | .clk = &ref24_clk, |
| 331 | }, { /* UART2 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 332 | .dev_id = "dev:uart2", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 333 | .clk = &ref24_clk, |
| 334 | }, { /* UART3 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 335 | .dev_id = "fpga:uart3", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 336 | .clk = &ref24_clk, |
Linus Walleij | 48f1d5a | 2010-07-02 10:24:03 +0100 | [diff] [blame] | 337 | }, { /* UART3 is on the dev chip in PB1176 */ |
| 338 | .dev_id = "dev:uart3", |
| 339 | .clk = &ref24_clk, |
| 340 | }, { /* UART4 only exists in PB1176 */ |
| 341 | .dev_id = "fpga:uart4", |
| 342 | .clk = &ref24_clk, |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 343 | }, { /* KMI0 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 344 | .dev_id = "fpga:kmi0", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 345 | .clk = &ref24_clk, |
| 346 | }, { /* KMI1 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 347 | .dev_id = "fpga:kmi1", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 348 | .clk = &ref24_clk, |
| 349 | }, { /* MMC0 */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 350 | .dev_id = "fpga:mmc0", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 351 | .clk = &ref24_clk, |
Linus Walleij | 48f1d5a | 2010-07-02 10:24:03 +0100 | [diff] [blame] | 352 | }, { /* CLCD is in the PB1176 and EB DevChip */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 353 | .dev_id = "dev:clcd", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 354 | .clk = &oscvco_clk, |
| 355 | }, { /* PB:CLCD */ |
Linus Walleij | 4321532 | 2009-09-21 12:30:32 +0100 | [diff] [blame] | 356 | .dev_id = "issp:clcd", |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 357 | .clk = &oscvco_clk, |
Linus Walleij | d6ada86 | 2010-07-14 23:58:38 +0100 | [diff] [blame] | 358 | }, { /* SSP */ |
| 359 | .dev_id = "dev:ssp0", |
| 360 | .clk = &ref24_clk, |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 361 | } |
| 362 | }; |
| 363 | |
| 364 | static int __init clk_init(void) |
| 365 | { |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 366 | if (machine_is_realview_pb1176()) |
| 367 | oscvco_clk.vcoreg = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_OSC0_OFFSET; |
| 368 | else |
| 369 | oscvco_clk.vcoreg = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_OSC4_OFFSET; |
| 370 | |
Russell King | 0a0300d | 2010-01-12 12:28:00 +0000 | [diff] [blame] | 371 | clkdev_add_table(lookups, ARRAY_SIZE(lookups)); |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 372 | |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 373 | return 0; |
| 374 | } |
Linus Walleij | 06385e4 | 2010-07-30 16:36:25 +0100 | [diff] [blame] | 375 | core_initcall(clk_init); |
Russell King | cf30fb4 | 2008-11-08 20:05:55 +0000 | [diff] [blame] | 376 | |
| 377 | /* |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 378 | * CLCD support. |
| 379 | */ |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 380 | #define SYS_CLCD_NLCDIOON (1 << 2) |
| 381 | #define SYS_CLCD_VDDPOSSWITCH (1 << 3) |
| 382 | #define SYS_CLCD_PWR3V5SWITCH (1 << 4) |
| 383 | #define SYS_CLCD_ID_MASK (0x1f << 8) |
| 384 | #define SYS_CLCD_ID_SANYO_3_8 (0x00 << 8) |
| 385 | #define SYS_CLCD_ID_UNKNOWN_8_4 (0x01 << 8) |
| 386 | #define SYS_CLCD_ID_EPSON_2_2 (0x02 << 8) |
| 387 | #define SYS_CLCD_ID_SANYO_2_5 (0x07 << 8) |
| 388 | #define SYS_CLCD_ID_VGA (0x1f << 8) |
| 389 | |
| 390 | static struct clcd_panel vga = { |
| 391 | .mode = { |
| 392 | .name = "VGA", |
| 393 | .refresh = 60, |
| 394 | .xres = 640, |
| 395 | .yres = 480, |
| 396 | .pixclock = 39721, |
| 397 | .left_margin = 40, |
| 398 | .right_margin = 24, |
| 399 | .upper_margin = 32, |
| 400 | .lower_margin = 11, |
| 401 | .hsync_len = 96, |
| 402 | .vsync_len = 2, |
| 403 | .sync = 0, |
| 404 | .vmode = FB_VMODE_NONINTERLACED, |
| 405 | }, |
| 406 | .width = -1, |
| 407 | .height = -1, |
| 408 | .tim2 = TIM2_BCD | TIM2_IPC, |
Catalin Marinas | 4eccca2 | 2008-11-10 14:10:13 +0000 | [diff] [blame] | 409 | .cntl = CNTL_LCDTFT | CNTL_BGR | CNTL_LCDVCOMP(1), |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 410 | .bpp = 16, |
| 411 | }; |
| 412 | |
Colin Tuckley | c34a102 | 2008-11-10 14:10:12 +0000 | [diff] [blame] | 413 | static struct clcd_panel xvga = { |
| 414 | .mode = { |
| 415 | .name = "XVGA", |
| 416 | .refresh = 60, |
| 417 | .xres = 1024, |
| 418 | .yres = 768, |
| 419 | .pixclock = 15748, |
| 420 | .left_margin = 152, |
| 421 | .right_margin = 48, |
| 422 | .upper_margin = 23, |
| 423 | .lower_margin = 3, |
| 424 | .hsync_len = 104, |
| 425 | .vsync_len = 4, |
| 426 | .sync = 0, |
| 427 | .vmode = FB_VMODE_NONINTERLACED, |
| 428 | }, |
| 429 | .width = -1, |
| 430 | .height = -1, |
| 431 | .tim2 = TIM2_BCD | TIM2_IPC, |
Catalin Marinas | 4eccca2 | 2008-11-10 14:10:13 +0000 | [diff] [blame] | 432 | .cntl = CNTL_LCDTFT | CNTL_BGR | CNTL_LCDVCOMP(1), |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 433 | .bpp = 16, |
| 434 | }; |
| 435 | |
| 436 | static struct clcd_panel sanyo_3_8_in = { |
| 437 | .mode = { |
| 438 | .name = "Sanyo QVGA", |
| 439 | .refresh = 116, |
| 440 | .xres = 320, |
| 441 | .yres = 240, |
| 442 | .pixclock = 100000, |
| 443 | .left_margin = 6, |
| 444 | .right_margin = 6, |
| 445 | .upper_margin = 5, |
| 446 | .lower_margin = 5, |
| 447 | .hsync_len = 6, |
| 448 | .vsync_len = 6, |
| 449 | .sync = 0, |
| 450 | .vmode = FB_VMODE_NONINTERLACED, |
| 451 | }, |
| 452 | .width = -1, |
| 453 | .height = -1, |
| 454 | .tim2 = TIM2_BCD, |
Catalin Marinas | 4eccca2 | 2008-11-10 14:10:13 +0000 | [diff] [blame] | 455 | .cntl = CNTL_LCDTFT | CNTL_BGR | CNTL_LCDVCOMP(1), |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 456 | .bpp = 16, |
| 457 | }; |
| 458 | |
| 459 | static struct clcd_panel sanyo_2_5_in = { |
| 460 | .mode = { |
| 461 | .name = "Sanyo QVGA Portrait", |
| 462 | .refresh = 116, |
| 463 | .xres = 240, |
| 464 | .yres = 320, |
| 465 | .pixclock = 100000, |
| 466 | .left_margin = 20, |
| 467 | .right_margin = 10, |
| 468 | .upper_margin = 2, |
| 469 | .lower_margin = 2, |
| 470 | .hsync_len = 10, |
| 471 | .vsync_len = 2, |
| 472 | .sync = FB_SYNC_HOR_HIGH_ACT | FB_SYNC_VERT_HIGH_ACT, |
| 473 | .vmode = FB_VMODE_NONINTERLACED, |
| 474 | }, |
| 475 | .width = -1, |
| 476 | .height = -1, |
| 477 | .tim2 = TIM2_IVS | TIM2_IHS | TIM2_IPC, |
Catalin Marinas | 4eccca2 | 2008-11-10 14:10:13 +0000 | [diff] [blame] | 478 | .cntl = CNTL_LCDTFT | CNTL_BGR | CNTL_LCDVCOMP(1), |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 479 | .bpp = 16, |
| 480 | }; |
| 481 | |
| 482 | static struct clcd_panel epson_2_2_in = { |
| 483 | .mode = { |
| 484 | .name = "Epson QCIF", |
| 485 | .refresh = 390, |
| 486 | .xres = 176, |
| 487 | .yres = 220, |
| 488 | .pixclock = 62500, |
| 489 | .left_margin = 3, |
| 490 | .right_margin = 2, |
| 491 | .upper_margin = 1, |
| 492 | .lower_margin = 0, |
| 493 | .hsync_len = 3, |
| 494 | .vsync_len = 2, |
| 495 | .sync = 0, |
| 496 | .vmode = FB_VMODE_NONINTERLACED, |
| 497 | }, |
| 498 | .width = -1, |
| 499 | .height = -1, |
| 500 | .tim2 = TIM2_BCD | TIM2_IPC, |
Catalin Marinas | 4eccca2 | 2008-11-10 14:10:13 +0000 | [diff] [blame] | 501 | .cntl = CNTL_LCDTFT | CNTL_BGR | CNTL_LCDVCOMP(1), |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 502 | .bpp = 16, |
| 503 | }; |
| 504 | |
| 505 | /* |
| 506 | * Detect which LCD panel is connected, and return the appropriate |
| 507 | * clcd_panel structure. Note: we do not have any information on |
| 508 | * the required timings for the 8.4in panel, so we presently assume |
| 509 | * VGA timings. |
| 510 | */ |
| 511 | static struct clcd_panel *realview_clcd_panel(void) |
| 512 | { |
| 513 | void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET; |
Colin Tuckley | c34a102 | 2008-11-10 14:10:12 +0000 | [diff] [blame] | 514 | struct clcd_panel *vga_panel; |
| 515 | struct clcd_panel *panel; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 516 | u32 val; |
| 517 | |
Colin Tuckley | c34a102 | 2008-11-10 14:10:12 +0000 | [diff] [blame] | 518 | if (machine_is_realview_eb()) |
| 519 | vga_panel = &vga; |
| 520 | else |
| 521 | vga_panel = &xvga; |
| 522 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 523 | val = readl(sys_clcd) & SYS_CLCD_ID_MASK; |
| 524 | if (val == SYS_CLCD_ID_SANYO_3_8) |
| 525 | panel = &sanyo_3_8_in; |
| 526 | else if (val == SYS_CLCD_ID_SANYO_2_5) |
| 527 | panel = &sanyo_2_5_in; |
| 528 | else if (val == SYS_CLCD_ID_EPSON_2_2) |
| 529 | panel = &epson_2_2_in; |
| 530 | else if (val == SYS_CLCD_ID_VGA) |
Colin Tuckley | c34a102 | 2008-11-10 14:10:12 +0000 | [diff] [blame] | 531 | panel = vga_panel; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 532 | else { |
| 533 | printk(KERN_ERR "CLCD: unknown LCD panel ID 0x%08x, using VGA\n", |
| 534 | val); |
Colin Tuckley | c34a102 | 2008-11-10 14:10:12 +0000 | [diff] [blame] | 535 | panel = vga_panel; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 536 | } |
| 537 | |
| 538 | return panel; |
| 539 | } |
| 540 | |
| 541 | /* |
| 542 | * Disable all display connectors on the interface module. |
| 543 | */ |
| 544 | static void realview_clcd_disable(struct clcd_fb *fb) |
| 545 | { |
| 546 | void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET; |
| 547 | u32 val; |
| 548 | |
| 549 | val = readl(sys_clcd); |
| 550 | val &= ~SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH; |
| 551 | writel(val, sys_clcd); |
| 552 | } |
| 553 | |
| 554 | /* |
| 555 | * Enable the relevant connector on the interface module. |
| 556 | */ |
| 557 | static void realview_clcd_enable(struct clcd_fb *fb) |
| 558 | { |
| 559 | void __iomem *sys_clcd = __io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_CLCD_OFFSET; |
| 560 | u32 val; |
| 561 | |
Catalin Marinas | 9e7714d | 2006-03-16 14:10:20 +0000 | [diff] [blame] | 562 | /* |
| 563 | * Enable the PSUs |
| 564 | */ |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 565 | val = readl(sys_clcd); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 566 | val |= SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH; |
| 567 | writel(val, sys_clcd); |
| 568 | } |
| 569 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 570 | static int realview_clcd_setup(struct clcd_fb *fb) |
| 571 | { |
Colin Tuckley | c34a102 | 2008-11-10 14:10:12 +0000 | [diff] [blame] | 572 | unsigned long framesize; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 573 | dma_addr_t dma; |
| 574 | |
Colin Tuckley | c34a102 | 2008-11-10 14:10:12 +0000 | [diff] [blame] | 575 | if (machine_is_realview_eb()) |
| 576 | /* VGA, 16bpp */ |
| 577 | framesize = 640 * 480 * 2; |
| 578 | else |
| 579 | /* XVGA, 16bpp */ |
| 580 | framesize = 1024 * 768 * 2; |
| 581 | |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 582 | fb->panel = realview_clcd_panel(); |
| 583 | |
| 584 | fb->fb.screen_base = dma_alloc_writecombine(&fb->dev->dev, framesize, |
Catalin Marinas | c97c5aa | 2009-11-04 12:19:05 +0000 | [diff] [blame] | 585 | &dma, GFP_KERNEL | GFP_DMA); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 586 | if (!fb->fb.screen_base) { |
| 587 | printk(KERN_ERR "CLCD: unable to map framebuffer\n"); |
| 588 | return -ENOMEM; |
| 589 | } |
| 590 | |
| 591 | fb->fb.fix.smem_start = dma; |
| 592 | fb->fb.fix.smem_len = framesize; |
| 593 | |
| 594 | return 0; |
| 595 | } |
| 596 | |
| 597 | static int realview_clcd_mmap(struct clcd_fb *fb, struct vm_area_struct *vma) |
| 598 | { |
| 599 | return dma_mmap_writecombine(&fb->dev->dev, vma, |
| 600 | fb->fb.screen_base, |
| 601 | fb->fb.fix.smem_start, |
| 602 | fb->fb.fix.smem_len); |
| 603 | } |
| 604 | |
| 605 | static void realview_clcd_remove(struct clcd_fb *fb) |
| 606 | { |
| 607 | dma_free_writecombine(&fb->dev->dev, fb->fb.fix.smem_len, |
| 608 | fb->fb.screen_base, fb->fb.fix.smem_start); |
| 609 | } |
| 610 | |
| 611 | struct clcd_board clcd_plat_data = { |
| 612 | .name = "RealView", |
| 613 | .check = clcdfb_check, |
| 614 | .decode = clcdfb_decode, |
| 615 | .disable = realview_clcd_disable, |
| 616 | .enable = realview_clcd_enable, |
| 617 | .setup = realview_clcd_setup, |
| 618 | .mmap = realview_clcd_mmap, |
| 619 | .remove = realview_clcd_remove, |
| 620 | }; |
| 621 | |
| 622 | #ifdef CONFIG_LEDS |
| 623 | #define VA_LEDS_BASE (__io_address(REALVIEW_SYS_BASE) + REALVIEW_SYS_LED_OFFSET) |
| 624 | |
| 625 | void realview_leds_event(led_event_t ledevt) |
| 626 | { |
| 627 | unsigned long flags; |
| 628 | u32 val; |
Catalin Marinas | da055eb | 2009-05-30 13:56:16 +0100 | [diff] [blame] | 629 | u32 led = 1 << smp_processor_id(); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 630 | |
| 631 | local_irq_save(flags); |
| 632 | val = readl(VA_LEDS_BASE); |
| 633 | |
| 634 | switch (ledevt) { |
| 635 | case led_idle_start: |
Catalin Marinas | da055eb | 2009-05-30 13:56:16 +0100 | [diff] [blame] | 636 | val = val & ~led; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 637 | break; |
| 638 | |
| 639 | case led_idle_end: |
Catalin Marinas | da055eb | 2009-05-30 13:56:16 +0100 | [diff] [blame] | 640 | val = val | led; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 641 | break; |
| 642 | |
| 643 | case led_timer: |
Catalin Marinas | da055eb | 2009-05-30 13:56:16 +0100 | [diff] [blame] | 644 | val = val ^ REALVIEW_SYS_LED7; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 645 | break; |
| 646 | |
| 647 | case led_halted: |
| 648 | val = 0; |
| 649 | break; |
| 650 | |
| 651 | default: |
| 652 | break; |
| 653 | } |
| 654 | |
| 655 | writel(val, VA_LEDS_BASE); |
| 656 | local_irq_restore(flags); |
| 657 | } |
| 658 | #endif /* CONFIG_LEDS */ |
| 659 | |
| 660 | /* |
| 661 | * Where is the timer (VA)? |
| 662 | */ |
Catalin Marinas | 8019273 | 2008-04-18 22:43:11 +0100 | [diff] [blame] | 663 | void __iomem *timer0_va_base; |
| 664 | void __iomem *timer1_va_base; |
| 665 | void __iomem *timer2_va_base; |
| 666 | void __iomem *timer3_va_base; |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 667 | |
| 668 | /* |
Catalin Marinas | a8655e8 | 2008-02-04 17:30:57 +0100 | [diff] [blame] | 669 | * Set up the clock source and clock events devices |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 670 | */ |
Catalin Marinas | 8cc4c54 | 2008-02-04 17:43:02 +0100 | [diff] [blame] | 671 | void __init realview_timer_init(unsigned int timer_irq) |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 672 | { |
| 673 | u32 val; |
| 674 | |
| 675 | /* |
| 676 | * set clock frequency: |
| 677 | * REALVIEW_REFCLK is 32KHz |
| 678 | * REALVIEW_TIMCLK is 1MHz |
| 679 | */ |
| 680 | val = readl(__io_address(REALVIEW_SCTL_BASE)); |
| 681 | writel((REALVIEW_TIMCLK << REALVIEW_TIMER1_EnSel) | |
| 682 | (REALVIEW_TIMCLK << REALVIEW_TIMER2_EnSel) | |
| 683 | (REALVIEW_TIMCLK << REALVIEW_TIMER3_EnSel) | |
| 684 | (REALVIEW_TIMCLK << REALVIEW_TIMER4_EnSel) | val, |
| 685 | __io_address(REALVIEW_SCTL_BASE)); |
| 686 | |
| 687 | /* |
| 688 | * Initialise to a known state (all timers off) |
| 689 | */ |
Catalin Marinas | 8019273 | 2008-04-18 22:43:11 +0100 | [diff] [blame] | 690 | writel(0, timer0_va_base + TIMER_CTRL); |
| 691 | writel(0, timer1_va_base + TIMER_CTRL); |
| 692 | writel(0, timer2_va_base + TIMER_CTRL); |
| 693 | writel(0, timer3_va_base + TIMER_CTRL); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 694 | |
Russell King | e388771 | 2010-01-14 13:30:16 +0000 | [diff] [blame] | 695 | sp804_clocksource_init(timer3_va_base); |
| 696 | sp804_clockevents_init(timer0_va_base, timer_irq); |
Catalin Marinas | 8ad68bb | 2005-10-31 14:25:02 +0000 | [diff] [blame] | 697 | } |
Catalin Marinas | 5b39d15 | 2009-11-04 12:19:04 +0000 | [diff] [blame] | 698 | |
| 699 | /* |
| 700 | * Setup the memory banks. |
| 701 | */ |
| 702 | void realview_fixup(struct machine_desc *mdesc, struct tag *tags, char **from, |
| 703 | struct meminfo *meminfo) |
| 704 | { |
| 705 | /* |
| 706 | * Most RealView platforms have 512MB contiguous RAM at 0x70000000. |
| 707 | * Half of this is mirrored at 0. |
| 708 | */ |
| 709 | #ifdef CONFIG_REALVIEW_HIGH_PHYS_OFFSET |
| 710 | meminfo->bank[0].start = 0x70000000; |
| 711 | meminfo->bank[0].size = SZ_512M; |
| 712 | meminfo->nr_banks = 1; |
| 713 | #else |
| 714 | meminfo->bank[0].start = 0; |
| 715 | meminfo->bank[0].size = SZ_256M; |
| 716 | meminfo->nr_banks = 1; |
| 717 | #endif |
| 718 | } |