Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2010-2011 Samsung Electronics Co., Ltd. |
| 3 | * http://www.samsung.com |
| 4 | * |
| 5 | * Common Codes for EXYNOS |
| 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 version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/interrupt.h> |
| 14 | #include <linux/irq.h> |
Rob Herring | a900e5d | 2013-02-12 16:04:52 -0600 | [diff] [blame] | 15 | #include <linux/irqchip.h> |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 16 | #include <linux/io.h> |
Linus Torvalds | 7affca3 | 2012-01-07 12:03:30 -0800 | [diff] [blame] | 17 | #include <linux/device.h> |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 18 | #include <linux/gpio.h> |
| 19 | #include <linux/sched.h> |
| 20 | #include <linux/serial_core.h> |
Arnd Bergmann | 237c78b | 2012-01-07 12:30:20 +0000 | [diff] [blame] | 21 | #include <linux/of.h> |
Doug Anderson | 5b7897d | 2012-11-27 11:53:14 -0800 | [diff] [blame] | 22 | #include <linux/of_fdt.h> |
Arnd Bergmann | 237c78b | 2012-01-07 12:30:20 +0000 | [diff] [blame] | 23 | #include <linux/of_irq.h> |
Thomas Abraham | 1e60bc0 | 2012-05-15 16:18:35 +0900 | [diff] [blame] | 24 | #include <linux/export.h> |
| 25 | #include <linux/irqdomain.h> |
Thomas Abraham | e873a47 | 2012-05-15 16:25:23 +0900 | [diff] [blame] | 26 | #include <linux/of_address.h> |
Thomas Abraham | 6923ae4 | 2013-03-09 17:03:29 +0900 | [diff] [blame] | 27 | #include <linux/clocksource.h> |
| 28 | #include <linux/clk-provider.h> |
Rob Herring | 520f7bd | 2012-12-27 13:10:24 -0600 | [diff] [blame] | 29 | #include <linux/irqchip/arm-gic.h> |
Catalin Marinas | de88cbb | 2013-01-18 15:31:37 +0000 | [diff] [blame] | 30 | #include <linux/irqchip/chained_irq.h> |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 31 | |
| 32 | #include <asm/proc-fns.h> |
Arnd Bergmann | 40ba95f | 2012-01-07 11:51:28 +0000 | [diff] [blame] | 33 | #include <asm/exception.h> |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 34 | #include <asm/hardware/cache-l2x0.h> |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 35 | #include <asm/mach/map.h> |
| 36 | #include <asm/mach/irq.h> |
Amit Daniel Kachhap | b756a50 | 2012-03-08 02:07:41 -0800 | [diff] [blame] | 37 | #include <asm/cacheflush.h> |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 38 | |
| 39 | #include <mach/regs-irq.h> |
| 40 | #include <mach/regs-pmu.h> |
| 41 | #include <mach/regs-gpio.h> |
Chanho Park | b7bbdbe | 2012-12-12 14:03:54 +0900 | [diff] [blame] | 42 | #include <mach/irqs.h> |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 43 | |
| 44 | #include <plat/cpu.h> |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 45 | #include <plat/devs.h> |
| 46 | #include <plat/pm.h> |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 47 | #include <plat/sdhci.h> |
| 48 | #include <plat/gpio-cfg.h> |
| 49 | #include <plat/adc-core.h> |
| 50 | #include <plat/fb-core.h> |
| 51 | #include <plat/fimc-core.h> |
| 52 | #include <plat/iic-core.h> |
| 53 | #include <plat/tv-core.h> |
Heiko Stuebner | 308b3af | 2012-10-17 16:47:11 +0900 | [diff] [blame] | 54 | #include <plat/spi-core.h> |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 55 | #include <plat/regs-serial.h> |
| 56 | |
| 57 | #include "common.h" |
Amit Daniel Kachhap | 6cdeddc | 2012-03-08 02:09:12 -0800 | [diff] [blame] | 58 | #define L2_AUX_VAL 0x7C470001 |
| 59 | #define L2_AUX_MASK 0xC200ffff |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 60 | |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 61 | static const char name_exynos4210[] = "EXYNOS4210"; |
| 62 | static const char name_exynos4212[] = "EXYNOS4212"; |
| 63 | static const char name_exynos4412[] = "EXYNOS4412"; |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 64 | static const char name_exynos5250[] = "EXYNOS5250"; |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 65 | static const char name_exynos5440[] = "EXYNOS5440"; |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 66 | |
Kukjin Kim | 906c789 | 2012-02-11 21:27:08 +0900 | [diff] [blame] | 67 | static void exynos4_map_io(void); |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 68 | static void exynos5_map_io(void); |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 69 | static void exynos5440_map_io(void); |
Thomas Abraham | 55b6ef7 | 2012-10-29 19:46:49 +0900 | [diff] [blame] | 70 | static void exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no); |
Kukjin Kim | 906c789 | 2012-02-11 21:27:08 +0900 | [diff] [blame] | 71 | static int exynos_init(void); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 72 | |
Thomas Abraham | 9274427 | 2013-03-09 17:03:33 +0900 | [diff] [blame] | 73 | unsigned long xxti_f = 0, xusbxti_f = 0; |
| 74 | |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 75 | static struct cpu_table cpu_ids[] __initdata = { |
| 76 | { |
| 77 | .idcode = EXYNOS4210_CPU_ID, |
| 78 | .idmask = EXYNOS4_CPU_MASK, |
| 79 | .map_io = exynos4_map_io, |
Thomas Abraham | 55b6ef7 | 2012-10-29 19:46:49 +0900 | [diff] [blame] | 80 | .init_uarts = exynos4_init_uarts, |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 81 | .init = exynos_init, |
| 82 | .name = name_exynos4210, |
| 83 | }, { |
| 84 | .idcode = EXYNOS4212_CPU_ID, |
| 85 | .idmask = EXYNOS4_CPU_MASK, |
| 86 | .map_io = exynos4_map_io, |
Thomas Abraham | 55b6ef7 | 2012-10-29 19:46:49 +0900 | [diff] [blame] | 87 | .init_uarts = exynos4_init_uarts, |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 88 | .init = exynos_init, |
| 89 | .name = name_exynos4212, |
| 90 | }, { |
| 91 | .idcode = EXYNOS4412_CPU_ID, |
| 92 | .idmask = EXYNOS4_CPU_MASK, |
| 93 | .map_io = exynos4_map_io, |
Thomas Abraham | 55b6ef7 | 2012-10-29 19:46:49 +0900 | [diff] [blame] | 94 | .init_uarts = exynos4_init_uarts, |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 95 | .init = exynos_init, |
| 96 | .name = name_exynos4412, |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 97 | }, { |
| 98 | .idcode = EXYNOS5250_SOC_ID, |
| 99 | .idmask = EXYNOS5_SOC_MASK, |
| 100 | .map_io = exynos5_map_io, |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 101 | .init = exynos_init, |
| 102 | .name = name_exynos5250, |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 103 | }, { |
| 104 | .idcode = EXYNOS5440_SOC_ID, |
| 105 | .idmask = EXYNOS5_SOC_MASK, |
| 106 | .map_io = exynos5440_map_io, |
| 107 | .init = exynos_init, |
| 108 | .name = name_exynos5440, |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 109 | }, |
| 110 | }; |
| 111 | |
| 112 | /* Initial IO mappings */ |
| 113 | |
| 114 | static struct map_desc exynos_iodesc[] __initdata = { |
| 115 | { |
| 116 | .virtual = (unsigned long)S5P_VA_CHIPID, |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 117 | .pfn = __phys_to_pfn(EXYNOS_PA_CHIPID), |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 118 | .length = SZ_4K, |
| 119 | .type = MT_DEVICE, |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 120 | }, |
| 121 | }; |
| 122 | |
| 123 | static struct map_desc exynos4_iodesc[] __initdata = { |
| 124 | { |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 125 | .virtual = (unsigned long)S3C_VA_SYS, |
| 126 | .pfn = __phys_to_pfn(EXYNOS4_PA_SYSCON), |
| 127 | .length = SZ_64K, |
| 128 | .type = MT_DEVICE, |
| 129 | }, { |
| 130 | .virtual = (unsigned long)S3C_VA_TIMER, |
| 131 | .pfn = __phys_to_pfn(EXYNOS4_PA_TIMER), |
| 132 | .length = SZ_16K, |
| 133 | .type = MT_DEVICE, |
| 134 | }, { |
| 135 | .virtual = (unsigned long)S3C_VA_WATCHDOG, |
| 136 | .pfn = __phys_to_pfn(EXYNOS4_PA_WATCHDOG), |
| 137 | .length = SZ_4K, |
| 138 | .type = MT_DEVICE, |
| 139 | }, { |
| 140 | .virtual = (unsigned long)S5P_VA_SROMC, |
| 141 | .pfn = __phys_to_pfn(EXYNOS4_PA_SROMC), |
| 142 | .length = SZ_4K, |
| 143 | .type = MT_DEVICE, |
| 144 | }, { |
| 145 | .virtual = (unsigned long)S5P_VA_SYSTIMER, |
| 146 | .pfn = __phys_to_pfn(EXYNOS4_PA_SYSTIMER), |
| 147 | .length = SZ_4K, |
| 148 | .type = MT_DEVICE, |
| 149 | }, { |
| 150 | .virtual = (unsigned long)S5P_VA_PMU, |
| 151 | .pfn = __phys_to_pfn(EXYNOS4_PA_PMU), |
| 152 | .length = SZ_64K, |
| 153 | .type = MT_DEVICE, |
| 154 | }, { |
| 155 | .virtual = (unsigned long)S5P_VA_COMBINER_BASE, |
| 156 | .pfn = __phys_to_pfn(EXYNOS4_PA_COMBINER), |
| 157 | .length = SZ_4K, |
| 158 | .type = MT_DEVICE, |
| 159 | }, { |
| 160 | .virtual = (unsigned long)S5P_VA_GIC_CPU, |
| 161 | .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_CPU), |
| 162 | .length = SZ_64K, |
| 163 | .type = MT_DEVICE, |
| 164 | }, { |
| 165 | .virtual = (unsigned long)S5P_VA_GIC_DIST, |
| 166 | .pfn = __phys_to_pfn(EXYNOS4_PA_GIC_DIST), |
| 167 | .length = SZ_64K, |
| 168 | .type = MT_DEVICE, |
| 169 | }, { |
| 170 | .virtual = (unsigned long)S3C_VA_UART, |
| 171 | .pfn = __phys_to_pfn(EXYNOS4_PA_UART), |
| 172 | .length = SZ_512K, |
| 173 | .type = MT_DEVICE, |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 174 | }, { |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 175 | .virtual = (unsigned long)S5P_VA_CMU, |
| 176 | .pfn = __phys_to_pfn(EXYNOS4_PA_CMU), |
| 177 | .length = SZ_128K, |
| 178 | .type = MT_DEVICE, |
| 179 | }, { |
| 180 | .virtual = (unsigned long)S5P_VA_COREPERI_BASE, |
| 181 | .pfn = __phys_to_pfn(EXYNOS4_PA_COREPERI), |
| 182 | .length = SZ_8K, |
| 183 | .type = MT_DEVICE, |
| 184 | }, { |
| 185 | .virtual = (unsigned long)S5P_VA_L2CC, |
| 186 | .pfn = __phys_to_pfn(EXYNOS4_PA_L2CC), |
| 187 | .length = SZ_4K, |
| 188 | .type = MT_DEVICE, |
| 189 | }, { |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 190 | .virtual = (unsigned long)S5P_VA_DMC0, |
| 191 | .pfn = __phys_to_pfn(EXYNOS4_PA_DMC0), |
MyungJoo Ham | 2bde0b0 | 2011-12-01 15:12:30 +0900 | [diff] [blame] | 192 | .length = SZ_64K, |
| 193 | .type = MT_DEVICE, |
| 194 | }, { |
| 195 | .virtual = (unsigned long)S5P_VA_DMC1, |
| 196 | .pfn = __phys_to_pfn(EXYNOS4_PA_DMC1), |
| 197 | .length = SZ_64K, |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 198 | .type = MT_DEVICE, |
| 199 | }, { |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 200 | .virtual = (unsigned long)S3C_VA_USB_HSPHY, |
| 201 | .pfn = __phys_to_pfn(EXYNOS4_PA_HSPHY), |
| 202 | .length = SZ_4K, |
| 203 | .type = MT_DEVICE, |
| 204 | }, |
| 205 | }; |
| 206 | |
| 207 | static struct map_desc exynos4_iodesc0[] __initdata = { |
| 208 | { |
| 209 | .virtual = (unsigned long)S5P_VA_SYSRAM, |
| 210 | .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM0), |
| 211 | .length = SZ_4K, |
| 212 | .type = MT_DEVICE, |
| 213 | }, |
| 214 | }; |
| 215 | |
| 216 | static struct map_desc exynos4_iodesc1[] __initdata = { |
| 217 | { |
| 218 | .virtual = (unsigned long)S5P_VA_SYSRAM, |
| 219 | .pfn = __phys_to_pfn(EXYNOS4_PA_SYSRAM1), |
| 220 | .length = SZ_4K, |
| 221 | .type = MT_DEVICE, |
| 222 | }, |
| 223 | }; |
| 224 | |
Tomasz Figa | 41de898 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 225 | static struct map_desc exynos4210_iodesc[] __initdata = { |
| 226 | { |
| 227 | .virtual = (unsigned long)S5P_VA_SYSRAM_NS, |
| 228 | .pfn = __phys_to_pfn(EXYNOS4210_PA_SYSRAM_NS), |
| 229 | .length = SZ_4K, |
| 230 | .type = MT_DEVICE, |
| 231 | }, |
| 232 | }; |
| 233 | |
| 234 | static struct map_desc exynos4x12_iodesc[] __initdata = { |
| 235 | { |
| 236 | .virtual = (unsigned long)S5P_VA_SYSRAM_NS, |
| 237 | .pfn = __phys_to_pfn(EXYNOS4x12_PA_SYSRAM_NS), |
| 238 | .length = SZ_4K, |
| 239 | .type = MT_DEVICE, |
| 240 | }, |
| 241 | }; |
| 242 | |
| 243 | static struct map_desc exynos5250_iodesc[] __initdata = { |
| 244 | { |
| 245 | .virtual = (unsigned long)S5P_VA_SYSRAM_NS, |
| 246 | .pfn = __phys_to_pfn(EXYNOS5250_PA_SYSRAM_NS), |
| 247 | .length = SZ_4K, |
| 248 | .type = MT_DEVICE, |
| 249 | }, |
| 250 | }; |
| 251 | |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 252 | static struct map_desc exynos5_iodesc[] __initdata = { |
| 253 | { |
| 254 | .virtual = (unsigned long)S3C_VA_SYS, |
| 255 | .pfn = __phys_to_pfn(EXYNOS5_PA_SYSCON), |
| 256 | .length = SZ_64K, |
| 257 | .type = MT_DEVICE, |
| 258 | }, { |
| 259 | .virtual = (unsigned long)S3C_VA_TIMER, |
| 260 | .pfn = __phys_to_pfn(EXYNOS5_PA_TIMER), |
| 261 | .length = SZ_16K, |
| 262 | .type = MT_DEVICE, |
| 263 | }, { |
| 264 | .virtual = (unsigned long)S3C_VA_WATCHDOG, |
| 265 | .pfn = __phys_to_pfn(EXYNOS5_PA_WATCHDOG), |
| 266 | .length = SZ_4K, |
| 267 | .type = MT_DEVICE, |
| 268 | }, { |
| 269 | .virtual = (unsigned long)S5P_VA_SROMC, |
| 270 | .pfn = __phys_to_pfn(EXYNOS5_PA_SROMC), |
| 271 | .length = SZ_4K, |
| 272 | .type = MT_DEVICE, |
| 273 | }, { |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 274 | .virtual = (unsigned long)S5P_VA_SYSRAM, |
| 275 | .pfn = __phys_to_pfn(EXYNOS5_PA_SYSRAM), |
| 276 | .length = SZ_4K, |
| 277 | .type = MT_DEVICE, |
| 278 | }, { |
| 279 | .virtual = (unsigned long)S5P_VA_CMU, |
| 280 | .pfn = __phys_to_pfn(EXYNOS5_PA_CMU), |
| 281 | .length = 144 * SZ_1K, |
| 282 | .type = MT_DEVICE, |
| 283 | }, { |
| 284 | .virtual = (unsigned long)S5P_VA_PMU, |
| 285 | .pfn = __phys_to_pfn(EXYNOS5_PA_PMU), |
| 286 | .length = SZ_64K, |
| 287 | .type = MT_DEVICE, |
| 288 | }, { |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 289 | .virtual = (unsigned long)S3C_VA_UART, |
| 290 | .pfn = __phys_to_pfn(EXYNOS5_PA_UART), |
| 291 | .length = SZ_512K, |
| 292 | .type = MT_DEVICE, |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 293 | }, |
| 294 | }; |
| 295 | |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 296 | static struct map_desc exynos5440_iodesc0[] __initdata = { |
| 297 | { |
| 298 | .virtual = (unsigned long)S3C_VA_UART, |
| 299 | .pfn = __phys_to_pfn(EXYNOS5440_PA_UART0), |
| 300 | .length = SZ_512K, |
| 301 | .type = MT_DEVICE, |
| 302 | }, |
| 303 | }; |
| 304 | |
Russell King | 9eb4859 | 2012-01-03 11:56:53 +0100 | [diff] [blame] | 305 | void exynos4_restart(char mode, const char *cmd) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 306 | { |
| 307 | __raw_writel(0x1, S5P_SWRESET); |
| 308 | } |
| 309 | |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 310 | void exynos5_restart(char mode, const char *cmd) |
| 311 | { |
Thomas Abraham | 60db7e5 | 2013-01-24 10:09:13 -0800 | [diff] [blame] | 312 | struct device_node *np; |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 313 | u32 val; |
| 314 | void __iomem *addr; |
| 315 | |
| 316 | if (of_machine_is_compatible("samsung,exynos5250")) { |
| 317 | val = 0x1; |
| 318 | addr = EXYNOS_SWRESET; |
| 319 | } else if (of_machine_is_compatible("samsung,exynos5440")) { |
Thomas Abraham | 60db7e5 | 2013-01-24 10:09:13 -0800 | [diff] [blame] | 320 | np = of_find_compatible_node(NULL, NULL, "samsung,exynos5440-clock"); |
| 321 | addr = of_iomap(np, 0) + 0xcc; |
| 322 | val = (0xfff << 20) | (0x1 << 16); |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 323 | } else { |
| 324 | pr_err("%s: cannot support non-DT\n", __func__); |
| 325 | return; |
| 326 | } |
| 327 | |
| 328 | __raw_writel(val, addr); |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 329 | } |
| 330 | |
Shawn Guo | bb13fab | 2012-04-26 10:35:40 +0800 | [diff] [blame] | 331 | void __init exynos_init_late(void) |
| 332 | { |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 333 | if (of_machine_is_compatible("samsung,exynos5440")) |
| 334 | /* to be supported later */ |
| 335 | return; |
| 336 | |
Shawn Guo | bb13fab | 2012-04-26 10:35:40 +0800 | [diff] [blame] | 337 | exynos_pm_late_initcall(); |
| 338 | } |
| 339 | |
Thomas Abraham | f5f83c7 | 2013-04-23 22:46:53 +0900 | [diff] [blame] | 340 | #ifdef CONFIG_OF |
| 341 | int __init exynos_fdt_map_chipid(unsigned long node, const char *uname, |
| 342 | int depth, void *data) |
| 343 | { |
| 344 | struct map_desc iodesc; |
| 345 | __be32 *reg; |
| 346 | unsigned long len; |
| 347 | |
| 348 | if (!of_flat_dt_is_compatible(node, "samsung,exynos4210-chipid") && |
| 349 | !of_flat_dt_is_compatible(node, "samsung,exynos5440-clock")) |
| 350 | return 0; |
| 351 | |
| 352 | reg = of_get_flat_dt_prop(node, "reg", &len); |
| 353 | if (reg == NULL || len != (sizeof(unsigned long) * 2)) |
| 354 | return 0; |
| 355 | |
| 356 | iodesc.pfn = __phys_to_pfn(be32_to_cpu(reg[0])); |
| 357 | iodesc.length = be32_to_cpu(reg[1]) - 1; |
| 358 | iodesc.virtual = (unsigned long)S5P_VA_CHIPID; |
| 359 | iodesc.type = MT_DEVICE; |
| 360 | iotable_init(&iodesc, 1); |
| 361 | return 1; |
| 362 | } |
| 363 | #endif |
| 364 | |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 365 | /* |
| 366 | * exynos_map_io |
| 367 | * |
| 368 | * register the standard cpu IO areas |
| 369 | */ |
| 370 | |
| 371 | void __init exynos_init_io(struct map_desc *mach_desc, int size) |
| 372 | { |
Thomas Abraham | f5f83c7 | 2013-04-23 22:46:53 +0900 | [diff] [blame] | 373 | #ifdef CONFIG_OF |
| 374 | if (initial_boot_params) |
| 375 | of_scan_flat_dt(exynos_fdt_map_chipid, NULL); |
| 376 | else |
Doug Anderson | 5b7897d | 2012-11-27 11:53:14 -0800 | [diff] [blame] | 377 | #endif |
Thomas Abraham | f5f83c7 | 2013-04-23 22:46:53 +0900 | [diff] [blame] | 378 | iotable_init(exynos_iodesc, ARRAY_SIZE(exynos_iodesc)); |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 379 | |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 380 | if (mach_desc) |
| 381 | iotable_init(mach_desc, size); |
| 382 | |
| 383 | /* detect cpu id and rev. */ |
| 384 | s5p_init_cpu(S5P_VA_CHIPID); |
| 385 | |
| 386 | s3c_init_cpu(samsung_cpu_id, cpu_ids, ARRAY_SIZE(cpu_ids)); |
| 387 | } |
| 388 | |
Kukjin Kim | 906c789 | 2012-02-11 21:27:08 +0900 | [diff] [blame] | 389 | static void __init exynos4_map_io(void) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 390 | { |
| 391 | iotable_init(exynos4_iodesc, ARRAY_SIZE(exynos4_iodesc)); |
| 392 | |
| 393 | if (soc_is_exynos4210() && samsung_rev() == EXYNOS4210_REV_0) |
| 394 | iotable_init(exynos4_iodesc0, ARRAY_SIZE(exynos4_iodesc0)); |
| 395 | else |
| 396 | iotable_init(exynos4_iodesc1, ARRAY_SIZE(exynos4_iodesc1)); |
| 397 | |
Tomasz Figa | 41de898 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 398 | if (soc_is_exynos4210()) |
| 399 | iotable_init(exynos4210_iodesc, ARRAY_SIZE(exynos4210_iodesc)); |
| 400 | if (soc_is_exynos4212() || soc_is_exynos4412()) |
| 401 | iotable_init(exynos4x12_iodesc, ARRAY_SIZE(exynos4x12_iodesc)); |
| 402 | |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 403 | /* initialize device information early */ |
| 404 | exynos4_default_sdhci0(); |
| 405 | exynos4_default_sdhci1(); |
| 406 | exynos4_default_sdhci2(); |
| 407 | exynos4_default_sdhci3(); |
| 408 | |
| 409 | s3c_adc_setname("samsung-adc-v3"); |
| 410 | |
| 411 | s3c_fimc_setname(0, "exynos4-fimc"); |
| 412 | s3c_fimc_setname(1, "exynos4-fimc"); |
| 413 | s3c_fimc_setname(2, "exynos4-fimc"); |
| 414 | s3c_fimc_setname(3, "exynos4-fimc"); |
| 415 | |
Thomas Abraham | 8482c81 | 2012-04-14 08:04:46 -0700 | [diff] [blame] | 416 | s3c_sdhci_setname(0, "exynos4-sdhci"); |
| 417 | s3c_sdhci_setname(1, "exynos4-sdhci"); |
| 418 | s3c_sdhci_setname(2, "exynos4-sdhci"); |
| 419 | s3c_sdhci_setname(3, "exynos4-sdhci"); |
| 420 | |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 421 | /* The I2C bus controllers are directly compatible with s3c2440 */ |
| 422 | s3c_i2c0_setname("s3c2440-i2c"); |
| 423 | s3c_i2c1_setname("s3c2440-i2c"); |
| 424 | s3c_i2c2_setname("s3c2440-i2c"); |
| 425 | |
| 426 | s5p_fb_setname(0, "exynos4-fb"); |
| 427 | s5p_hdmi_setname("exynos4-hdmi"); |
Heiko Stuebner | 308b3af | 2012-10-17 16:47:11 +0900 | [diff] [blame] | 428 | |
| 429 | s3c64xx_spi_setname("exynos4210-spi"); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 430 | } |
| 431 | |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 432 | static void __init exynos5_map_io(void) |
| 433 | { |
| 434 | iotable_init(exynos5_iodesc, ARRAY_SIZE(exynos5_iodesc)); |
Tomasz Figa | 41de898 | 2012-12-11 13:58:43 +0900 | [diff] [blame] | 435 | |
| 436 | if (soc_is_exynos5250()) |
| 437 | iotable_init(exynos5250_iodesc, ARRAY_SIZE(exynos5250_iodesc)); |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 438 | } |
| 439 | |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 440 | static void __init exynos5440_map_io(void) |
| 441 | { |
| 442 | iotable_init(exynos5440_iodesc0, ARRAY_SIZE(exynos5440_iodesc0)); |
| 443 | } |
| 444 | |
Thomas Abraham | 6923ae4 | 2013-03-09 17:03:29 +0900 | [diff] [blame] | 445 | void __init exynos_init_time(void) |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 446 | { |
Thomas Abraham | 6923ae4 | 2013-03-09 17:03:29 +0900 | [diff] [blame] | 447 | if (of_have_populated_dt()) { |
| 448 | #ifdef CONFIG_OF |
| 449 | of_clk_init(NULL); |
| 450 | clocksource_of_init(); |
Kukjin Kim | 61bcbc2 | 2013-01-05 08:32:55 -0800 | [diff] [blame] | 451 | #endif |
Thomas Abraham | 6923ae4 | 2013-03-09 17:03:29 +0900 | [diff] [blame] | 452 | } else { |
| 453 | /* todo: remove after migrating legacy E4 platforms to dt */ |
Thomas Abraham | 296f3f2 | 2013-04-05 15:17:47 +0900 | [diff] [blame] | 454 | #ifdef CONFIG_ARCH_EXYNOS4 |
Arnd Bergmann | 25e56eb | 2013-04-10 11:31:44 +0200 | [diff] [blame] | 455 | exynos4_clk_init(NULL, !soc_is_exynos4210(), S5P_VA_CMU, readl(S5P_VA_CHIPID + 8) & 1); |
Thomas Abraham | 9274427 | 2013-03-09 17:03:33 +0900 | [diff] [blame] | 456 | exynos4_clk_register_fixed_ext(xxti_f, xusbxti_f); |
Thomas Abraham | 296f3f2 | 2013-04-05 15:17:47 +0900 | [diff] [blame] | 457 | #endif |
Arnd Bergmann | 034c097 | 2013-04-10 11:35:29 +0200 | [diff] [blame] | 458 | mct_init(S5P_VA_SYSTIMER, EXYNOS4_IRQ_MCT_G0, EXYNOS4_IRQ_MCT_L0, EXYNOS4_IRQ_MCT_L1); |
Thomas Abraham | 6923ae4 | 2013-03-09 17:03:29 +0900 | [diff] [blame] | 459 | } |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 460 | } |
| 461 | |
Arnd Bergmann | 6761dcf | 2013-04-10 15:17:47 +0200 | [diff] [blame] | 462 | static unsigned int max_combiner_nr(void) |
| 463 | { |
| 464 | if (soc_is_exynos5250()) |
| 465 | return EXYNOS5_MAX_COMBINER_NR; |
| 466 | else if (soc_is_exynos4412()) |
| 467 | return EXYNOS4412_MAX_COMBINER_NR; |
| 468 | else if (soc_is_exynos4212()) |
| 469 | return EXYNOS4212_MAX_COMBINER_NR; |
| 470 | else |
| 471 | return EXYNOS4210_MAX_COMBINER_NR; |
| 472 | } |
| 473 | |
| 474 | |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 475 | void __init exynos4_init_irq(void) |
| 476 | { |
Arnd Bergmann | 40ba95f | 2012-01-07 11:51:28 +0000 | [diff] [blame] | 477 | unsigned int gic_bank_offset; |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 478 | |
| 479 | gic_bank_offset = soc_is_exynos4412() ? 0x4000 : 0x8000; |
| 480 | |
Arnd Bergmann | 237c78b | 2012-01-07 12:30:20 +0000 | [diff] [blame] | 481 | if (!of_have_populated_dt()) |
Grant Likely | 7529495 | 2012-02-14 14:06:57 -0700 | [diff] [blame] | 482 | gic_init_bases(0, IRQ_PPI(0), S5P_VA_GIC_DIST, S5P_VA_GIC_CPU, gic_bank_offset, NULL); |
Arnd Bergmann | 237c78b | 2012-01-07 12:30:20 +0000 | [diff] [blame] | 483 | #ifdef CONFIG_OF |
| 484 | else |
Rob Herring | 0529e315 | 2012-11-05 16:18:28 -0600 | [diff] [blame] | 485 | irqchip_init(); |
Arnd Bergmann | 237c78b | 2012-01-07 12:30:20 +0000 | [diff] [blame] | 486 | #endif |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 487 | |
Thomas Abraham | e873a47 | 2012-05-15 16:25:23 +0900 | [diff] [blame] | 488 | if (!of_have_populated_dt()) |
Arnd Bergmann | 863a08d | 2013-04-12 15:27:09 +0200 | [diff] [blame] | 489 | combiner_init(S5P_VA_COMBINER_BASE, NULL, |
| 490 | max_combiner_nr(), COMBINER_IRQ(0, 0)); |
Inderpal Singh | 9f37067 | 2012-12-27 10:40:16 -0800 | [diff] [blame] | 491 | |
| 492 | gic_arch_extn.irq_set_wake = s3c_irq_wake; |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 493 | } |
| 494 | |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 495 | void __init exynos5_init_irq(void) |
| 496 | { |
Tushar Behera | 6fff5a1 | 2012-04-24 13:25:01 -0700 | [diff] [blame] | 497 | #ifdef CONFIG_OF |
Rob Herring | 0529e315 | 2012-11-05 16:18:28 -0600 | [diff] [blame] | 498 | irqchip_init(); |
Tushar Behera | 6fff5a1 | 2012-04-24 13:25:01 -0700 | [diff] [blame] | 499 | #endif |
Inderpal Singh | 3445513 | 2012-11-22 14:46:21 +0900 | [diff] [blame] | 500 | gic_arch_extn.irq_set_wake = s3c_irq_wake; |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 501 | } |
| 502 | |
Thomas Abraham | 9ee6af9 | 2012-05-15 15:47:40 +0900 | [diff] [blame] | 503 | struct bus_type exynos_subsys = { |
| 504 | .name = "exynos-core", |
| 505 | .dev_name = "exynos-core", |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 506 | }; |
| 507 | |
Linus Torvalds | 7affca3 | 2012-01-07 12:03:30 -0800 | [diff] [blame] | 508 | static struct device exynos4_dev = { |
Thomas Abraham | 9ee6af9 | 2012-05-15 15:47:40 +0900 | [diff] [blame] | 509 | .bus = &exynos_subsys, |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 510 | }; |
| 511 | |
| 512 | static int __init exynos_core_init(void) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 513 | { |
Thomas Abraham | 9ee6af9 | 2012-05-15 15:47:40 +0900 | [diff] [blame] | 514 | return subsys_system_register(&exynos_subsys, NULL); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 515 | } |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 516 | core_initcall(exynos_core_init); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 517 | |
| 518 | #ifdef CONFIG_CACHE_L2X0 |
| 519 | static int __init exynos4_l2x0_cache_init(void) |
| 520 | { |
Il Han | e1b1994 | 2012-04-05 07:59:36 -0700 | [diff] [blame] | 521 | int ret; |
| 522 | |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 523 | if (soc_is_exynos5250() || soc_is_exynos5440()) |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 524 | return 0; |
| 525 | |
Amit Daniel Kachhap | 6cdeddc | 2012-03-08 02:09:12 -0800 | [diff] [blame] | 526 | ret = l2x0_of_init(L2_AUX_VAL, L2_AUX_MASK); |
| 527 | if (!ret) { |
| 528 | l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs); |
| 529 | clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long)); |
| 530 | return 0; |
| 531 | } |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 532 | |
Amit Daniel Kachhap | b756a50 | 2012-03-08 02:07:41 -0800 | [diff] [blame] | 533 | if (!(__raw_readl(S5P_VA_L2CC + L2X0_CTRL) & 0x1)) { |
| 534 | l2x0_saved_regs.phy_base = EXYNOS4_PA_L2CC; |
| 535 | /* TAG, Data Latency Control: 2 cycles */ |
| 536 | l2x0_saved_regs.tag_latency = 0x110; |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 537 | |
Amit Daniel Kachhap | b756a50 | 2012-03-08 02:07:41 -0800 | [diff] [blame] | 538 | if (soc_is_exynos4212() || soc_is_exynos4412()) |
| 539 | l2x0_saved_regs.data_latency = 0x120; |
| 540 | else |
| 541 | l2x0_saved_regs.data_latency = 0x110; |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 542 | |
Amit Daniel Kachhap | b756a50 | 2012-03-08 02:07:41 -0800 | [diff] [blame] | 543 | l2x0_saved_regs.prefetch_ctrl = 0x30000007; |
| 544 | l2x0_saved_regs.pwr_ctrl = |
| 545 | (L2X0_DYNAMIC_CLK_GATING_EN | L2X0_STNDBY_MODE_EN); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 546 | |
Amit Daniel Kachhap | b756a50 | 2012-03-08 02:07:41 -0800 | [diff] [blame] | 547 | l2x0_regs_phys = virt_to_phys(&l2x0_saved_regs); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 548 | |
Amit Daniel Kachhap | b756a50 | 2012-03-08 02:07:41 -0800 | [diff] [blame] | 549 | __raw_writel(l2x0_saved_regs.tag_latency, |
| 550 | S5P_VA_L2CC + L2X0_TAG_LATENCY_CTRL); |
| 551 | __raw_writel(l2x0_saved_regs.data_latency, |
| 552 | S5P_VA_L2CC + L2X0_DATA_LATENCY_CTRL); |
| 553 | |
| 554 | /* L2X0 Prefetch Control */ |
| 555 | __raw_writel(l2x0_saved_regs.prefetch_ctrl, |
| 556 | S5P_VA_L2CC + L2X0_PREFETCH_CTRL); |
| 557 | |
| 558 | /* L2X0 Power Control */ |
| 559 | __raw_writel(l2x0_saved_regs.pwr_ctrl, |
| 560 | S5P_VA_L2CC + L2X0_POWER_CTRL); |
| 561 | |
| 562 | clean_dcache_area(&l2x0_regs_phys, sizeof(unsigned long)); |
| 563 | clean_dcache_area(&l2x0_saved_regs, sizeof(struct l2x0_regs)); |
| 564 | } |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 565 | |
Amit Daniel Kachhap | 6cdeddc | 2012-03-08 02:09:12 -0800 | [diff] [blame] | 566 | l2x0_init(S5P_VA_L2CC, L2_AUX_VAL, L2_AUX_MASK); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 567 | return 0; |
| 568 | } |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 569 | early_initcall(exynos4_l2x0_cache_init); |
| 570 | #endif |
| 571 | |
Kukjin Kim | 906c789 | 2012-02-11 21:27:08 +0900 | [diff] [blame] | 572 | static int __init exynos_init(void) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 573 | { |
| 574 | printk(KERN_INFO "EXYNOS: Initializing architecture\n"); |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 575 | |
Thomas Abraham | 9ee6af9 | 2012-05-15 15:47:40 +0900 | [diff] [blame] | 576 | return device_register(&exynos4_dev); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 577 | } |
| 578 | |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 579 | /* uart registration process */ |
| 580 | |
Thomas Abraham | 55b6ef7 | 2012-10-29 19:46:49 +0900 | [diff] [blame] | 581 | static void __init exynos4_init_uarts(struct s3c2410_uartcfg *cfg, int no) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 582 | { |
| 583 | struct s3c2410_uartcfg *tcfg = cfg; |
| 584 | u32 ucnt; |
| 585 | |
Arnd Bergmann | 237c78b | 2012-01-07 12:30:20 +0000 | [diff] [blame] | 586 | for (ucnt = 0; ucnt < no; ucnt++, tcfg++) |
| 587 | tcfg->has_fracval = 1; |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 588 | |
Thomas Abraham | 55b6ef7 | 2012-10-29 19:46:49 +0900 | [diff] [blame] | 589 | s3c24xx_init_uartdevs("exynos4210-uart", exynos4_uart_resources, cfg, no); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 590 | } |
| 591 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 592 | static void __iomem *exynos_eint_base; |
| 593 | |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 594 | static DEFINE_SPINLOCK(eint_lock); |
| 595 | |
| 596 | static unsigned int eint0_15_data[16]; |
| 597 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 598 | static inline int exynos4_irq_to_gpio(unsigned int irq) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 599 | { |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 600 | if (irq < IRQ_EINT(0)) |
| 601 | return -EINVAL; |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 602 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 603 | irq -= IRQ_EINT(0); |
| 604 | if (irq < 8) |
| 605 | return EXYNOS4_GPX0(irq); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 606 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 607 | irq -= 8; |
| 608 | if (irq < 8) |
| 609 | return EXYNOS4_GPX1(irq); |
| 610 | |
| 611 | irq -= 8; |
| 612 | if (irq < 8) |
| 613 | return EXYNOS4_GPX2(irq); |
| 614 | |
| 615 | irq -= 8; |
| 616 | if (irq < 8) |
| 617 | return EXYNOS4_GPX3(irq); |
| 618 | |
| 619 | return -EINVAL; |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 620 | } |
| 621 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 622 | static inline int exynos5_irq_to_gpio(unsigned int irq) |
| 623 | { |
| 624 | if (irq < IRQ_EINT(0)) |
| 625 | return -EINVAL; |
| 626 | |
| 627 | irq -= IRQ_EINT(0); |
| 628 | if (irq < 8) |
| 629 | return EXYNOS5_GPX0(irq); |
| 630 | |
| 631 | irq -= 8; |
| 632 | if (irq < 8) |
| 633 | return EXYNOS5_GPX1(irq); |
| 634 | |
| 635 | irq -= 8; |
| 636 | if (irq < 8) |
| 637 | return EXYNOS5_GPX2(irq); |
| 638 | |
| 639 | irq -= 8; |
| 640 | if (irq < 8) |
| 641 | return EXYNOS5_GPX3(irq); |
| 642 | |
| 643 | return -EINVAL; |
| 644 | } |
| 645 | |
Kukjin Kim | bb19a75 | 2012-01-25 13:48:11 +0900 | [diff] [blame] | 646 | static unsigned int exynos4_eint0_15_src_int[16] = { |
| 647 | EXYNOS4_IRQ_EINT0, |
| 648 | EXYNOS4_IRQ_EINT1, |
| 649 | EXYNOS4_IRQ_EINT2, |
| 650 | EXYNOS4_IRQ_EINT3, |
| 651 | EXYNOS4_IRQ_EINT4, |
| 652 | EXYNOS4_IRQ_EINT5, |
| 653 | EXYNOS4_IRQ_EINT6, |
| 654 | EXYNOS4_IRQ_EINT7, |
| 655 | EXYNOS4_IRQ_EINT8, |
| 656 | EXYNOS4_IRQ_EINT9, |
| 657 | EXYNOS4_IRQ_EINT10, |
| 658 | EXYNOS4_IRQ_EINT11, |
| 659 | EXYNOS4_IRQ_EINT12, |
| 660 | EXYNOS4_IRQ_EINT13, |
| 661 | EXYNOS4_IRQ_EINT14, |
| 662 | EXYNOS4_IRQ_EINT15, |
| 663 | }; |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 664 | |
Kukjin Kim | bb19a75 | 2012-01-25 13:48:11 +0900 | [diff] [blame] | 665 | static unsigned int exynos5_eint0_15_src_int[16] = { |
| 666 | EXYNOS5_IRQ_EINT0, |
| 667 | EXYNOS5_IRQ_EINT1, |
| 668 | EXYNOS5_IRQ_EINT2, |
| 669 | EXYNOS5_IRQ_EINT3, |
| 670 | EXYNOS5_IRQ_EINT4, |
| 671 | EXYNOS5_IRQ_EINT5, |
| 672 | EXYNOS5_IRQ_EINT6, |
| 673 | EXYNOS5_IRQ_EINT7, |
| 674 | EXYNOS5_IRQ_EINT8, |
| 675 | EXYNOS5_IRQ_EINT9, |
| 676 | EXYNOS5_IRQ_EINT10, |
| 677 | EXYNOS5_IRQ_EINT11, |
| 678 | EXYNOS5_IRQ_EINT12, |
| 679 | EXYNOS5_IRQ_EINT13, |
| 680 | EXYNOS5_IRQ_EINT14, |
| 681 | EXYNOS5_IRQ_EINT15, |
| 682 | }; |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 683 | static inline void exynos_irq_eint_mask(struct irq_data *data) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 684 | { |
| 685 | u32 mask; |
| 686 | |
| 687 | spin_lock(&eint_lock); |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 688 | mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq)); |
| 689 | mask |= EINT_OFFSET_BIT(data->irq); |
| 690 | __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq)); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 691 | spin_unlock(&eint_lock); |
| 692 | } |
| 693 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 694 | static void exynos_irq_eint_unmask(struct irq_data *data) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 695 | { |
| 696 | u32 mask; |
| 697 | |
| 698 | spin_lock(&eint_lock); |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 699 | mask = __raw_readl(EINT_MASK(exynos_eint_base, data->irq)); |
| 700 | mask &= ~(EINT_OFFSET_BIT(data->irq)); |
| 701 | __raw_writel(mask, EINT_MASK(exynos_eint_base, data->irq)); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 702 | spin_unlock(&eint_lock); |
| 703 | } |
| 704 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 705 | static inline void exynos_irq_eint_ack(struct irq_data *data) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 706 | { |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 707 | __raw_writel(EINT_OFFSET_BIT(data->irq), |
| 708 | EINT_PEND(exynos_eint_base, data->irq)); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 709 | } |
| 710 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 711 | static void exynos_irq_eint_maskack(struct irq_data *data) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 712 | { |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 713 | exynos_irq_eint_mask(data); |
| 714 | exynos_irq_eint_ack(data); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 715 | } |
| 716 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 717 | static int exynos_irq_eint_set_type(struct irq_data *data, unsigned int type) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 718 | { |
| 719 | int offs = EINT_OFFSET(data->irq); |
| 720 | int shift; |
| 721 | u32 ctrl, mask; |
| 722 | u32 newvalue = 0; |
| 723 | |
| 724 | switch (type) { |
| 725 | case IRQ_TYPE_EDGE_RISING: |
| 726 | newvalue = S5P_IRQ_TYPE_EDGE_RISING; |
| 727 | break; |
| 728 | |
| 729 | case IRQ_TYPE_EDGE_FALLING: |
| 730 | newvalue = S5P_IRQ_TYPE_EDGE_FALLING; |
| 731 | break; |
| 732 | |
| 733 | case IRQ_TYPE_EDGE_BOTH: |
| 734 | newvalue = S5P_IRQ_TYPE_EDGE_BOTH; |
| 735 | break; |
| 736 | |
| 737 | case IRQ_TYPE_LEVEL_LOW: |
| 738 | newvalue = S5P_IRQ_TYPE_LEVEL_LOW; |
| 739 | break; |
| 740 | |
| 741 | case IRQ_TYPE_LEVEL_HIGH: |
| 742 | newvalue = S5P_IRQ_TYPE_LEVEL_HIGH; |
| 743 | break; |
| 744 | |
| 745 | default: |
| 746 | printk(KERN_ERR "No such irq type %d", type); |
| 747 | return -EINVAL; |
| 748 | } |
| 749 | |
| 750 | shift = (offs & 0x7) * 4; |
| 751 | mask = 0x7 << shift; |
| 752 | |
| 753 | spin_lock(&eint_lock); |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 754 | ctrl = __raw_readl(EINT_CON(exynos_eint_base, data->irq)); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 755 | ctrl &= ~mask; |
| 756 | ctrl |= newvalue << shift; |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 757 | __raw_writel(ctrl, EINT_CON(exynos_eint_base, data->irq)); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 758 | spin_unlock(&eint_lock); |
| 759 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 760 | if (soc_is_exynos5250()) |
| 761 | s3c_gpio_cfgpin(exynos5_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf)); |
| 762 | else |
| 763 | s3c_gpio_cfgpin(exynos4_irq_to_gpio(data->irq), S3C_GPIO_SFN(0xf)); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 764 | |
| 765 | return 0; |
| 766 | } |
| 767 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 768 | static struct irq_chip exynos_irq_eint = { |
| 769 | .name = "exynos-eint", |
| 770 | .irq_mask = exynos_irq_eint_mask, |
| 771 | .irq_unmask = exynos_irq_eint_unmask, |
| 772 | .irq_mask_ack = exynos_irq_eint_maskack, |
| 773 | .irq_ack = exynos_irq_eint_ack, |
| 774 | .irq_set_type = exynos_irq_eint_set_type, |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 775 | #ifdef CONFIG_PM |
| 776 | .irq_set_wake = s3c_irqext_wake, |
| 777 | #endif |
| 778 | }; |
| 779 | |
| 780 | /* |
| 781 | * exynos4_irq_demux_eint |
| 782 | * |
| 783 | * This function demuxes the IRQ from from EINTs 16 to 31. |
| 784 | * It is designed to be inlined into the specific handler |
| 785 | * s5p_irq_demux_eintX_Y. |
| 786 | * |
| 787 | * Each EINT pend/mask registers handle eight of them. |
| 788 | */ |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 789 | static inline void exynos_irq_demux_eint(unsigned int start) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 790 | { |
| 791 | unsigned int irq; |
| 792 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 793 | u32 status = __raw_readl(EINT_PEND(exynos_eint_base, start)); |
| 794 | u32 mask = __raw_readl(EINT_MASK(exynos_eint_base, start)); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 795 | |
| 796 | status &= ~mask; |
| 797 | status &= 0xff; |
| 798 | |
| 799 | while (status) { |
| 800 | irq = fls(status) - 1; |
| 801 | generic_handle_irq(irq + start); |
| 802 | status &= ~(1 << irq); |
| 803 | } |
| 804 | } |
| 805 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 806 | static void exynos_irq_demux_eint16_31(unsigned int irq, struct irq_desc *desc) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 807 | { |
| 808 | struct irq_chip *chip = irq_get_chip(irq); |
| 809 | chained_irq_enter(chip, desc); |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 810 | exynos_irq_demux_eint(IRQ_EINT(16)); |
| 811 | exynos_irq_demux_eint(IRQ_EINT(24)); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 812 | chained_irq_exit(chip, desc); |
| 813 | } |
| 814 | |
Kukjin Kim | bb19a75 | 2012-01-25 13:48:11 +0900 | [diff] [blame] | 815 | static void exynos_irq_eint0_15(unsigned int irq, struct irq_desc *desc) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 816 | { |
| 817 | u32 *irq_data = irq_get_handler_data(irq); |
| 818 | struct irq_chip *chip = irq_get_chip(irq); |
| 819 | |
| 820 | chained_irq_enter(chip, desc); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 821 | generic_handle_irq(*irq_data); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 822 | chained_irq_exit(chip, desc); |
| 823 | } |
| 824 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 825 | static int __init exynos_init_irq_eint(void) |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 826 | { |
| 827 | int irq; |
| 828 | |
Thomas Abraham | fef05c2 | 2012-09-07 06:07:40 +0900 | [diff] [blame] | 829 | #ifdef CONFIG_PINCTRL_SAMSUNG |
| 830 | /* |
| 831 | * The Samsung pinctrl driver provides an integrated gpio/pinmux/pinconf |
| 832 | * functionality along with support for external gpio and wakeup |
| 833 | * interrupts. If the samsung pinctrl driver is enabled and includes |
| 834 | * the wakeup interrupt support, then the setting up external wakeup |
| 835 | * interrupts here can be skipped. This check here is temporary to |
| 836 | * allow exynos4 platforms that do not use Samsung pinctrl driver to |
| 837 | * co-exist with platforms that do. When all of the Samsung Exynos4 |
| 838 | * platforms switch over to using the pinctrl driver, the wakeup |
| 839 | * interrupt support code here can be completely removed. |
| 840 | */ |
Tomasz Figa | ab7b51f | 2012-11-07 08:44:51 +0900 | [diff] [blame] | 841 | static const struct of_device_id exynos_pinctrl_ids[] = { |
Kukjin Kim | b533c86 | 2013-01-02 16:05:42 -0800 | [diff] [blame] | 842 | { .compatible = "samsung,exynos4210-pinctrl", }, |
| 843 | { .compatible = "samsung,exynos4x12-pinctrl", }, |
Thomas Abraham | 9791677 | 2012-12-28 10:37:27 -0800 | [diff] [blame] | 844 | { .compatible = "samsung,exynos5250-pinctrl", }, |
Tomasz Figa | ab7b51f | 2012-11-07 08:44:51 +0900 | [diff] [blame] | 845 | }; |
Thomas Abraham | fef05c2 | 2012-09-07 06:07:40 +0900 | [diff] [blame] | 846 | struct device_node *pctrl_np, *wkup_np; |
Thomas Abraham | fef05c2 | 2012-09-07 06:07:40 +0900 | [diff] [blame] | 847 | const char *wkup_compat = "samsung,exynos4210-wakeup-eint"; |
| 848 | |
Tomasz Figa | ab7b51f | 2012-11-07 08:44:51 +0900 | [diff] [blame] | 849 | for_each_matching_node(pctrl_np, exynos_pinctrl_ids) { |
Thomas Abraham | fef05c2 | 2012-09-07 06:07:40 +0900 | [diff] [blame] | 850 | if (of_device_is_available(pctrl_np)) { |
| 851 | wkup_np = of_find_compatible_node(pctrl_np, NULL, |
| 852 | wkup_compat); |
| 853 | if (wkup_np) |
| 854 | return -ENODEV; |
| 855 | } |
| 856 | } |
| 857 | #endif |
Kukjin Kim | 2edb36c | 2012-11-15 15:48:56 +0900 | [diff] [blame] | 858 | if (soc_is_exynos5440()) |
| 859 | return 0; |
Thomas Abraham | fef05c2 | 2012-09-07 06:07:40 +0900 | [diff] [blame] | 860 | |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 861 | if (soc_is_exynos5250()) |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 862 | exynos_eint_base = ioremap(EXYNOS5_PA_GPIO1, SZ_4K); |
| 863 | else |
| 864 | exynos_eint_base = ioremap(EXYNOS4_PA_GPIO2, SZ_4K); |
| 865 | |
| 866 | if (exynos_eint_base == NULL) { |
| 867 | pr_err("unable to ioremap for EINT base address\n"); |
| 868 | return -ENOMEM; |
| 869 | } |
Kukjin Kim | 94c7ca7 | 2012-02-11 22:15:45 +0900 | [diff] [blame] | 870 | |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 871 | for (irq = 0 ; irq <= 31 ; irq++) { |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 872 | irq_set_chip_and_handler(IRQ_EINT(irq), &exynos_irq_eint, |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 873 | handle_level_irq); |
| 874 | set_irq_flags(IRQ_EINT(irq), IRQF_VALID); |
| 875 | } |
| 876 | |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 877 | irq_set_chained_handler(EXYNOS_IRQ_EINT16_31, exynos_irq_demux_eint16_31); |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 878 | |
| 879 | for (irq = 0 ; irq <= 15 ; irq++) { |
| 880 | eint0_15_data[irq] = IRQ_EINT(irq); |
| 881 | |
Kukjin Kim | bb19a75 | 2012-01-25 13:48:11 +0900 | [diff] [blame] | 882 | if (soc_is_exynos5250()) { |
| 883 | irq_set_handler_data(exynos5_eint0_15_src_int[irq], |
| 884 | &eint0_15_data[irq]); |
| 885 | irq_set_chained_handler(exynos5_eint0_15_src_int[irq], |
| 886 | exynos_irq_eint0_15); |
| 887 | } else { |
| 888 | irq_set_handler_data(exynos4_eint0_15_src_int[irq], |
| 889 | &eint0_15_data[irq]); |
| 890 | irq_set_chained_handler(exynos4_eint0_15_src_int[irq], |
| 891 | exynos_irq_eint0_15); |
| 892 | } |
Kukjin Kim | cc511b8 | 2011-12-27 08:18:36 +0100 | [diff] [blame] | 893 | } |
| 894 | |
| 895 | return 0; |
| 896 | } |
Eunki Kim | 330c90a | 2012-03-14 01:43:31 -0700 | [diff] [blame] | 897 | arch_initcall(exynos_init_irq_eint); |
Chanho Park | b7bbdbe | 2012-12-12 14:03:54 +0900 | [diff] [blame] | 898 | |
| 899 | static struct resource exynos4_pmu_resource[] = { |
| 900 | DEFINE_RES_IRQ(EXYNOS4_IRQ_PMU), |
| 901 | DEFINE_RES_IRQ(EXYNOS4_IRQ_PMU_CPU1), |
| 902 | #if defined(CONFIG_SOC_EXYNOS4412) |
| 903 | DEFINE_RES_IRQ(EXYNOS4_IRQ_PMU_CPU2), |
| 904 | DEFINE_RES_IRQ(EXYNOS4_IRQ_PMU_CPU3), |
| 905 | #endif |
| 906 | }; |
| 907 | |
| 908 | static struct platform_device exynos4_device_pmu = { |
| 909 | .name = "arm-pmu", |
| 910 | .num_resources = ARRAY_SIZE(exynos4_pmu_resource), |
| 911 | .resource = exynos4_pmu_resource, |
| 912 | }; |
| 913 | |
| 914 | static int __init exynos_armpmu_init(void) |
| 915 | { |
| 916 | if (!of_have_populated_dt()) { |
| 917 | if (soc_is_exynos4210() || soc_is_exynos4212()) |
| 918 | exynos4_device_pmu.num_resources = 2; |
| 919 | platform_device_register(&exynos4_device_pmu); |
| 920 | } |
| 921 | |
| 922 | return 0; |
| 923 | } |
| 924 | arch_initcall(exynos_armpmu_init); |