Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/arm/mach-integrator/integrator_ap.c |
| 3 | * |
| 4 | * Copyright (C) 2000-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, or |
| 9 | * (at your option) any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 19 | */ |
| 20 | #include <linux/types.h> |
| 21 | #include <linux/kernel.h> |
| 22 | #include <linux/init.h> |
| 23 | #include <linux/list.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 24 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/slab.h> |
| 26 | #include <linux/string.h> |
Rafael J. Wysocki | b780805 | 2011-04-22 22:02:55 +0200 | [diff] [blame] | 27 | #include <linux/syscore_ops.h> |
Russell King | a62c80e | 2006-01-07 13:52:45 +0000 | [diff] [blame] | 28 | #include <linux/amba/bus.h> |
| 29 | #include <linux/amba/kmi.h> |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 30 | #include <linux/clocksource.h> |
| 31 | #include <linux/clockchips.h> |
| 32 | #include <linux/interrupt.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 33 | #include <linux/io.h> |
Marc Zyngier | f07e762 | 2011-05-18 10:51:52 +0100 | [diff] [blame] | 34 | #include <linux/mtd/physmap.h> |
Linus Walleij | bb76079 | 2011-09-08 21:23:15 +0100 | [diff] [blame] | 35 | #include <linux/clk.h> |
Linus Walleij | a613163 | 2012-06-11 17:33:12 +0200 | [diff] [blame] | 36 | #include <linux/platform_data/clk-integrator.h> |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 37 | #include <linux/of_irq.h> |
| 38 | #include <linux/of_address.h> |
Linus Walleij | 4672cdd | 2012-09-06 09:08:47 +0100 | [diff] [blame] | 39 | #include <linux/of_platform.h> |
Linus Walleij | b71d842 | 2011-09-04 23:40:08 +0200 | [diff] [blame] | 40 | #include <video/vga.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 42 | #include <mach/hardware.h> |
Russell King | a285edc | 2010-01-14 19:59:37 +0000 | [diff] [blame] | 43 | #include <mach/platform.h> |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 44 | #include <asm/hardware/arm_timer.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | #include <asm/setup.h> |
Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 46 | #include <asm/param.h> /* HZ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <asm/mach-types.h> |
Linus Walleij | a9d6d15 | 2012-01-31 23:38:23 +0100 | [diff] [blame] | 48 | #include <asm/sched_clock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 50 | #include <mach/lm.h> |
Linus Walleij | 695436e | 2012-02-26 10:46:48 +0100 | [diff] [blame] | 51 | #include <mach/irqs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | |
| 53 | #include <asm/mach/arch.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | #include <asm/mach/irq.h> |
| 55 | #include <asm/mach/map.h> |
Rob Herring | 68ef632 | 2012-07-13 16:27:22 -0500 | [diff] [blame] | 56 | #include <asm/mach/pci.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | #include <asm/mach/time.h> |
| 58 | |
Russell King | c41b16f | 2011-01-19 15:32:15 +0000 | [diff] [blame] | 59 | #include <plat/fpga-irq.h> |
| 60 | |
Russell King | 98c672c | 2010-05-22 18:18:57 +0100 | [diff] [blame] | 61 | #include "common.h" |
| 62 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | /* |
| 64 | * All IO addresses are mapped onto VA 0xFFFx.xxxx, where x.xxxx |
| 65 | * is the (PA >> 12). |
| 66 | * |
| 67 | * Setup a VA for the Integrator interrupt controller (for header #0, |
| 68 | * just for now). |
| 69 | */ |
Russell King | c41b16f | 2011-01-19 15:32:15 +0000 | [diff] [blame] | 70 | #define VA_IC_BASE __io_address(INTEGRATOR_IC_BASE) |
| 71 | #define VA_SC_BASE __io_address(INTEGRATOR_SC_BASE) |
| 72 | #define VA_EBI_BASE __io_address(INTEGRATOR_EBI_BASE) |
| 73 | #define VA_CMIC_BASE __io_address(INTEGRATOR_HDR_IC) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | |
| 75 | /* |
| 76 | * Logical Physical |
| 77 | * e8000000 40000000 PCI memory PHYS_PCI_MEM_BASE (max 512M) |
| 78 | * ec000000 61000000 PCI config space PHYS_PCI_CONFIG_BASE (max 16M) |
| 79 | * ed000000 62000000 PCI V3 regs PHYS_PCI_V3_BASE (max 64k) |
Rob Herring | 68ef632 | 2012-07-13 16:27:22 -0500 | [diff] [blame] | 80 | * fee00000 60000000 PCI IO PHYS_PCI_IO_BASE (max 16M) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | * ef000000 Cache flush |
| 82 | * f1000000 10000000 Core module registers |
| 83 | * f1100000 11000000 System controller registers |
| 84 | * f1200000 12000000 EBI registers |
| 85 | * f1300000 13000000 Counter/Timer |
| 86 | * f1400000 14000000 Interrupt controller |
| 87 | * f1600000 16000000 UART 0 |
| 88 | * f1700000 17000000 UART 1 |
| 89 | * f1a00000 1a000000 Debug LEDs |
| 90 | * f1b00000 1b000000 GPIO |
| 91 | */ |
| 92 | |
| 93 | static struct map_desc ap_io_desc[] __initdata = { |
Deepak Saxena | c8d2729 | 2005-10-28 15:19:10 +0100 | [diff] [blame] | 94 | { |
| 95 | .virtual = IO_ADDRESS(INTEGRATOR_HDR_BASE), |
| 96 | .pfn = __phys_to_pfn(INTEGRATOR_HDR_BASE), |
| 97 | .length = SZ_4K, |
| 98 | .type = MT_DEVICE |
| 99 | }, { |
| 100 | .virtual = IO_ADDRESS(INTEGRATOR_SC_BASE), |
| 101 | .pfn = __phys_to_pfn(INTEGRATOR_SC_BASE), |
| 102 | .length = SZ_4K, |
| 103 | .type = MT_DEVICE |
| 104 | }, { |
| 105 | .virtual = IO_ADDRESS(INTEGRATOR_EBI_BASE), |
| 106 | .pfn = __phys_to_pfn(INTEGRATOR_EBI_BASE), |
| 107 | .length = SZ_4K, |
| 108 | .type = MT_DEVICE |
| 109 | }, { |
| 110 | .virtual = IO_ADDRESS(INTEGRATOR_CT_BASE), |
| 111 | .pfn = __phys_to_pfn(INTEGRATOR_CT_BASE), |
| 112 | .length = SZ_4K, |
| 113 | .type = MT_DEVICE |
| 114 | }, { |
| 115 | .virtual = IO_ADDRESS(INTEGRATOR_IC_BASE), |
| 116 | .pfn = __phys_to_pfn(INTEGRATOR_IC_BASE), |
| 117 | .length = SZ_4K, |
| 118 | .type = MT_DEVICE |
| 119 | }, { |
| 120 | .virtual = IO_ADDRESS(INTEGRATOR_UART0_BASE), |
| 121 | .pfn = __phys_to_pfn(INTEGRATOR_UART0_BASE), |
| 122 | .length = SZ_4K, |
| 123 | .type = MT_DEVICE |
| 124 | }, { |
| 125 | .virtual = IO_ADDRESS(INTEGRATOR_UART1_BASE), |
| 126 | .pfn = __phys_to_pfn(INTEGRATOR_UART1_BASE), |
| 127 | .length = SZ_4K, |
| 128 | .type = MT_DEVICE |
| 129 | }, { |
| 130 | .virtual = IO_ADDRESS(INTEGRATOR_DBG_BASE), |
| 131 | .pfn = __phys_to_pfn(INTEGRATOR_DBG_BASE), |
| 132 | .length = SZ_4K, |
| 133 | .type = MT_DEVICE |
| 134 | }, { |
Russell King | da7ba95 | 2010-01-17 19:59:58 +0000 | [diff] [blame] | 135 | .virtual = IO_ADDRESS(INTEGRATOR_AP_GPIO_BASE), |
| 136 | .pfn = __phys_to_pfn(INTEGRATOR_AP_GPIO_BASE), |
Deepak Saxena | c8d2729 | 2005-10-28 15:19:10 +0100 | [diff] [blame] | 137 | .length = SZ_4K, |
| 138 | .type = MT_DEVICE |
| 139 | }, { |
Arnd Bergmann | b7a3f8d | 2012-09-14 20:16:39 +0000 | [diff] [blame] | 140 | .virtual = (unsigned long)PCI_MEMORY_VADDR, |
Deepak Saxena | c8d2729 | 2005-10-28 15:19:10 +0100 | [diff] [blame] | 141 | .pfn = __phys_to_pfn(PHYS_PCI_MEM_BASE), |
| 142 | .length = SZ_16M, |
| 143 | .type = MT_DEVICE |
| 144 | }, { |
Arnd Bergmann | b7a3f8d | 2012-09-14 20:16:39 +0000 | [diff] [blame] | 145 | .virtual = (unsigned long)PCI_CONFIG_VADDR, |
Deepak Saxena | c8d2729 | 2005-10-28 15:19:10 +0100 | [diff] [blame] | 146 | .pfn = __phys_to_pfn(PHYS_PCI_CONFIG_BASE), |
| 147 | .length = SZ_16M, |
| 148 | .type = MT_DEVICE |
| 149 | }, { |
Arnd Bergmann | b7a3f8d | 2012-09-14 20:16:39 +0000 | [diff] [blame] | 150 | .virtual = (unsigned long)PCI_V3_VADDR, |
Deepak Saxena | c8d2729 | 2005-10-28 15:19:10 +0100 | [diff] [blame] | 151 | .pfn = __phys_to_pfn(PHYS_PCI_V3_BASE), |
| 152 | .length = SZ_64K, |
| 153 | .type = MT_DEVICE |
Deepak Saxena | c8d2729 | 2005-10-28 15:19:10 +0100 | [diff] [blame] | 154 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 155 | }; |
| 156 | |
| 157 | static void __init ap_map_io(void) |
| 158 | { |
| 159 | iotable_init(ap_io_desc, ARRAY_SIZE(ap_io_desc)); |
Arnd Bergmann | 21c8715 | 2012-09-24 07:22:02 +0000 | [diff] [blame] | 160 | vga_base = (unsigned long)PCI_MEMORY_VADDR; |
Rob Herring | 68ef632 | 2012-07-13 16:27:22 -0500 | [diff] [blame] | 161 | pci_map_io_early(__phys_to_pfn(PHYS_PCI_IO_BASE)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 162 | } |
| 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | #ifdef CONFIG_PM |
| 165 | static unsigned long ic_irq_enable; |
| 166 | |
Rafael J. Wysocki | b780805 | 2011-04-22 22:02:55 +0200 | [diff] [blame] | 167 | static int irq_suspend(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | { |
| 169 | ic_irq_enable = readl(VA_IC_BASE + IRQ_ENABLE); |
| 170 | return 0; |
| 171 | } |
| 172 | |
Rafael J. Wysocki | b780805 | 2011-04-22 22:02:55 +0200 | [diff] [blame] | 173 | static void irq_resume(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | { |
| 175 | /* disable all irq sources */ |
| 176 | writel(-1, VA_CMIC_BASE + IRQ_ENABLE_CLEAR); |
| 177 | writel(-1, VA_IC_BASE + IRQ_ENABLE_CLEAR); |
| 178 | writel(-1, VA_IC_BASE + FIQ_ENABLE_CLEAR); |
| 179 | |
| 180 | writel(ic_irq_enable, VA_IC_BASE + IRQ_ENABLE_SET); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | } |
| 182 | #else |
| 183 | #define irq_suspend NULL |
| 184 | #define irq_resume NULL |
| 185 | #endif |
| 186 | |
Rafael J. Wysocki | b780805 | 2011-04-22 22:02:55 +0200 | [diff] [blame] | 187 | static struct syscore_ops irq_syscore_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | .suspend = irq_suspend, |
| 189 | .resume = irq_resume, |
| 190 | }; |
| 191 | |
Rafael J. Wysocki | b780805 | 2011-04-22 22:02:55 +0200 | [diff] [blame] | 192 | static int __init irq_syscore_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | { |
Rafael J. Wysocki | b780805 | 2011-04-22 22:02:55 +0200 | [diff] [blame] | 194 | register_syscore_ops(&irq_syscore_ops); |
| 195 | |
| 196 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | } |
| 198 | |
Rafael J. Wysocki | b780805 | 2011-04-22 22:02:55 +0200 | [diff] [blame] | 199 | device_initcall(irq_syscore_init); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
| 201 | /* |
| 202 | * Flash handling. |
| 203 | */ |
| 204 | #define SC_CTRLC (VA_SC_BASE + INTEGRATOR_SC_CTRLC_OFFSET) |
| 205 | #define SC_CTRLS (VA_SC_BASE + INTEGRATOR_SC_CTRLS_OFFSET) |
| 206 | #define EBI_CSR1 (VA_EBI_BASE + INTEGRATOR_EBI_CSR1_OFFSET) |
| 207 | #define EBI_LOCK (VA_EBI_BASE + INTEGRATOR_EBI_LOCK_OFFSET) |
| 208 | |
Marc Zyngier | f07e762 | 2011-05-18 10:51:52 +0100 | [diff] [blame] | 209 | static int ap_flash_init(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | { |
| 211 | u32 tmp; |
| 212 | |
| 213 | writel(INTEGRATOR_SC_CTRL_nFLVPPEN | INTEGRATOR_SC_CTRL_nFLWP, SC_CTRLC); |
| 214 | |
| 215 | tmp = readl(EBI_CSR1) | INTEGRATOR_EBI_WRITE_ENABLE; |
| 216 | writel(tmp, EBI_CSR1); |
| 217 | |
| 218 | if (!(readl(EBI_CSR1) & INTEGRATOR_EBI_WRITE_ENABLE)) { |
| 219 | writel(0xa05f, EBI_LOCK); |
| 220 | writel(tmp, EBI_CSR1); |
| 221 | writel(0, EBI_LOCK); |
| 222 | } |
| 223 | return 0; |
| 224 | } |
| 225 | |
Marc Zyngier | f07e762 | 2011-05-18 10:51:52 +0100 | [diff] [blame] | 226 | static void ap_flash_exit(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | { |
| 228 | u32 tmp; |
| 229 | |
| 230 | writel(INTEGRATOR_SC_CTRL_nFLVPPEN | INTEGRATOR_SC_CTRL_nFLWP, SC_CTRLC); |
| 231 | |
| 232 | tmp = readl(EBI_CSR1) & ~INTEGRATOR_EBI_WRITE_ENABLE; |
| 233 | writel(tmp, EBI_CSR1); |
| 234 | |
| 235 | if (readl(EBI_CSR1) & INTEGRATOR_EBI_WRITE_ENABLE) { |
| 236 | writel(0xa05f, EBI_LOCK); |
| 237 | writel(tmp, EBI_CSR1); |
| 238 | writel(0, EBI_LOCK); |
| 239 | } |
| 240 | } |
| 241 | |
Marc Zyngier | 667f390 | 2011-05-18 10:51:55 +0100 | [diff] [blame] | 242 | static void ap_flash_set_vpp(struct platform_device *pdev, int on) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | { |
Russell King | c41b16f | 2011-01-19 15:32:15 +0000 | [diff] [blame] | 244 | void __iomem *reg = on ? SC_CTRLS : SC_CTRLC; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | |
| 246 | writel(INTEGRATOR_SC_CTRL_nFLVPPEN, reg); |
| 247 | } |
| 248 | |
Marc Zyngier | f07e762 | 2011-05-18 10:51:52 +0100 | [diff] [blame] | 249 | static struct physmap_flash_data ap_flash_data = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | .width = 4, |
| 251 | .init = ap_flash_init, |
| 252 | .exit = ap_flash_exit, |
| 253 | .set_vpp = ap_flash_set_vpp, |
| 254 | }; |
| 255 | |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 256 | /* |
| 257 | * Where is the timer (VA)? |
| 258 | */ |
Arnd Bergmann | b7a3f8d | 2012-09-14 20:16:39 +0000 | [diff] [blame] | 259 | #define TIMER0_VA_BASE __io_address(INTEGRATOR_TIMER0_BASE) |
| 260 | #define TIMER1_VA_BASE __io_address(INTEGRATOR_TIMER1_BASE) |
| 261 | #define TIMER2_VA_BASE __io_address(INTEGRATOR_TIMER2_BASE) |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 262 | |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 263 | static unsigned long timer_reload; |
| 264 | |
Linus Walleij | a9d6d15 | 2012-01-31 23:38:23 +0100 | [diff] [blame] | 265 | static u32 notrace integrator_read_sched_clock(void) |
| 266 | { |
| 267 | return -readl((void __iomem *) TIMER2_VA_BASE + TIMER_VALUE); |
| 268 | } |
| 269 | |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 270 | static void integrator_clocksource_init(unsigned long inrate, |
| 271 | void __iomem *base) |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 272 | { |
Linus Walleij | bb9ea77 | 2011-09-06 08:08:13 +0100 | [diff] [blame] | 273 | u32 ctrl = TIMER_CTRL_ENABLE | TIMER_CTRL_PERIODIC; |
Linus Walleij | bb76079 | 2011-09-08 21:23:15 +0100 | [diff] [blame] | 274 | unsigned long rate = inrate; |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 275 | |
Linus Walleij | bb76079 | 2011-09-08 21:23:15 +0100 | [diff] [blame] | 276 | if (rate >= 1500000) { |
| 277 | rate /= 16; |
Linus Walleij | bb9ea77 | 2011-09-06 08:08:13 +0100 | [diff] [blame] | 278 | ctrl |= TIMER_CTRL_DIV16; |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 279 | } |
| 280 | |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 281 | writel(0xffff, base + TIMER_LOAD); |
Linus Walleij | bb9ea77 | 2011-09-06 08:08:13 +0100 | [diff] [blame] | 282 | writel(ctrl, base + TIMER_CTRL); |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 283 | |
Russell King | c5039f5 | 2011-05-08 15:35:22 +0100 | [diff] [blame] | 284 | clocksource_mmio_init(base + TIMER_VALUE, "timer2", |
Linus Walleij | bb76079 | 2011-09-08 21:23:15 +0100 | [diff] [blame] | 285 | rate, 200, 16, clocksource_mmio_readl_down); |
Linus Walleij | a9d6d15 | 2012-01-31 23:38:23 +0100 | [diff] [blame] | 286 | setup_sched_clock(integrator_read_sched_clock, 16, rate); |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 287 | } |
| 288 | |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 289 | static void __iomem * clkevt_base; |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 290 | |
| 291 | /* |
| 292 | * IRQ handler for the timer |
| 293 | */ |
| 294 | static irqreturn_t integrator_timer_interrupt(int irq, void *dev_id) |
| 295 | { |
| 296 | struct clock_event_device *evt = dev_id; |
| 297 | |
| 298 | /* clear the interrupt */ |
| 299 | writel(1, clkevt_base + TIMER_INTCLR); |
| 300 | |
| 301 | evt->event_handler(evt); |
| 302 | |
| 303 | return IRQ_HANDLED; |
| 304 | } |
| 305 | |
| 306 | static void clkevt_set_mode(enum clock_event_mode mode, struct clock_event_device *evt) |
| 307 | { |
| 308 | u32 ctrl = readl(clkevt_base + TIMER_CTRL) & ~TIMER_CTRL_ENABLE; |
| 309 | |
Linus Walleij | 02f5632 | 2011-09-08 21:21:42 +0100 | [diff] [blame] | 310 | /* Disable timer */ |
| 311 | writel(ctrl, clkevt_base + TIMER_CTRL); |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 312 | |
Linus Walleij | 02f5632 | 2011-09-08 21:21:42 +0100 | [diff] [blame] | 313 | switch (mode) { |
| 314 | case CLOCK_EVT_MODE_PERIODIC: |
| 315 | /* Enable the timer and start the periodic tick */ |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 316 | writel(timer_reload, clkevt_base + TIMER_LOAD); |
| 317 | ctrl |= TIMER_CTRL_PERIODIC | TIMER_CTRL_ENABLE; |
Linus Walleij | 02f5632 | 2011-09-08 21:21:42 +0100 | [diff] [blame] | 318 | writel(ctrl, clkevt_base + TIMER_CTRL); |
| 319 | break; |
| 320 | case CLOCK_EVT_MODE_ONESHOT: |
| 321 | /* Leave the timer disabled, .set_next_event will enable it */ |
| 322 | ctrl &= ~TIMER_CTRL_PERIODIC; |
| 323 | writel(ctrl, clkevt_base + TIMER_CTRL); |
| 324 | break; |
| 325 | case CLOCK_EVT_MODE_UNUSED: |
| 326 | case CLOCK_EVT_MODE_SHUTDOWN: |
| 327 | case CLOCK_EVT_MODE_RESUME: |
| 328 | default: |
| 329 | /* Just leave in disabled state */ |
| 330 | break; |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 331 | } |
| 332 | |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | static int clkevt_set_next_event(unsigned long next, struct clock_event_device *evt) |
| 336 | { |
| 337 | unsigned long ctrl = readl(clkevt_base + TIMER_CTRL); |
| 338 | |
| 339 | writel(ctrl & ~TIMER_CTRL_ENABLE, clkevt_base + TIMER_CTRL); |
| 340 | writel(next, clkevt_base + TIMER_LOAD); |
| 341 | writel(ctrl | TIMER_CTRL_ENABLE, clkevt_base + TIMER_CTRL); |
| 342 | |
| 343 | return 0; |
| 344 | } |
| 345 | |
| 346 | static struct clock_event_device integrator_clockevent = { |
| 347 | .name = "timer1", |
Linus Walleij | 02f5632 | 2011-09-08 21:21:42 +0100 | [diff] [blame] | 348 | .features = CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_ONESHOT, |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 349 | .set_mode = clkevt_set_mode, |
| 350 | .set_next_event = clkevt_set_next_event, |
| 351 | .rating = 300, |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 352 | }; |
| 353 | |
| 354 | static struct irqaction integrator_timer_irq = { |
| 355 | .name = "timer", |
| 356 | .flags = IRQF_DISABLED | IRQF_TIMER | IRQF_IRQPOLL, |
| 357 | .handler = integrator_timer_interrupt, |
| 358 | .dev_id = &integrator_clockevent, |
| 359 | }; |
| 360 | |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 361 | static void integrator_clockevent_init(unsigned long inrate, |
| 362 | void __iomem *base, int irq) |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 363 | { |
Linus Walleij | bb76079 | 2011-09-08 21:23:15 +0100 | [diff] [blame] | 364 | unsigned long rate = inrate; |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 365 | unsigned int ctrl = 0; |
| 366 | |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 367 | clkevt_base = base; |
Linus Walleij | 6d8ce71 | 2011-09-08 21:22:32 +0100 | [diff] [blame] | 368 | /* Calculate and program a divisor */ |
Linus Walleij | bb76079 | 2011-09-08 21:23:15 +0100 | [diff] [blame] | 369 | if (rate > 0x100000 * HZ) { |
| 370 | rate /= 256; |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 371 | ctrl |= TIMER_CTRL_DIV256; |
Linus Walleij | bb76079 | 2011-09-08 21:23:15 +0100 | [diff] [blame] | 372 | } else if (rate > 0x10000 * HZ) { |
| 373 | rate /= 16; |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 374 | ctrl |= TIMER_CTRL_DIV16; |
| 375 | } |
Linus Walleij | bb76079 | 2011-09-08 21:23:15 +0100 | [diff] [blame] | 376 | timer_reload = rate / HZ; |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 377 | writel(ctrl, clkevt_base + TIMER_CTRL); |
| 378 | |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 379 | setup_irq(irq, &integrator_timer_irq); |
Linus Walleij | 6d8ce71 | 2011-09-08 21:22:32 +0100 | [diff] [blame] | 380 | clockevents_config_and_register(&integrator_clockevent, |
Linus Walleij | bb76079 | 2011-09-08 21:23:15 +0100 | [diff] [blame] | 381 | rate, |
Linus Walleij | 6d8ce71 | 2011-09-08 21:22:32 +0100 | [diff] [blame] | 382 | 1, |
| 383 | 0xffffU); |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 384 | } |
| 385 | |
Linus Walleij | a613163 | 2012-06-11 17:33:12 +0200 | [diff] [blame] | 386 | void __init ap_init_early(void) |
| 387 | { |
| 388 | } |
| 389 | |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 390 | #ifdef CONFIG_OF |
| 391 | |
| 392 | static void __init ap_init_timer_of(void) |
| 393 | { |
| 394 | struct device_node *node; |
| 395 | const char *path; |
| 396 | void __iomem *base; |
| 397 | int err; |
| 398 | int irq; |
| 399 | struct clk *clk; |
| 400 | unsigned long rate; |
| 401 | |
| 402 | clk = clk_get_sys("ap_timer", NULL); |
| 403 | BUG_ON(IS_ERR(clk)); |
| 404 | clk_prepare_enable(clk); |
| 405 | rate = clk_get_rate(clk); |
| 406 | |
| 407 | err = of_property_read_string(of_aliases, |
| 408 | "arm,timer-primary", &path); |
| 409 | if (WARN_ON(err)) |
| 410 | return; |
| 411 | node = of_find_node_by_path(path); |
| 412 | base = of_iomap(node, 0); |
| 413 | if (WARN_ON(!base)) |
| 414 | return; |
| 415 | writel(0, base + TIMER_CTRL); |
| 416 | integrator_clocksource_init(rate, base); |
| 417 | |
| 418 | err = of_property_read_string(of_aliases, |
| 419 | "arm,timer-secondary", &path); |
| 420 | if (WARN_ON(err)) |
| 421 | return; |
| 422 | node = of_find_node_by_path(path); |
| 423 | base = of_iomap(node, 0); |
| 424 | if (WARN_ON(!base)) |
| 425 | return; |
| 426 | irq = irq_of_parse_and_map(node, 0); |
| 427 | writel(0, base + TIMER_CTRL); |
| 428 | integrator_clockevent_init(rate, base, irq); |
| 429 | } |
| 430 | |
| 431 | static struct sys_timer ap_of_timer = { |
| 432 | .init = ap_init_timer_of, |
| 433 | }; |
| 434 | |
| 435 | static const struct of_device_id fpga_irq_of_match[] __initconst = { |
| 436 | { .compatible = "arm,versatile-fpga-irq", .data = fpga_irq_of_init, }, |
| 437 | { /* Sentinel */ } |
| 438 | }; |
| 439 | |
| 440 | static void __init ap_init_irq_of(void) |
| 441 | { |
| 442 | /* disable core module IRQs */ |
| 443 | writel(0xffffffffU, VA_CMIC_BASE + IRQ_ENABLE_CLEAR); |
| 444 | of_irq_init(fpga_irq_of_match); |
| 445 | integrator_clk_init(false); |
| 446 | } |
| 447 | |
Linus Walleij | 4672cdd | 2012-09-06 09:08:47 +0100 | [diff] [blame] | 448 | /* For the Device Tree, add in the UART callbacks as AUXDATA */ |
| 449 | static struct of_dev_auxdata ap_auxdata_lookup[] __initdata = { |
| 450 | OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_RTC_BASE, |
| 451 | "rtc", NULL), |
| 452 | OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART0_BASE, |
| 453 | "uart0", &integrator_uart_data), |
| 454 | OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART1_BASE, |
| 455 | "uart1", &integrator_uart_data), |
| 456 | OF_DEV_AUXDATA("arm,primecell", KMI0_BASE, |
| 457 | "kmi0", NULL), |
| 458 | OF_DEV_AUXDATA("arm,primecell", KMI1_BASE, |
| 459 | "kmi1", NULL), |
Linus Walleij | 73efd53 | 2012-09-06 09:09:11 +0100 | [diff] [blame] | 460 | OF_DEV_AUXDATA("cfi-flash", INTEGRATOR_FLASH_BASE, |
| 461 | "physmap-flash", &ap_flash_data), |
Linus Walleij | 4672cdd | 2012-09-06 09:08:47 +0100 | [diff] [blame] | 462 | { /* sentinel */ }, |
| 463 | }; |
| 464 | |
| 465 | static void __init ap_init_of(void) |
| 466 | { |
| 467 | unsigned long sc_dec; |
| 468 | int i; |
| 469 | |
| 470 | of_platform_populate(NULL, of_default_bus_match_table, |
| 471 | ap_auxdata_lookup, NULL); |
| 472 | |
Linus Walleij | 4672cdd | 2012-09-06 09:08:47 +0100 | [diff] [blame] | 473 | sc_dec = readl(VA_SC_BASE + INTEGRATOR_SC_DEC_OFFSET); |
| 474 | for (i = 0; i < 4; i++) { |
| 475 | struct lm_device *lmdev; |
| 476 | |
| 477 | if ((sc_dec & (16 << i)) == 0) |
| 478 | continue; |
| 479 | |
| 480 | lmdev = kzalloc(sizeof(struct lm_device), GFP_KERNEL); |
| 481 | if (!lmdev) |
| 482 | continue; |
| 483 | |
| 484 | lmdev->resource.start = 0xc0000000 + 0x10000000 * i; |
| 485 | lmdev->resource.end = lmdev->resource.start + 0x0fffffff; |
| 486 | lmdev->resource.flags = IORESOURCE_MEM; |
| 487 | lmdev->irq = IRQ_AP_EXPINT0 + i; |
| 488 | lmdev->id = i; |
| 489 | |
| 490 | lm_device_register(lmdev); |
| 491 | } |
| 492 | } |
| 493 | |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 494 | static const char * ap_dt_board_compat[] = { |
| 495 | "arm,integrator-ap", |
| 496 | NULL, |
| 497 | }; |
| 498 | |
| 499 | DT_MACHINE_START(INTEGRATOR_AP_DT, "ARM Integrator/AP (Device Tree)") |
| 500 | .reserve = integrator_reserve, |
| 501 | .map_io = ap_map_io, |
| 502 | .nr_irqs = NR_IRQS_INTEGRATOR_AP, |
| 503 | .init_early = ap_init_early, |
| 504 | .init_irq = ap_init_irq_of, |
| 505 | .handle_irq = fpga_handle_irq, |
| 506 | .timer = &ap_of_timer, |
Linus Walleij | 4672cdd | 2012-09-06 09:08:47 +0100 | [diff] [blame] | 507 | .init_machine = ap_init_of, |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 508 | .restart = integrator_restart, |
| 509 | .dt_compat = ap_dt_board_compat, |
| 510 | MACHINE_END |
| 511 | |
| 512 | #endif |
| 513 | |
| 514 | #ifdef CONFIG_ATAGS |
| 515 | |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 516 | /* |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 517 | * This is where non-devicetree initialization code is collected and stashed |
| 518 | * for eventual deletion. |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 519 | */ |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 520 | |
Linus Walleij | 73efd53 | 2012-09-06 09:09:11 +0100 | [diff] [blame] | 521 | static struct resource cfi_flash_resource = { |
| 522 | .start = INTEGRATOR_FLASH_BASE, |
| 523 | .end = INTEGRATOR_FLASH_BASE + INTEGRATOR_FLASH_SIZE - 1, |
| 524 | .flags = IORESOURCE_MEM, |
| 525 | }; |
| 526 | |
| 527 | static struct platform_device cfi_flash_device = { |
| 528 | .name = "physmap-flash", |
| 529 | .id = 0, |
| 530 | .dev = { |
| 531 | .platform_data = &ap_flash_data, |
| 532 | }, |
| 533 | .num_resources = 1, |
| 534 | .resource = &cfi_flash_resource, |
| 535 | }; |
| 536 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | static void __init ap_init_timer(void) |
| 538 | { |
Linus Walleij | bb76079 | 2011-09-08 21:23:15 +0100 | [diff] [blame] | 539 | struct clk *clk; |
| 540 | unsigned long rate; |
| 541 | |
| 542 | clk = clk_get_sys("ap_timer", NULL); |
| 543 | BUG_ON(IS_ERR(clk)); |
Linus Walleij | 8bb8148 | 2012-08-05 22:37:55 +0200 | [diff] [blame] | 544 | clk_prepare_enable(clk); |
Linus Walleij | bb76079 | 2011-09-08 21:23:15 +0100 | [diff] [blame] | 545 | rate = clk_get_rate(clk); |
Russell King | 6be4826 | 2010-01-17 16:20:56 +0000 | [diff] [blame] | 546 | |
| 547 | writel(0, TIMER0_VA_BASE + TIMER_CTRL); |
| 548 | writel(0, TIMER1_VA_BASE + TIMER_CTRL); |
| 549 | writel(0, TIMER2_VA_BASE + TIMER_CTRL); |
| 550 | |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 551 | integrator_clocksource_init(rate, (void __iomem *)TIMER2_VA_BASE); |
| 552 | integrator_clockevent_init(rate, (void __iomem *)TIMER1_VA_BASE, |
| 553 | IRQ_TIMERINT1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | } |
| 555 | |
| 556 | static struct sys_timer ap_timer = { |
| 557 | .init = ap_init_timer, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 558 | }; |
| 559 | |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 560 | #define INTEGRATOR_SC_VALID_INT 0x003fffff |
| 561 | |
| 562 | static void __init ap_init_irq(void) |
| 563 | { |
| 564 | /* Disable all interrupts initially. */ |
| 565 | /* Do the core module ones */ |
| 566 | writel(-1, VA_CMIC_BASE + IRQ_ENABLE_CLEAR); |
| 567 | |
| 568 | /* do the header card stuff next */ |
| 569 | writel(-1, VA_IC_BASE + IRQ_ENABLE_CLEAR); |
| 570 | writel(-1, VA_IC_BASE + FIQ_ENABLE_CLEAR); |
| 571 | |
| 572 | fpga_irq_init(VA_IC_BASE, "SC", IRQ_PIC_START, |
| 573 | -1, INTEGRATOR_SC_VALID_INT, NULL); |
| 574 | integrator_clk_init(false); |
| 575 | } |
| 576 | |
Linus Walleij | 4672cdd | 2012-09-06 09:08:47 +0100 | [diff] [blame] | 577 | static void __init ap_init(void) |
| 578 | { |
| 579 | unsigned long sc_dec; |
| 580 | int i; |
| 581 | |
| 582 | platform_device_register(&cfi_flash_device); |
| 583 | |
| 584 | sc_dec = readl(VA_SC_BASE + INTEGRATOR_SC_DEC_OFFSET); |
| 585 | for (i = 0; i < 4; i++) { |
| 586 | struct lm_device *lmdev; |
| 587 | |
| 588 | if ((sc_dec & (16 << i)) == 0) |
| 589 | continue; |
| 590 | |
| 591 | lmdev = kzalloc(sizeof(struct lm_device), GFP_KERNEL); |
| 592 | if (!lmdev) |
| 593 | continue; |
| 594 | |
| 595 | lmdev->resource.start = 0xc0000000 + 0x10000000 * i; |
| 596 | lmdev->resource.end = lmdev->resource.start + 0x0fffffff; |
| 597 | lmdev->resource.flags = IORESOURCE_MEM; |
| 598 | lmdev->irq = IRQ_AP_EXPINT0 + i; |
| 599 | lmdev->id = i; |
| 600 | |
| 601 | lm_device_register(lmdev); |
| 602 | } |
| 603 | |
| 604 | integrator_init(false); |
| 605 | } |
| 606 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 607 | MACHINE_START(INTEGRATOR, "ARM-Integrator") |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 608 | /* Maintainer: ARM Ltd/Deep Blue Solutions Ltd */ |
Nicolas Pitre | c5e587a | 2011-07-05 22:38:12 -0400 | [diff] [blame] | 609 | .atag_offset = 0x100, |
Russell King | 98c672c | 2010-05-22 18:18:57 +0100 | [diff] [blame] | 610 | .reserve = integrator_reserve, |
Russell King | c735c98 | 2011-01-11 13:00:04 +0000 | [diff] [blame] | 611 | .map_io = ap_map_io, |
Linus Walleij | 695436e | 2012-02-26 10:46:48 +0100 | [diff] [blame] | 612 | .nr_irqs = NR_IRQS_INTEGRATOR_AP, |
Linus Walleij | a613163 | 2012-06-11 17:33:12 +0200 | [diff] [blame] | 613 | .init_early = ap_init_early, |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 614 | .init_irq = ap_init_irq, |
Linus Walleij | 3108e6a | 2012-04-28 14:33:47 +0100 | [diff] [blame] | 615 | .handle_irq = fpga_handle_irq, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | .timer = &ap_timer, |
Russell King | e9dea0c | 2005-07-03 17:38:58 +0100 | [diff] [blame] | 617 | .init_machine = ap_init, |
Russell King | 6338b66 | 2011-11-03 19:54:37 +0000 | [diff] [blame] | 618 | .restart = integrator_restart, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 619 | MACHINE_END |
Linus Walleij | 4980f9b | 2012-09-06 09:08:24 +0100 | [diff] [blame] | 620 | |
| 621 | #endif |