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