Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 1 | /* |
Linus Walleij | c15def1 | 2011-12-15 13:38:40 +0100 | [diff] [blame] | 2 | * Copyright (C) 2008-2009 ST-Ericsson SA |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 3 | * |
| 4 | * Author: Srinidhi KASAGAR <srinidhi.kasagar@stericsson.com> |
| 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 version 2, as |
| 8 | * published by the Free Software Foundation. |
| 9 | * |
| 10 | */ |
| 11 | #include <linux/types.h> |
| 12 | #include <linux/init.h> |
| 13 | #include <linux/device.h> |
| 14 | #include <linux/amba/bus.h> |
Arnd Bergmann | a16729e | 2016-06-20 23:40:55 +0200 | [diff] [blame] | 15 | #include <linux/init.h> |
Rabin Vincent | aa90eb9 | 2011-02-08 09:24:37 +0530 | [diff] [blame] | 16 | #include <linux/interrupt.h> |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 17 | #include <linux/irq.h> |
Arnd Bergmann | a16729e | 2016-06-20 23:40:55 +0200 | [diff] [blame] | 18 | #include <linux/irqchip.h> |
| 19 | #include <linux/irqchip/arm-gic.h> |
| 20 | #include <linux/mfd/dbx500-prcmu.h> |
| 21 | #include <linux/platform_data/arm-ux500-pm.h> |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 22 | #include <linux/platform_device.h> |
Rabin Vincent | cc2c133 | 2010-03-01 05:03:31 +0100 | [diff] [blame] | 23 | #include <linux/io.h> |
Lee Jones | fa86a76 | 2012-09-27 10:17:36 +0100 | [diff] [blame] | 24 | #include <linux/of.h> |
Arnd Bergmann | a16729e | 2016-06-20 23:40:55 +0200 | [diff] [blame] | 25 | #include <linux/of_address.h> |
Lee Jones | fa86a76 | 2012-09-27 10:17:36 +0100 | [diff] [blame] | 26 | #include <linux/of_platform.h> |
Mark Rutland | fa8ad78 | 2015-07-06 12:23:53 +0100 | [diff] [blame] | 27 | #include <linux/perf/arm_pmu.h> |
Lee Jones | fa86a76 | 2012-09-27 10:17:36 +0100 | [diff] [blame] | 28 | #include <linux/regulator/machine.h> |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 29 | |
Arnd Bergmann | a16729e | 2016-06-20 23:40:55 +0200 | [diff] [blame] | 30 | #include <asm/outercache.h> |
| 31 | #include <asm/hardware/cache-l2x0.h> |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 32 | #include <asm/mach/map.h> |
Arnd Bergmann | a16729e | 2016-06-20 23:40:55 +0200 | [diff] [blame] | 33 | #include <asm/mach/arch.h> |
Linus Torvalds | b8edf84 | 2012-12-13 10:57:16 -0800 | [diff] [blame] | 34 | |
Arnd Bergmann | e657bcf | 2013-03-21 22:51:12 +0100 | [diff] [blame] | 35 | #include "setup.h" |
Rabin Vincent | 94bdc0e | 2010-03-03 04:54:37 +0100 | [diff] [blame] | 36 | |
Lee Jones | fa86a76 | 2012-09-27 10:17:36 +0100 | [diff] [blame] | 37 | #include "board-mop500.h" |
Lee Jones | 6f6d643 | 2013-11-06 10:05:43 +0000 | [diff] [blame] | 38 | #include "db8500-regs.h" |
Srinidhi Kasagar | aa44ef4 | 2009-11-28 08:17:18 +0100 | [diff] [blame] | 39 | |
Arnd Bergmann | a16729e | 2016-06-20 23:40:55 +0200 | [diff] [blame] | 40 | static int __init ux500_l2x0_unlock(void) |
| 41 | { |
| 42 | int i; |
| 43 | struct device_node *np; |
| 44 | void __iomem *l2x0_base; |
| 45 | |
| 46 | np = of_find_compatible_node(NULL, NULL, "arm,pl310-cache"); |
| 47 | l2x0_base = of_iomap(np, 0); |
| 48 | of_node_put(np); |
| 49 | if (!l2x0_base) |
| 50 | return -ENODEV; |
| 51 | |
| 52 | /* |
| 53 | * Unlock Data and Instruction Lock if locked. Ux500 U-Boot versions |
| 54 | * apparently locks both caches before jumping to the kernel. The |
| 55 | * l2x0 core will not touch the unlock registers if the l2x0 is |
| 56 | * already enabled, so we do it right here instead. The PL310 has |
| 57 | * 8 sets of registers, one per possible CPU. |
| 58 | */ |
| 59 | for (i = 0; i < 8; i++) { |
| 60 | writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_D_BASE + |
| 61 | i * L2X0_LOCKDOWN_STRIDE); |
| 62 | writel_relaxed(0x0, l2x0_base + L2X0_LOCKDOWN_WAY_I_BASE + |
| 63 | i * L2X0_LOCKDOWN_STRIDE); |
| 64 | } |
| 65 | iounmap(l2x0_base); |
| 66 | return 0; |
| 67 | } |
| 68 | |
| 69 | static void ux500_l2c310_write_sec(unsigned long val, unsigned reg) |
| 70 | { |
| 71 | /* |
| 72 | * We can't write to secure registers as we are in non-secure |
| 73 | * mode, until we have some SMI service available. |
| 74 | */ |
| 75 | } |
| 76 | |
| 77 | /* |
| 78 | * FIXME: Should we set up the GPIO domain here? |
| 79 | * |
| 80 | * The problem is that we cannot put the interrupt resources into the platform |
| 81 | * device until the irqdomain has been added. Right now, we set the GIC interrupt |
| 82 | * domain from init_irq(), then load the gpio driver from |
| 83 | * core_initcall(nmk_gpio_init) and add the platform devices from |
| 84 | * arch_initcall(customize_machine). |
| 85 | * |
| 86 | * This feels fragile because it depends on the gpio device getting probed |
| 87 | * _before_ any device uses the gpio interrupts. |
| 88 | */ |
| 89 | static void __init ux500_init_irq(void) |
| 90 | { |
| 91 | struct device_node *np; |
| 92 | struct resource r; |
| 93 | |
| 94 | irqchip_init(); |
| 95 | np = of_find_compatible_node(NULL, NULL, "stericsson,db8500-prcmu"); |
| 96 | of_address_to_resource(np, 0, &r); |
| 97 | of_node_put(np); |
| 98 | if (!r.start) { |
| 99 | pr_err("could not find PRCMU base resource\n"); |
| 100 | return; |
| 101 | } |
| 102 | prcmu_early_init(r.start, r.end-r.start); |
| 103 | ux500_pm_init(r.start, r.end-r.start); |
| 104 | |
| 105 | /* Unlock before init */ |
| 106 | ux500_l2x0_unlock(); |
| 107 | outer_cache.write_sec = ux500_l2c310_write_sec; |
| 108 | } |
| 109 | |
| 110 | static void ux500_restart(enum reboot_mode mode, const char *cmd) |
| 111 | { |
| 112 | local_irq_disable(); |
| 113 | local_fiq_disable(); |
| 114 | |
| 115 | prcmu_system_reset(0); |
| 116 | } |
| 117 | |
Rabin Vincent | aa90eb9 | 2011-02-08 09:24:37 +0530 | [diff] [blame] | 118 | /* |
| 119 | * The PMU IRQ lines of two cores are wired together into a single interrupt. |
| 120 | * Bounce the interrupt to the other core if it's not ours. |
| 121 | */ |
| 122 | static irqreturn_t db8500_pmu_handler(int irq, void *dev, irq_handler_t handler) |
| 123 | { |
| 124 | irqreturn_t ret = handler(irq, dev); |
| 125 | int other = !smp_processor_id(); |
| 126 | |
| 127 | if (ret == IRQ_NONE && cpu_online(other)) |
| 128 | irq_set_affinity(irq, cpumask_of(other)); |
| 129 | |
| 130 | /* |
| 131 | * We should be able to get away with the amount of IRQ_NONEs we give, |
| 132 | * while still having the spurious IRQ detection code kick in if the |
| 133 | * interrupt really starts hitting spuriously. |
| 134 | */ |
| 135 | return ret; |
| 136 | } |
| 137 | |
Sachin Kamat | 0d01ab3 | 2014-05-28 14:56:04 +0530 | [diff] [blame] | 138 | static struct arm_pmu_platdata db8500_pmu_platdata = { |
Rabin Vincent | aa90eb9 | 2011-02-08 09:24:37 +0530 | [diff] [blame] | 139 | .handle_irq = db8500_pmu_handler, |
| 140 | }; |
| 141 | |
Lee Jones | fa86a76 | 2012-09-27 10:17:36 +0100 | [diff] [blame] | 142 | static struct of_dev_auxdata u8500_auxdata_lookup[] __initdata = { |
| 143 | /* Requires call-back bindings. */ |
| 144 | OF_DEV_AUXDATA("arm,cortex-a9-pmu", 0, "arm-pmu", &db8500_pmu_platdata), |
Lee Jones | cece5c4 | 2012-11-03 13:37:15 +0100 | [diff] [blame] | 145 | /* Requires DMA bindings. */ |
Lee Jones | acab2f6 | 2013-09-18 13:37:12 +0100 | [diff] [blame] | 146 | OF_DEV_AUXDATA("stericsson,ux500-msp-i2s", 0x80123000, |
| 147 | "ux500-msp-i2s.0", &msp0_platform_data), |
| 148 | OF_DEV_AUXDATA("stericsson,ux500-msp-i2s", 0x80124000, |
| 149 | "ux500-msp-i2s.1", &msp1_platform_data), |
| 150 | OF_DEV_AUXDATA("stericsson,ux500-msp-i2s", 0x80117000, |
| 151 | "ux500-msp-i2s.2", &msp2_platform_data), |
| 152 | OF_DEV_AUXDATA("stericsson,ux500-msp-i2s", 0x80125000, |
| 153 | "ux500-msp-i2s.3", &msp3_platform_data), |
Lee Jones | 1b1d2e8 | 2013-08-21 11:32:49 +0100 | [diff] [blame] | 154 | /* Requires non-DT:able platform data. */ |
Arnd Bergmann | 4e65794 | 2016-03-18 16:53:31 +0100 | [diff] [blame] | 155 | OF_DEV_AUXDATA("stericsson,db8500-prcmu", 0x80157000, "db8500-prcmu", NULL), |
Lee Jones | 946cc7d | 2013-05-16 12:27:23 +0100 | [diff] [blame] | 156 | OF_DEV_AUXDATA("stericsson,ux500-cryp", 0xa03cb000, "cryp1", NULL), |
Lee Jones | f016d44 | 2013-05-16 12:27:24 +0100 | [diff] [blame] | 157 | OF_DEV_AUXDATA("stericsson,ux500-hash", 0xa03c2000, "hash1", NULL), |
Fabio Baltieri | ef95f7f | 2013-05-30 15:27:44 +0200 | [diff] [blame] | 158 | OF_DEV_AUXDATA("stericsson,snd-soc-mop500", 0, "snd-soc-mop500.0", |
| 159 | NULL), |
Lee Jones | fa86a76 | 2012-09-27 10:17:36 +0100 | [diff] [blame] | 160 | {}, |
| 161 | }; |
| 162 | |
Lee Jones | c21a43b | 2013-04-02 14:21:53 +0100 | [diff] [blame] | 163 | static struct of_dev_auxdata u8540_auxdata_lookup[] __initdata = { |
Arnd Bergmann | 4e65794 | 2016-03-18 16:53:31 +0100 | [diff] [blame] | 164 | OF_DEV_AUXDATA("stericsson,db8500-prcmu", 0x80157000, "db8500-prcmu", NULL), |
Lee Jones | c21a43b | 2013-04-02 14:21:53 +0100 | [diff] [blame] | 165 | {}, |
| 166 | }; |
| 167 | |
Lee Jones | fa86a76 | 2012-09-27 10:17:36 +0100 | [diff] [blame] | 168 | static const struct of_device_id u8500_local_bus_nodes[] = { |
| 169 | /* only create devices below soc node */ |
| 170 | { .compatible = "stericsson,db8500", }, |
| 171 | { .compatible = "stericsson,db8500-prcmu", }, |
| 172 | { .compatible = "simple-bus"}, |
| 173 | { }, |
| 174 | }; |
| 175 | |
| 176 | static void __init u8500_init_machine(void) |
| 177 | { |
Lee Jones | c21a43b | 2013-04-02 14:21:53 +0100 | [diff] [blame] | 178 | /* automatically probe child nodes of dbx5x0 devices */ |
| 179 | if (of_machine_is_compatible("st-ericsson,u8540")) |
| 180 | of_platform_populate(NULL, u8500_local_bus_nodes, |
Arnd Bergmann | 18a9927 | 2016-06-22 16:32:36 +0200 | [diff] [blame] | 181 | u8540_auxdata_lookup, NULL); |
Lee Jones | c21a43b | 2013-04-02 14:21:53 +0100 | [diff] [blame] | 182 | else |
| 183 | of_platform_populate(NULL, u8500_local_bus_nodes, |
Arnd Bergmann | 18a9927 | 2016-06-22 16:32:36 +0200 | [diff] [blame] | 184 | u8500_auxdata_lookup, NULL); |
Lee Jones | fa86a76 | 2012-09-27 10:17:36 +0100 | [diff] [blame] | 185 | } |
| 186 | |
Lee Jones | 79b4075 | 2012-10-15 10:07:55 +0100 | [diff] [blame] | 187 | static const char * stericsson_dt_platform_compat[] = { |
| 188 | "st-ericsson,u8500", |
| 189 | "st-ericsson,u8540", |
| 190 | "st-ericsson,u9500", |
| 191 | "st-ericsson,u9540", |
Lee Jones | fa86a76 | 2012-09-27 10:17:36 +0100 | [diff] [blame] | 192 | NULL, |
| 193 | }; |
| 194 | |
Lee Jones | 46c1bf8 | 2012-10-15 08:55:17 +0100 | [diff] [blame] | 195 | DT_MACHINE_START(U8500_DT, "ST-Ericsson Ux5x0 platform (Device Tree Support)") |
Arnd Bergmann | 1e6cbc0 | 2016-06-20 22:27:23 +0200 | [diff] [blame] | 196 | .l2c_aux_val = 0, |
| 197 | .l2c_aux_mask = ~0, |
Lee Jones | fa86a76 | 2012-09-27 10:17:36 +0100 | [diff] [blame] | 198 | .init_irq = ux500_init_irq, |
Lee Jones | fa86a76 | 2012-09-27 10:17:36 +0100 | [diff] [blame] | 199 | .init_machine = u8500_init_machine, |
Lee Jones | 79b4075 | 2012-10-15 10:07:55 +0100 | [diff] [blame] | 200 | .dt_compat = stericsson_dt_platform_compat, |
Fabio Baltieri | bd93ec5 | 2013-06-14 15:22:40 +0200 | [diff] [blame] | 201 | .restart = ux500_restart, |
Lee Jones | fa86a76 | 2012-09-27 10:17:36 +0100 | [diff] [blame] | 202 | MACHINE_END |