Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-integrator/integrator_cp.c |
| 3 | * |
| 4 | * Copyright (C) 2003 Deep Blue Solutions Ltd |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation; either version 2 of the License. |
| 9 | */ |
| 10 | #include <linux/types.h> |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/list.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 14 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/dma-mapping.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/string.h> |
| 17 | #include <linux/sysdev.h> |
Russell King | a62c80e | 2006-01-07 13:52:45 +0000 | [diff] [blame] | 18 | #include <linux/amba/bus.h> |
| 19 | #include <linux/amba/kmi.h> |
| 20 | #include <linux/amba/clcd.h> |
Linus Walleij | 6ef297f | 2009-09-22 14:29:36 +0100 | [diff] [blame] | 21 | #include <linux/amba/mmci.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 22 | #include <linux/io.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 23 | #include <linux/gfp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
Russell King | d72fbdf | 2008-11-08 20:08:08 +0000 | [diff] [blame] | 25 | #include <asm/clkdev.h> |
| 26 | #include <mach/clkdev.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 27 | #include <mach/hardware.h> |
Russell King | a285edc | 2010-01-14 19:59:37 +0000 | [diff] [blame] | 28 | #include <mach/platform.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <asm/irq.h> |
| 30 | #include <asm/setup.h> |
| 31 | #include <asm/mach-types.h> |
Russell King | 5a46334 | 2010-01-16 23:52:12 +0000 | [diff] [blame] | 32 | #include <asm/hardware/arm_timer.h> |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame] | 33 | #include <asm/hardware/icst.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 35 | #include <mach/cm.h> |
| 36 | #include <mach/lm.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | |
| 38 | #include <asm/mach/arch.h> |
| 39 | #include <asm/mach/flash.h> |
| 40 | #include <asm/mach/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #include <asm/mach/map.h> |
| 42 | #include <asm/mach/time.h> |
| 43 | |
Rob Herring | 8a9618f | 2010-10-06 16:18:08 +0100 | [diff] [blame^] | 44 | #include <asm/hardware/timer-sp.h> |
Russell King | 5a46334 | 2010-01-16 23:52:12 +0000 | [diff] [blame] | 45 | |
Russell King | 98c672c | 2010-05-22 18:18:57 +0100 | [diff] [blame] | 46 | #include "common.h" |
| 47 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | #define INTCP_PA_FLASH_BASE 0x24000000 |
| 49 | #define INTCP_FLASH_SIZE SZ_32M |
| 50 | |
| 51 | #define INTCP_PA_CLCD_BASE 0xc0000000 |
| 52 | |
Russell King | b830b9b | 2010-01-17 20:45:12 +0000 | [diff] [blame] | 53 | #define INTCP_VA_CIC_BASE IO_ADDRESS(INTEGRATOR_HDR_BASE + 0x40) |
Catalin Marinas | 365f7a4 | 2009-07-24 12:34:57 +0100 | [diff] [blame] | 54 | #define INTCP_VA_PIC_BASE IO_ADDRESS(INTEGRATOR_IC_BASE) |
Russell King | da7ba95 | 2010-01-17 19:59:58 +0000 | [diff] [blame] | 55 | #define INTCP_VA_SIC_BASE IO_ADDRESS(INTEGRATOR_CP_SIC_BASE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #define INTCP_ETH_SIZE 0x10 |
| 58 | |
Russell King | da7ba95 | 2010-01-17 19:59:58 +0000 | [diff] [blame] | 59 | #define INTCP_VA_CTRL_BASE IO_ADDRESS(INTEGRATOR_CP_CTL_BASE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | #define INTCP_FLASHPROG 0x04 |
| 61 | #define CINTEGRATOR_FLASHPROG_FLVPPEN (1 << 0) |
| 62 | #define CINTEGRATOR_FLASHPROG_FLWREN (1 << 1) |
| 63 | |
| 64 | /* |
| 65 | * Logical Physical |
| 66 | * f1000000 10000000 Core module registers |
| 67 | * f1100000 11000000 System controller registers |
| 68 | * f1200000 12000000 EBI registers |
| 69 | * f1300000 13000000 Counter/Timer |
| 70 | * f1400000 14000000 Interrupt controller |
| 71 | * f1600000 16000000 UART 0 |
| 72 | * f1700000 17000000 UART 1 |
| 73 | * f1a00000 1a000000 Debug LEDs |
Russell King | da7ba95 | 2010-01-17 19:59:58 +0000 | [diff] [blame] | 74 | * fc900000 c9000000 GPIO |
| 75 | * fca00000 ca000000 SIC |
| 76 | * fcb00000 cb000000 CP system control |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | */ |
| 78 | |
| 79 | static struct map_desc intcp_io_desc[] __initdata = { |
Deepak Saxena | c8d2729 | 2005-10-28 15:19:10 +0100 | [diff] [blame] | 80 | { |
| 81 | .virtual = IO_ADDRESS(INTEGRATOR_HDR_BASE), |
| 82 | .pfn = __phys_to_pfn(INTEGRATOR_HDR_BASE), |
| 83 | .length = SZ_4K, |
| 84 | .type = MT_DEVICE |
| 85 | }, { |
| 86 | .virtual = IO_ADDRESS(INTEGRATOR_SC_BASE), |
| 87 | .pfn = __phys_to_pfn(INTEGRATOR_SC_BASE), |
| 88 | .length = SZ_4K, |
| 89 | .type = MT_DEVICE |
| 90 | }, { |
| 91 | .virtual = IO_ADDRESS(INTEGRATOR_EBI_BASE), |
| 92 | .pfn = __phys_to_pfn(INTEGRATOR_EBI_BASE), |
| 93 | .length = SZ_4K, |
| 94 | .type = MT_DEVICE |
| 95 | }, { |
| 96 | .virtual = IO_ADDRESS(INTEGRATOR_CT_BASE), |
| 97 | .pfn = __phys_to_pfn(INTEGRATOR_CT_BASE), |
| 98 | .length = SZ_4K, |
| 99 | .type = MT_DEVICE |
| 100 | }, { |
| 101 | .virtual = IO_ADDRESS(INTEGRATOR_IC_BASE), |
| 102 | .pfn = __phys_to_pfn(INTEGRATOR_IC_BASE), |
| 103 | .length = SZ_4K, |
| 104 | .type = MT_DEVICE |
| 105 | }, { |
| 106 | .virtual = IO_ADDRESS(INTEGRATOR_UART0_BASE), |
| 107 | .pfn = __phys_to_pfn(INTEGRATOR_UART0_BASE), |
| 108 | .length = SZ_4K, |
| 109 | .type = MT_DEVICE |
| 110 | }, { |
| 111 | .virtual = IO_ADDRESS(INTEGRATOR_UART1_BASE), |
| 112 | .pfn = __phys_to_pfn(INTEGRATOR_UART1_BASE), |
| 113 | .length = SZ_4K, |
| 114 | .type = MT_DEVICE |
| 115 | }, { |
| 116 | .virtual = IO_ADDRESS(INTEGRATOR_DBG_BASE), |
| 117 | .pfn = __phys_to_pfn(INTEGRATOR_DBG_BASE), |
| 118 | .length = SZ_4K, |
| 119 | .type = MT_DEVICE |
| 120 | }, { |
Russell King | da7ba95 | 2010-01-17 19:59:58 +0000 | [diff] [blame] | 121 | .virtual = IO_ADDRESS(INTEGRATOR_CP_GPIO_BASE), |
| 122 | .pfn = __phys_to_pfn(INTEGRATOR_CP_GPIO_BASE), |
Deepak Saxena | c8d2729 | 2005-10-28 15:19:10 +0100 | [diff] [blame] | 123 | .length = SZ_4K, |
| 124 | .type = MT_DEVICE |
| 125 | }, { |
Russell King | da7ba95 | 2010-01-17 19:59:58 +0000 | [diff] [blame] | 126 | .virtual = IO_ADDRESS(INTEGRATOR_CP_SIC_BASE), |
| 127 | .pfn = __phys_to_pfn(INTEGRATOR_CP_SIC_BASE), |
Deepak Saxena | c8d2729 | 2005-10-28 15:19:10 +0100 | [diff] [blame] | 128 | .length = SZ_4K, |
| 129 | .type = MT_DEVICE |
| 130 | }, { |
Russell King | da7ba95 | 2010-01-17 19:59:58 +0000 | [diff] [blame] | 131 | .virtual = IO_ADDRESS(INTEGRATOR_CP_CTL_BASE), |
| 132 | .pfn = __phys_to_pfn(INTEGRATOR_CP_CTL_BASE), |
Deepak Saxena | c8d2729 | 2005-10-28 15:19:10 +0100 | [diff] [blame] | 133 | .length = SZ_4K, |
| 134 | .type = MT_DEVICE |
| 135 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | }; |
| 137 | |
| 138 | static void __init intcp_map_io(void) |
| 139 | { |
| 140 | iotable_init(intcp_io_desc, ARRAY_SIZE(intcp_io_desc)); |
| 141 | } |
| 142 | |
| 143 | #define cic_writel __raw_writel |
| 144 | #define cic_readl __raw_readl |
| 145 | #define pic_writel __raw_writel |
| 146 | #define pic_readl __raw_readl |
| 147 | #define sic_writel __raw_writel |
| 148 | #define sic_readl __raw_readl |
| 149 | |
| 150 | static void cic_mask_irq(unsigned int irq) |
| 151 | { |
| 152 | irq -= IRQ_CIC_START; |
| 153 | cic_writel(1 << irq, INTCP_VA_CIC_BASE + IRQ_ENABLE_CLEAR); |
| 154 | } |
| 155 | |
| 156 | static void cic_unmask_irq(unsigned int irq) |
| 157 | { |
| 158 | irq -= IRQ_CIC_START; |
| 159 | cic_writel(1 << irq, INTCP_VA_CIC_BASE + IRQ_ENABLE_SET); |
| 160 | } |
| 161 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 162 | static struct irq_chip cic_chip = { |
| 163 | .name = "CIC", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | .ack = cic_mask_irq, |
| 165 | .mask = cic_mask_irq, |
| 166 | .unmask = cic_unmask_irq, |
| 167 | }; |
| 168 | |
| 169 | static void pic_mask_irq(unsigned int irq) |
| 170 | { |
| 171 | irq -= IRQ_PIC_START; |
| 172 | pic_writel(1 << irq, INTCP_VA_PIC_BASE + IRQ_ENABLE_CLEAR); |
| 173 | } |
| 174 | |
| 175 | static void pic_unmask_irq(unsigned int irq) |
| 176 | { |
| 177 | irq -= IRQ_PIC_START; |
| 178 | pic_writel(1 << irq, INTCP_VA_PIC_BASE + IRQ_ENABLE_SET); |
| 179 | } |
| 180 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 181 | static struct irq_chip pic_chip = { |
| 182 | .name = "PIC", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | .ack = pic_mask_irq, |
| 184 | .mask = pic_mask_irq, |
| 185 | .unmask = pic_unmask_irq, |
| 186 | }; |
| 187 | |
| 188 | static void sic_mask_irq(unsigned int irq) |
| 189 | { |
| 190 | irq -= IRQ_SIC_START; |
| 191 | sic_writel(1 << irq, INTCP_VA_SIC_BASE + IRQ_ENABLE_CLEAR); |
| 192 | } |
| 193 | |
| 194 | static void sic_unmask_irq(unsigned int irq) |
| 195 | { |
| 196 | irq -= IRQ_SIC_START; |
| 197 | sic_writel(1 << irq, INTCP_VA_SIC_BASE + IRQ_ENABLE_SET); |
| 198 | } |
| 199 | |
David Brownell | 38c677c | 2006-08-01 22:26:25 +0100 | [diff] [blame] | 200 | static struct irq_chip sic_chip = { |
| 201 | .name = "SIC", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | .ack = sic_mask_irq, |
| 203 | .mask = sic_mask_irq, |
| 204 | .unmask = sic_unmask_irq, |
| 205 | }; |
| 206 | |
| 207 | static void |
Russell King | 10dd5ce | 2006-11-23 11:41:32 +0000 | [diff] [blame] | 208 | sic_handle_irq(unsigned int irq, struct irq_desc *desc) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | { |
| 210 | unsigned long status = sic_readl(INTCP_VA_SIC_BASE + IRQ_STATUS); |
| 211 | |
| 212 | if (status == 0) { |
Linus Torvalds | 0cd61b6 | 2006-10-06 10:53:39 -0700 | [diff] [blame] | 213 | do_bad_IRQ(irq, desc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | return; |
| 215 | } |
| 216 | |
| 217 | do { |
| 218 | irq = ffs(status) - 1; |
| 219 | status &= ~(1 << irq); |
| 220 | |
| 221 | irq += IRQ_SIC_START; |
| 222 | |
Dmitry Baryshkov | d8aa025 | 2008-10-09 13:36:24 +0100 | [diff] [blame] | 223 | generic_handle_irq(irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | } while (status); |
| 225 | } |
| 226 | |
| 227 | static void __init intcp_init_irq(void) |
| 228 | { |
| 229 | unsigned int i; |
| 230 | |
| 231 | /* |
| 232 | * Disable all interrupt sources |
| 233 | */ |
| 234 | pic_writel(0xffffffff, INTCP_VA_PIC_BASE + IRQ_ENABLE_CLEAR); |
| 235 | pic_writel(0xffffffff, INTCP_VA_PIC_BASE + FIQ_ENABLE_CLEAR); |
| 236 | |
| 237 | for (i = IRQ_PIC_START; i <= IRQ_PIC_END; i++) { |
| 238 | if (i == 11) |
| 239 | i = 22; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 240 | if (i == 29) |
| 241 | break; |
| 242 | set_irq_chip(i, &pic_chip); |
Russell King | 10dd5ce | 2006-11-23 11:41:32 +0000 | [diff] [blame] | 243 | set_irq_handler(i, handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | set_irq_flags(i, IRQF_VALID | IRQF_PROBE); |
| 245 | } |
| 246 | |
| 247 | cic_writel(0xffffffff, INTCP_VA_CIC_BASE + IRQ_ENABLE_CLEAR); |
| 248 | cic_writel(0xffffffff, INTCP_VA_CIC_BASE + FIQ_ENABLE_CLEAR); |
| 249 | |
| 250 | for (i = IRQ_CIC_START; i <= IRQ_CIC_END; i++) { |
| 251 | set_irq_chip(i, &cic_chip); |
Russell King | 10dd5ce | 2006-11-23 11:41:32 +0000 | [diff] [blame] | 252 | set_irq_handler(i, handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | set_irq_flags(i, IRQF_VALID); |
| 254 | } |
| 255 | |
| 256 | sic_writel(0x00000fff, INTCP_VA_SIC_BASE + IRQ_ENABLE_CLEAR); |
| 257 | sic_writel(0x00000fff, INTCP_VA_SIC_BASE + FIQ_ENABLE_CLEAR); |
| 258 | |
| 259 | for (i = IRQ_SIC_START; i <= IRQ_SIC_END; i++) { |
| 260 | set_irq_chip(i, &sic_chip); |
Russell King | 10dd5ce | 2006-11-23 11:41:32 +0000 | [diff] [blame] | 261 | set_irq_handler(i, handle_level_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 262 | set_irq_flags(i, IRQF_VALID | IRQF_PROBE); |
| 263 | } |
| 264 | |
Russell King | 56f1319e | 2006-06-10 12:42:12 +0100 | [diff] [blame] | 265 | set_irq_chained_handler(IRQ_CP_CPPLDINT, sic_handle_irq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | /* |
| 269 | * Clock handling |
| 270 | */ |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 271 | #define CM_LOCK (__io_address(INTEGRATOR_HDR_BASE)+INTEGRATOR_HDR_LOCK_OFFSET) |
| 272 | #define CM_AUXOSC (__io_address(INTEGRATOR_HDR_BASE)+0x1c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
Russell King | 39c0cb0 | 2010-01-16 16:27:28 +0000 | [diff] [blame] | 274 | static const struct icst_params cp_auxvco_params = { |
Russell King | 64fceb1 | 2010-01-16 17:28:44 +0000 | [diff] [blame] | 275 | .ref = 24000000, |
Russell King | 4de2edb | 2010-01-16 18:08:47 +0000 | [diff] [blame] | 276 | .vco_max = ICST525_VCO_MAX_5V, |
Russell King | e73a46a | 2010-01-16 19:49:39 +0000 | [diff] [blame] | 277 | .vco_min = ICST525_VCO_MIN, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | .vd_min = 8, |
| 279 | .vd_max = 263, |
| 280 | .rd_min = 3, |
| 281 | .rd_max = 65, |
Russell King | 232eaf7 | 2010-01-16 19:46:19 +0000 | [diff] [blame] | 282 | .s2div = icst525_s2div, |
| 283 | .idx2s = icst525_idx2s, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 284 | }; |
| 285 | |
Russell King | 39c0cb0 | 2010-01-16 16:27:28 +0000 | [diff] [blame] | 286 | static void cp_auxvco_set(struct clk *clk, struct icst_vco vco) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | { |
| 288 | u32 val; |
| 289 | |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 290 | val = readl(clk->vcoreg) & ~0x7ffff; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 291 | val |= vco.v | (vco.r << 9) | (vco.s << 16); |
| 292 | |
| 293 | writel(0xa05f, CM_LOCK); |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 294 | writel(val, clk->vcoreg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | writel(0, CM_LOCK); |
| 296 | } |
| 297 | |
Russell King | 9bf5b2e | 2010-03-01 16:18:39 +0000 | [diff] [blame] | 298 | static const struct clk_ops cp_auxclk_ops = { |
| 299 | .round = icst_clk_round, |
| 300 | .set = icst_clk_set, |
| 301 | .setvco = cp_auxvco_set, |
| 302 | }; |
| 303 | |
Russell King | d72fbdf | 2008-11-08 20:08:08 +0000 | [diff] [blame] | 304 | static struct clk cp_auxclk = { |
Russell King | 9bf5b2e | 2010-03-01 16:18:39 +0000 | [diff] [blame] | 305 | .ops = &cp_auxclk_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | .params = &cp_auxvco_params, |
Russell King | d1914c7 | 2010-01-14 20:09:34 +0000 | [diff] [blame] | 307 | .vcoreg = CM_AUXOSC, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | }; |
| 309 | |
Russell King | d72fbdf | 2008-11-08 20:08:08 +0000 | [diff] [blame] | 310 | static struct clk_lookup cp_lookups[] = { |
| 311 | { /* CLCD */ |
| 312 | .dev_id = "mb:c0", |
| 313 | .clk = &cp_auxclk, |
| 314 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | }; |
| 316 | |
| 317 | /* |
| 318 | * Flash handling. |
| 319 | */ |
| 320 | static int intcp_flash_init(void) |
| 321 | { |
| 322 | u32 val; |
| 323 | |
| 324 | val = readl(INTCP_VA_CTRL_BASE + INTCP_FLASHPROG); |
| 325 | val |= CINTEGRATOR_FLASHPROG_FLWREN; |
| 326 | writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG); |
| 327 | |
| 328 | return 0; |
| 329 | } |
| 330 | |
| 331 | static void intcp_flash_exit(void) |
| 332 | { |
| 333 | u32 val; |
| 334 | |
| 335 | val = readl(INTCP_VA_CTRL_BASE + INTCP_FLASHPROG); |
| 336 | val &= ~(CINTEGRATOR_FLASHPROG_FLVPPEN|CINTEGRATOR_FLASHPROG_FLWREN); |
| 337 | writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG); |
| 338 | } |
| 339 | |
| 340 | static void intcp_flash_set_vpp(int on) |
| 341 | { |
| 342 | u32 val; |
| 343 | |
| 344 | val = readl(INTCP_VA_CTRL_BASE + INTCP_FLASHPROG); |
| 345 | if (on) |
| 346 | val |= CINTEGRATOR_FLASHPROG_FLVPPEN; |
| 347 | else |
| 348 | val &= ~CINTEGRATOR_FLASHPROG_FLVPPEN; |
| 349 | writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG); |
| 350 | } |
| 351 | |
| 352 | static struct flash_platform_data intcp_flash_data = { |
| 353 | .map_name = "cfi_probe", |
| 354 | .width = 4, |
| 355 | .init = intcp_flash_init, |
| 356 | .exit = intcp_flash_exit, |
| 357 | .set_vpp = intcp_flash_set_vpp, |
| 358 | }; |
| 359 | |
| 360 | static struct resource intcp_flash_resource = { |
| 361 | .start = INTCP_PA_FLASH_BASE, |
| 362 | .end = INTCP_PA_FLASH_BASE + INTCP_FLASH_SIZE - 1, |
| 363 | .flags = IORESOURCE_MEM, |
| 364 | }; |
| 365 | |
| 366 | static struct platform_device intcp_flash_device = { |
| 367 | .name = "armflash", |
| 368 | .id = 0, |
| 369 | .dev = { |
| 370 | .platform_data = &intcp_flash_data, |
| 371 | }, |
| 372 | .num_resources = 1, |
| 373 | .resource = &intcp_flash_resource, |
| 374 | }; |
| 375 | |
| 376 | static struct resource smc91x_resources[] = { |
| 377 | [0] = { |
Russell King | da7ba95 | 2010-01-17 19:59:58 +0000 | [diff] [blame] | 378 | .start = INTEGRATOR_CP_ETH_BASE, |
| 379 | .end = INTEGRATOR_CP_ETH_BASE + INTCP_ETH_SIZE - 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | .flags = IORESOURCE_MEM, |
| 381 | }, |
| 382 | [1] = { |
| 383 | .start = IRQ_CP_ETHINT, |
| 384 | .end = IRQ_CP_ETHINT, |
| 385 | .flags = IORESOURCE_IRQ, |
| 386 | }, |
| 387 | }; |
| 388 | |
| 389 | static struct platform_device smc91x_device = { |
| 390 | .name = "smc91x", |
| 391 | .id = 0, |
| 392 | .num_resources = ARRAY_SIZE(smc91x_resources), |
| 393 | .resource = smc91x_resources, |
| 394 | }; |
| 395 | |
| 396 | static struct platform_device *intcp_devs[] __initdata = { |
| 397 | &intcp_flash_device, |
| 398 | &smc91x_device, |
| 399 | }; |
| 400 | |
| 401 | /* |
| 402 | * It seems that the card insertion interrupt remains active after |
| 403 | * we've acknowledged it. We therefore ignore the interrupt, and |
| 404 | * rely on reading it from the SIC. This also means that we must |
| 405 | * clear the latched interrupt. |
| 406 | */ |
| 407 | static unsigned int mmc_status(struct device *dev) |
| 408 | { |
Russell King | b830b9b | 2010-01-17 20:45:12 +0000 | [diff] [blame] | 409 | unsigned int status = readl(IO_ADDRESS(0xca000000 + 4)); |
| 410 | writel(8, IO_ADDRESS(INTEGRATOR_CP_CTL_BASE + 8)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 | |
| 412 | return status & 8; |
| 413 | } |
| 414 | |
Linus Walleij | 6ef297f | 2009-09-22 14:29:36 +0100 | [diff] [blame] | 415 | static struct mmci_platform_data mmc_data = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34, |
| 417 | .status = mmc_status, |
Russell King | 7fb2bbf | 2009-07-09 15:15:12 +0100 | [diff] [blame] | 418 | .gpio_wp = -1, |
| 419 | .gpio_cd = -1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | }; |
| 421 | |
| 422 | static struct amba_device mmc_device = { |
| 423 | .dev = { |
Kay Sievers | 1d559e2 | 2009-01-06 10:44:43 -0800 | [diff] [blame] | 424 | .init_name = "mb:1c", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | .platform_data = &mmc_data, |
| 426 | }, |
| 427 | .res = { |
Russell King | da7ba95 | 2010-01-17 19:59:58 +0000 | [diff] [blame] | 428 | .start = INTEGRATOR_CP_MMC_BASE, |
| 429 | .end = INTEGRATOR_CP_MMC_BASE + SZ_4K - 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | .flags = IORESOURCE_MEM, |
| 431 | }, |
| 432 | .irq = { IRQ_CP_MMCIINT0, IRQ_CP_MMCIINT1 }, |
| 433 | .periphid = 0, |
| 434 | }; |
| 435 | |
| 436 | static struct amba_device aaci_device = { |
| 437 | .dev = { |
Kay Sievers | 1d559e2 | 2009-01-06 10:44:43 -0800 | [diff] [blame] | 438 | .init_name = "mb:1d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | }, |
| 440 | .res = { |
Russell King | da7ba95 | 2010-01-17 19:59:58 +0000 | [diff] [blame] | 441 | .start = INTEGRATOR_CP_AACI_BASE, |
| 442 | .end = INTEGRATOR_CP_AACI_BASE + SZ_4K - 1, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | .flags = IORESOURCE_MEM, |
| 444 | }, |
| 445 | .irq = { IRQ_CP_AACIINT, NO_IRQ }, |
| 446 | .periphid = 0, |
| 447 | }; |
| 448 | |
| 449 | |
| 450 | /* |
| 451 | * CLCD support |
| 452 | */ |
| 453 | static struct clcd_panel vga = { |
| 454 | .mode = { |
| 455 | .name = "VGA", |
| 456 | .refresh = 60, |
| 457 | .xres = 640, |
| 458 | .yres = 480, |
| 459 | .pixclock = 39721, |
| 460 | .left_margin = 40, |
| 461 | .right_margin = 24, |
| 462 | .upper_margin = 32, |
| 463 | .lower_margin = 11, |
| 464 | .hsync_len = 96, |
| 465 | .vsync_len = 2, |
| 466 | .sync = 0, |
| 467 | .vmode = FB_VMODE_NONINTERLACED, |
| 468 | }, |
| 469 | .width = -1, |
| 470 | .height = -1, |
| 471 | .tim2 = TIM2_BCD | TIM2_IPC, |
| 472 | .cntl = CNTL_LCDTFT | CNTL_LCDVCOMP(1), |
| 473 | .bpp = 16, |
| 474 | .grayscale = 0, |
| 475 | }; |
| 476 | |
| 477 | /* |
| 478 | * Ensure VGA is selected. |
| 479 | */ |
| 480 | static void cp_clcd_enable(struct clcd_fb *fb) |
| 481 | { |
Russell King | 4774e22 | 2005-04-30 23:32:38 +0100 | [diff] [blame] | 482 | u32 val; |
| 483 | |
| 484 | if (fb->fb.var.bits_per_pixel <= 8) |
| 485 | val = CM_CTRL_LCDMUXSEL_VGA_8421BPP; |
| 486 | else if (fb->fb.var.bits_per_pixel <= 16) |
Catalin Marinas | 14e54cc | 2006-01-28 20:54:50 +0000 | [diff] [blame] | 487 | val = CM_CTRL_LCDMUXSEL_VGA_16BPP |
| 488 | | CM_CTRL_LCDEN0 | CM_CTRL_LCDEN1 |
| 489 | | CM_CTRL_STATIC1 | CM_CTRL_STATIC2; |
Russell King | 4774e22 | 2005-04-30 23:32:38 +0100 | [diff] [blame] | 490 | else |
| 491 | val = 0; /* no idea for this, don't trust the docs */ |
| 492 | |
| 493 | cm_control(CM_CTRL_LCDMUXSEL_MASK| |
| 494 | CM_CTRL_LCDEN0| |
| 495 | CM_CTRL_LCDEN1| |
| 496 | CM_CTRL_STATIC1| |
| 497 | CM_CTRL_STATIC2| |
| 498 | CM_CTRL_STATIC| |
| 499 | CM_CTRL_n24BITEN, val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 500 | } |
| 501 | |
| 502 | static unsigned long framesize = SZ_1M; |
| 503 | |
| 504 | static int cp_clcd_setup(struct clcd_fb *fb) |
| 505 | { |
| 506 | dma_addr_t dma; |
| 507 | |
| 508 | fb->panel = &vga; |
| 509 | |
| 510 | fb->fb.screen_base = dma_alloc_writecombine(&fb->dev->dev, framesize, |
| 511 | &dma, GFP_KERNEL); |
| 512 | if (!fb->fb.screen_base) { |
| 513 | printk(KERN_ERR "CLCD: unable to map framebuffer\n"); |
| 514 | return -ENOMEM; |
| 515 | } |
| 516 | |
| 517 | fb->fb.fix.smem_start = dma; |
| 518 | fb->fb.fix.smem_len = framesize; |
| 519 | |
| 520 | return 0; |
| 521 | } |
| 522 | |
| 523 | static int cp_clcd_mmap(struct clcd_fb *fb, struct vm_area_struct *vma) |
| 524 | { |
| 525 | return dma_mmap_writecombine(&fb->dev->dev, vma, |
| 526 | fb->fb.screen_base, |
| 527 | fb->fb.fix.smem_start, |
| 528 | fb->fb.fix.smem_len); |
| 529 | } |
| 530 | |
| 531 | static void cp_clcd_remove(struct clcd_fb *fb) |
| 532 | { |
| 533 | dma_free_writecombine(&fb->dev->dev, fb->fb.fix.smem_len, |
| 534 | fb->fb.screen_base, fb->fb.fix.smem_start); |
| 535 | } |
| 536 | |
| 537 | static struct clcd_board clcd_data = { |
| 538 | .name = "Integrator/CP", |
| 539 | .check = clcdfb_check, |
| 540 | .decode = clcdfb_decode, |
| 541 | .enable = cp_clcd_enable, |
| 542 | .setup = cp_clcd_setup, |
| 543 | .mmap = cp_clcd_mmap, |
| 544 | .remove = cp_clcd_remove, |
| 545 | }; |
| 546 | |
| 547 | static struct amba_device clcd_device = { |
| 548 | .dev = { |
Kay Sievers | 1d559e2 | 2009-01-06 10:44:43 -0800 | [diff] [blame] | 549 | .init_name = "mb:c0", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | .coherent_dma_mask = ~0, |
| 551 | .platform_data = &clcd_data, |
| 552 | }, |
| 553 | .res = { |
| 554 | .start = INTCP_PA_CLCD_BASE, |
| 555 | .end = INTCP_PA_CLCD_BASE + SZ_4K - 1, |
| 556 | .flags = IORESOURCE_MEM, |
| 557 | }, |
| 558 | .dma_mask = ~0, |
| 559 | .irq = { IRQ_CP_CLCDCINT, NO_IRQ }, |
| 560 | .periphid = 0, |
| 561 | }; |
| 562 | |
| 563 | static struct amba_device *amba_devs[] __initdata = { |
| 564 | &mmc_device, |
| 565 | &aaci_device, |
| 566 | &clcd_device, |
| 567 | }; |
| 568 | |
| 569 | static void __init intcp_init(void) |
| 570 | { |
| 571 | int i; |
| 572 | |
Russell King | 0a0300d | 2010-01-12 12:28:00 +0000 | [diff] [blame] | 573 | clkdev_add_table(cp_lookups, ARRAY_SIZE(cp_lookups)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | platform_add_devices(intcp_devs, ARRAY_SIZE(intcp_devs)); |
| 575 | |
| 576 | for (i = 0; i < ARRAY_SIZE(amba_devs); i++) { |
| 577 | struct amba_device *d = amba_devs[i]; |
| 578 | amba_device_register(d, &iomem_resource); |
| 579 | } |
| 580 | } |
| 581 | |
Russell King | 5a46334 | 2010-01-16 23:52:12 +0000 | [diff] [blame] | 582 | #define TIMER0_VA_BASE __io_address(INTEGRATOR_TIMER0_BASE) |
| 583 | #define TIMER1_VA_BASE __io_address(INTEGRATOR_TIMER1_BASE) |
| 584 | #define TIMER2_VA_BASE __io_address(INTEGRATOR_TIMER2_BASE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 585 | |
| 586 | static void __init intcp_timer_init(void) |
| 587 | { |
Russell King | 5a46334 | 2010-01-16 23:52:12 +0000 | [diff] [blame] | 588 | writel(0, TIMER0_VA_BASE + TIMER_CTRL); |
| 589 | writel(0, TIMER1_VA_BASE + TIMER_CTRL); |
| 590 | writel(0, TIMER2_VA_BASE + TIMER_CTRL); |
| 591 | |
| 592 | sp804_clocksource_init(TIMER2_VA_BASE); |
| 593 | sp804_clockevents_init(TIMER1_VA_BASE, IRQ_TIMERINT1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 594 | } |
| 595 | |
| 596 | static struct sys_timer cp_timer = { |
| 597 | .init = intcp_timer_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | }; |
| 599 | |
| 600 | MACHINE_START(CINTEGRATOR, "ARM-IntegratorCP") |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 601 | /* Maintainer: ARM Ltd/Deep Blue Solutions Ltd */ |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 602 | .boot_params = 0x00000100, |
| 603 | .map_io = intcp_map_io, |
Russell King | 98c672c | 2010-05-22 18:18:57 +0100 | [diff] [blame] | 604 | .reserve = integrator_reserve, |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 605 | .init_irq = intcp_init_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | .timer = &cp_timer, |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 607 | .init_machine = intcp_init, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | MACHINE_END |