Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 1 | /* |
Thomas Petazzoni | e12f12a | 2014-11-13 10:39:00 +0100 | [diff] [blame] | 2 | * Coherency fabric (Aurora) support for Armada 370, 375, 38x and XP |
| 3 | * platforms. |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 4 | * |
| 5 | * Copyright (C) 2012 Marvell |
| 6 | * |
| 7 | * Yehuda Yitschak <yehuday@marvell.com> |
| 8 | * Gregory Clement <gregory.clement@free-electrons.com> |
| 9 | * Thomas Petazzoni <thomas.petazzoni@free-electrons.com> |
| 10 | * |
| 11 | * This file is licensed under the terms of the GNU General Public |
| 12 | * License version 2. This program is licensed "as is" without any |
| 13 | * warranty of any kind, whether express or implied. |
| 14 | * |
Thomas Petazzoni | e12f12a | 2014-11-13 10:39:00 +0100 | [diff] [blame] | 15 | * The Armada 370, 375, 38x and XP SOCs have a coherency fabric which is |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 16 | * responsible for ensuring hardware coherency between all CPUs and between |
| 17 | * CPUs and I/O masters. This file initializes the coherency fabric and |
| 18 | * supplies basic routines for configuring and controlling hardware coherency |
| 19 | */ |
| 20 | |
Thomas Petazzoni | 5ab5afd | 2014-04-14 15:47:05 +0200 | [diff] [blame] | 21 | #define pr_fmt(fmt) "mvebu-coherency: " fmt |
| 22 | |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 23 | #include <linux/kernel.h> |
| 24 | #include <linux/init.h> |
| 25 | #include <linux/of_address.h> |
| 26 | #include <linux/io.h> |
| 27 | #include <linux/smp.h> |
Gregory CLEMENT | e60304f | 2012-10-12 19:20:36 +0200 | [diff] [blame] | 28 | #include <linux/dma-mapping.h> |
| 29 | #include <linux/platform_device.h> |
Thomas Petazzoni | 5ab5afd | 2014-04-14 15:47:05 +0200 | [diff] [blame] | 30 | #include <linux/slab.h> |
| 31 | #include <linux/mbus.h> |
Thomas Petazzoni | b0063aa | 2014-05-13 18:04:30 +0200 | [diff] [blame] | 32 | #include <linux/pci.h> |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 33 | #include <asm/smp_plat.h> |
Thomas Petazzoni | 580ff0e | 2013-06-06 12:24:28 +0200 | [diff] [blame] | 34 | #include <asm/cacheflush.h> |
Thomas Petazzoni | 497a923 | 2014-05-15 16:59:34 +0200 | [diff] [blame] | 35 | #include <asm/mach/map.h> |
Thomas Petazzoni | 1bd4d8a | 2015-01-16 17:11:29 +0100 | [diff] [blame] | 36 | #include <asm/dma-mapping.h> |
Jisheng Zhang | b12634e | 2013-11-07 17:02:38 +0800 | [diff] [blame] | 37 | #include "coherency.h" |
Thomas Petazzoni | 3943856 | 2014-05-05 17:05:26 +0200 | [diff] [blame] | 38 | #include "mvebu-soc-id.h" |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 39 | |
Paul Gortmaker | 8bd26e3 | 2013-06-17 15:43:14 -0400 | [diff] [blame] | 40 | unsigned long coherency_phys_base; |
Gregory CLEMENT | ccd6a13 | 2014-04-14 17:10:05 +0200 | [diff] [blame] | 41 | void __iomem *coherency_base; |
Gregory CLEMENT | e60304f | 2012-10-12 19:20:36 +0200 | [diff] [blame] | 42 | static void __iomem *coherency_cpu_base; |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 43 | |
| 44 | /* Coherency fabric registers */ |
Gregory CLEMENT | e60304f | 2012-10-12 19:20:36 +0200 | [diff] [blame] | 45 | #define IO_SYNC_BARRIER_CTL_OFFSET 0x0 |
| 46 | |
Thomas Petazzoni | 924d38f | 2014-04-14 15:46:59 +0200 | [diff] [blame] | 47 | enum { |
Thomas Petazzoni | 501f928 | 2014-04-14 15:47:00 +0200 | [diff] [blame] | 48 | COHERENCY_FABRIC_TYPE_NONE, |
Thomas Petazzoni | 924d38f | 2014-04-14 15:46:59 +0200 | [diff] [blame] | 49 | COHERENCY_FABRIC_TYPE_ARMADA_370_XP, |
Thomas Petazzoni | 77fa4b9 | 2014-04-14 15:47:04 +0200 | [diff] [blame] | 50 | COHERENCY_FABRIC_TYPE_ARMADA_375, |
Thomas Petazzoni | d0de932 | 2014-04-14 15:47:06 +0200 | [diff] [blame] | 51 | COHERENCY_FABRIC_TYPE_ARMADA_380, |
Thomas Petazzoni | 924d38f | 2014-04-14 15:46:59 +0200 | [diff] [blame] | 52 | }; |
| 53 | |
Uwe Kleine-König | 444d2d3 | 2015-02-18 21:19:56 +0100 | [diff] [blame] | 54 | static const struct of_device_id of_coherency_table[] = { |
Thomas Petazzoni | 924d38f | 2014-04-14 15:46:59 +0200 | [diff] [blame] | 55 | {.compatible = "marvell,coherency-fabric", |
| 56 | .data = (void *) COHERENCY_FABRIC_TYPE_ARMADA_370_XP }, |
Thomas Petazzoni | 77fa4b9 | 2014-04-14 15:47:04 +0200 | [diff] [blame] | 57 | {.compatible = "marvell,armada-375-coherency-fabric", |
| 58 | .data = (void *) COHERENCY_FABRIC_TYPE_ARMADA_375 }, |
Thomas Petazzoni | d0de932 | 2014-04-14 15:47:06 +0200 | [diff] [blame] | 59 | {.compatible = "marvell,armada-380-coherency-fabric", |
| 60 | .data = (void *) COHERENCY_FABRIC_TYPE_ARMADA_380 }, |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 61 | { /* end of list */ }, |
| 62 | }; |
| 63 | |
Gregory CLEMENT | 2e8a594 | 2014-04-14 17:10:08 +0200 | [diff] [blame] | 64 | /* Functions defined in coherency_ll.S */ |
| 65 | int ll_enable_coherency(void); |
| 66 | void ll_add_cpu_to_smp_group(void); |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 67 | |
Gregory CLEMENT | 952f4ca | 2014-04-14 17:10:07 +0200 | [diff] [blame] | 68 | int set_cpu_coherent(void) |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 69 | { |
| 70 | if (!coherency_base) { |
Gregory CLEMENT | b41375f | 2014-04-14 17:10:06 +0200 | [diff] [blame] | 71 | pr_warn("Can't make current CPU cache coherent.\n"); |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 72 | pr_warn("Coherency fabric is not initialized\n"); |
| 73 | return 1; |
| 74 | } |
| 75 | |
Gregory CLEMENT | 2e8a594 | 2014-04-14 17:10:08 +0200 | [diff] [blame] | 76 | ll_add_cpu_to_smp_group(); |
| 77 | return ll_enable_coherency(); |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 78 | } |
| 79 | |
Thomas Petazzoni | b0063aa | 2014-05-13 18:04:30 +0200 | [diff] [blame] | 80 | static int mvebu_hwcc_notifier(struct notifier_block *nb, |
| 81 | unsigned long event, void *__dev) |
Gregory CLEMENT | e60304f | 2012-10-12 19:20:36 +0200 | [diff] [blame] | 82 | { |
| 83 | struct device *dev = __dev; |
| 84 | |
| 85 | if (event != BUS_NOTIFY_ADD_DEVICE) |
| 86 | return NOTIFY_DONE; |
Thomas Petazzoni | 1bd4d8a | 2015-01-16 17:11:29 +0100 | [diff] [blame] | 87 | set_dma_ops(dev, &arm_coherent_dma_ops); |
Gregory CLEMENT | e60304f | 2012-10-12 19:20:36 +0200 | [diff] [blame] | 88 | |
| 89 | return NOTIFY_OK; |
| 90 | } |
| 91 | |
Thomas Petazzoni | b0063aa | 2014-05-13 18:04:30 +0200 | [diff] [blame] | 92 | static struct notifier_block mvebu_hwcc_nb = { |
| 93 | .notifier_call = mvebu_hwcc_notifier, |
Gregory CLEMENT | e60304f | 2012-10-12 19:20:36 +0200 | [diff] [blame] | 94 | }; |
| 95 | |
Ezequiel Garcia | a728b97 | 2014-07-08 10:37:37 -0300 | [diff] [blame] | 96 | static struct notifier_block mvebu_hwcc_pci_nb = { |
| 97 | .notifier_call = mvebu_hwcc_notifier, |
| 98 | }; |
| 99 | |
Thomas Petazzoni | 924d38f | 2014-04-14 15:46:59 +0200 | [diff] [blame] | 100 | static void __init armada_370_coherency_init(struct device_node *np) |
| 101 | { |
| 102 | struct resource res; |
| 103 | |
| 104 | of_address_to_resource(np, 0, &res); |
| 105 | coherency_phys_base = res.start; |
| 106 | /* |
| 107 | * Ensure secondary CPUs will see the updated value, |
| 108 | * which they read before they join the coherency |
| 109 | * fabric, and therefore before they are coherent with |
| 110 | * the boot CPU cache. |
| 111 | */ |
| 112 | sync_cache_w(&coherency_phys_base); |
| 113 | coherency_base = of_iomap(np, 0); |
| 114 | coherency_cpu_base = of_iomap(np, 1); |
Gregory CLEMENT | 952f4ca | 2014-04-14 17:10:07 +0200 | [diff] [blame] | 115 | set_cpu_coherent(); |
Thomas Petazzoni | 924d38f | 2014-04-14 15:46:59 +0200 | [diff] [blame] | 116 | } |
| 117 | |
Thomas Petazzoni | 497a923 | 2014-05-15 16:59:34 +0200 | [diff] [blame] | 118 | /* |
| 119 | * This ioremap hook is used on Armada 375/38x to ensure that PCIe |
| 120 | * memory areas are mapped as MT_UNCACHED instead of MT_DEVICE. This |
| 121 | * is needed as a workaround for a deadlock issue between the PCIe |
| 122 | * interface and the cache controller. |
| 123 | */ |
| 124 | static void __iomem * |
| 125 | armada_pcie_wa_ioremap_caller(phys_addr_t phys_addr, size_t size, |
| 126 | unsigned int mtype, void *caller) |
| 127 | { |
| 128 | struct resource pcie_mem; |
| 129 | |
| 130 | mvebu_mbus_get_pcie_mem_aperture(&pcie_mem); |
| 131 | |
| 132 | if (pcie_mem.start <= phys_addr && (phys_addr + size) <= pcie_mem.end) |
| 133 | mtype = MT_UNCACHED; |
| 134 | |
| 135 | return __arm_ioremap_caller(phys_addr, size, mtype, caller); |
| 136 | } |
| 137 | |
Thomas Petazzoni | d0de932 | 2014-04-14 15:47:06 +0200 | [diff] [blame] | 138 | static void __init armada_375_380_coherency_init(struct device_node *np) |
Thomas Petazzoni | 77fa4b9 | 2014-04-14 15:47:04 +0200 | [diff] [blame] | 139 | { |
Thomas Petazzoni | 497a923 | 2014-05-15 16:59:34 +0200 | [diff] [blame] | 140 | struct device_node *cache_dn; |
| 141 | |
Thomas Petazzoni | 77fa4b9 | 2014-04-14 15:47:04 +0200 | [diff] [blame] | 142 | coherency_cpu_base = of_iomap(np, 0); |
Thomas Petazzoni | 497a923 | 2014-05-15 16:59:34 +0200 | [diff] [blame] | 143 | arch_ioremap_caller = armada_pcie_wa_ioremap_caller; |
| 144 | |
| 145 | /* |
Thomas Petazzoni | dcad688 | 2015-01-28 12:55:45 +0100 | [diff] [blame] | 146 | * We should switch the PL310 to I/O coherency mode only if |
| 147 | * I/O coherency is actually enabled. |
| 148 | */ |
| 149 | if (!coherency_available()) |
| 150 | return; |
| 151 | |
| 152 | /* |
Thomas Petazzoni | 497a923 | 2014-05-15 16:59:34 +0200 | [diff] [blame] | 153 | * Add the PL310 property "arm,io-coherent". This makes sure the |
| 154 | * outer sync operation is not used, which allows to |
| 155 | * workaround the system erratum that causes deadlocks when |
| 156 | * doing PCIe in an SMP situation on Armada 375 and Armada |
| 157 | * 38x. |
| 158 | */ |
| 159 | for_each_compatible_node(cache_dn, NULL, "arm,pl310-cache") { |
| 160 | struct property *p; |
| 161 | |
| 162 | p = kzalloc(sizeof(*p), GFP_KERNEL); |
| 163 | p->name = kstrdup("arm,io-coherent", GFP_KERNEL); |
| 164 | of_add_property(cache_dn, p); |
| 165 | } |
Thomas Petazzoni | 77fa4b9 | 2014-04-14 15:47:04 +0200 | [diff] [blame] | 166 | } |
| 167 | |
Thomas Petazzoni | 501f928 | 2014-04-14 15:47:00 +0200 | [diff] [blame] | 168 | static int coherency_type(void) |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 169 | { |
| 170 | struct device_node *np; |
Thomas Petazzoni | 5fbba08 | 2014-04-14 15:47:02 +0200 | [diff] [blame] | 171 | const struct of_device_id *match; |
Thomas Petazzoni | e553554 | 2014-11-13 10:38:57 +0100 | [diff] [blame] | 172 | int type; |
| 173 | |
| 174 | /* |
| 175 | * The coherency fabric is needed: |
| 176 | * - For coherency between processors on Armada XP, so only |
| 177 | * when SMP is enabled. |
| 178 | * - For coherency between the processor and I/O devices, but |
| 179 | * this coherency requires many pre-requisites (write |
| 180 | * allocate cache policy, shareable pages, SMP bit set) that |
| 181 | * are only meant in SMP situations. |
| 182 | * |
| 183 | * Note that this means that on Armada 370, there is currently |
| 184 | * no way to use hardware I/O coherency, because even when |
| 185 | * CONFIG_SMP is enabled, is_smp() returns false due to the |
| 186 | * Armada 370 being a single-core processor. To lift this |
| 187 | * limitation, we would have to find a way to make the cache |
| 188 | * policy set to write-allocate (on all Armada SoCs), and to |
| 189 | * set the shareable attribute in page tables (on all Armada |
| 190 | * SoCs except the Armada 370). Unfortunately, such decisions |
| 191 | * are taken very early in the kernel boot process, at a point |
| 192 | * where we don't know yet on which SoC we are running. |
| 193 | |
| 194 | */ |
| 195 | if (!is_smp()) |
| 196 | return COHERENCY_FABRIC_TYPE_NONE; |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 197 | |
Thomas Petazzoni | 5fbba08 | 2014-04-14 15:47:02 +0200 | [diff] [blame] | 198 | np = of_find_matching_node_and_match(NULL, of_coherency_table, &match); |
Thomas Petazzoni | e553554 | 2014-11-13 10:38:57 +0100 | [diff] [blame] | 199 | if (!np) |
| 200 | return COHERENCY_FABRIC_TYPE_NONE; |
Thomas Petazzoni | 924d38f | 2014-04-14 15:46:59 +0200 | [diff] [blame] | 201 | |
Thomas Petazzoni | e553554 | 2014-11-13 10:38:57 +0100 | [diff] [blame] | 202 | type = (int) match->data; |
Thomas Petazzoni | 924d38f | 2014-04-14 15:46:59 +0200 | [diff] [blame] | 203 | |
Thomas Petazzoni | e553554 | 2014-11-13 10:38:57 +0100 | [diff] [blame] | 204 | of_node_put(np); |
Thomas Petazzoni | 77fa4b9 | 2014-04-14 15:47:04 +0200 | [diff] [blame] | 205 | |
Thomas Petazzoni | e553554 | 2014-11-13 10:38:57 +0100 | [diff] [blame] | 206 | return type; |
Thomas Petazzoni | 501f928 | 2014-04-14 15:47:00 +0200 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | int coherency_available(void) |
| 210 | { |
Thomas Petazzoni | 1bd4d8a | 2015-01-16 17:11:29 +0100 | [diff] [blame] | 211 | return coherency_type() != COHERENCY_FABRIC_TYPE_NONE; |
Thomas Petazzoni | 501f928 | 2014-04-14 15:47:00 +0200 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | int __init coherency_init(void) |
| 215 | { |
| 216 | int type = coherency_type(); |
| 217 | struct device_node *np; |
| 218 | |
| 219 | np = of_find_matching_node(NULL, of_coherency_table); |
| 220 | |
| 221 | if (type == COHERENCY_FABRIC_TYPE_ARMADA_370_XP) |
| 222 | armada_370_coherency_init(np); |
Thomas Petazzoni | d0de932 | 2014-04-14 15:47:06 +0200 | [diff] [blame] | 223 | else if (type == COHERENCY_FABRIC_TYPE_ARMADA_375 || |
| 224 | type == COHERENCY_FABRIC_TYPE_ARMADA_380) |
| 225 | armada_375_380_coherency_init(np); |
Thomas Petazzoni | 501f928 | 2014-04-14 15:47:00 +0200 | [diff] [blame] | 226 | |
Thomas Petazzoni | 2eb04ae | 2014-10-27 16:32:35 +0100 | [diff] [blame] | 227 | of_node_put(np); |
| 228 | |
Gregory CLEMENT | 009f131 | 2012-08-02 11:16:29 +0300 | [diff] [blame] | 229 | return 0; |
| 230 | } |
Thomas Petazzoni | 865e052 | 2013-06-05 09:04:55 +0200 | [diff] [blame] | 231 | |
| 232 | static int __init coherency_late_init(void) |
| 233 | { |
Thomas Petazzoni | ef01c6c | 2014-11-13 10:38:59 +0100 | [diff] [blame] | 234 | if (coherency_available()) |
| 235 | bus_register_notifier(&platform_bus_type, |
| 236 | &mvebu_hwcc_nb); |
Thomas Petazzoni | 865e052 | 2013-06-05 09:04:55 +0200 | [diff] [blame] | 237 | return 0; |
| 238 | } |
| 239 | |
| 240 | postcore_initcall(coherency_late_init); |
Thomas Petazzoni | b0063aa | 2014-05-13 18:04:30 +0200 | [diff] [blame] | 241 | |
Thomas Petazzoni | 8828ccc | 2014-05-20 17:13:03 +0200 | [diff] [blame] | 242 | #if IS_ENABLED(CONFIG_PCI) |
Thomas Petazzoni | b0063aa | 2014-05-13 18:04:30 +0200 | [diff] [blame] | 243 | static int __init coherency_pci_init(void) |
| 244 | { |
| 245 | if (coherency_available()) |
| 246 | bus_register_notifier(&pci_bus_type, |
Ezequiel Garcia | a728b97 | 2014-07-08 10:37:37 -0300 | [diff] [blame] | 247 | &mvebu_hwcc_pci_nb); |
Thomas Petazzoni | b0063aa | 2014-05-13 18:04:30 +0200 | [diff] [blame] | 248 | return 0; |
| 249 | } |
| 250 | |
| 251 | arch_initcall(coherency_pci_init); |
Thomas Petazzoni | 8828ccc | 2014-05-20 17:13:03 +0200 | [diff] [blame] | 252 | #endif |