Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 1 | /* |
Olof Johansson | 31c56d8 | 2007-02-04 16:36:55 -0600 | [diff] [blame] | 2 | * Copyright (C) 2006-2007 PA Semi, Inc |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 3 | * |
| 4 | * Authors: Kip Walker, PA Semi |
| 5 | * Olof Johansson, PA Semi |
| 6 | * |
| 7 | * Maintained by: Olof Johansson <olof@lixom.net> |
| 8 | * |
| 9 | * Based on arch/powerpc/platforms/maple/setup.c |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License version 2 as |
| 13 | * published by the Free Software Foundation. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 23 | */ |
| 24 | |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 25 | #include <linux/errno.h> |
| 26 | #include <linux/kernel.h> |
| 27 | #include <linux/delay.h> |
| 28 | #include <linux/console.h> |
Paul Gortmaker | 66b15db | 2011-05-27 10:46:24 -0400 | [diff] [blame] | 29 | #include <linux/export.h> |
Benjamin Herrenschmidt | 12d04ee | 2006-11-11 17:25:02 +1100 | [diff] [blame] | 30 | #include <linux/pci.h> |
Jon Loeliger | 5f867dc | 2007-11-14 04:13:03 +1100 | [diff] [blame] | 31 | #include <linux/of_platform.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/gfp.h> |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 33 | |
| 34 | #include <asm/prom.h> |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 35 | #include <asm/iommu.h> |
| 36 | #include <asm/machdep.h> |
| 37 | #include <asm/mpic.h> |
| 38 | #include <asm/smp.h> |
| 39 | #include <asm/time.h> |
Michael Neuling | 584f8b7 | 2007-12-06 17:24:48 +1100 | [diff] [blame] | 40 | #include <asm/mmu.h> |
David Howells | ae3a197 | 2012-03-28 18:30:02 +0100 | [diff] [blame] | 41 | #include <asm/debug.h> |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 42 | |
Olof Johansson | 2b571a0 | 2007-10-16 23:26:20 -0700 | [diff] [blame] | 43 | #include <pcmcia/ss.h> |
| 44 | #include <pcmcia/cistpl.h> |
| 45 | #include <pcmcia/ds.h> |
| 46 | |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 47 | #include "pasemi.h" |
| 48 | |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 49 | /* SDC reset register, must be pre-mapped at reset time */ |
Olof Johansson | f620be9 | 2007-02-04 16:36:52 -0600 | [diff] [blame] | 50 | static void __iomem *reset_reg; |
| 51 | |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 52 | /* Various error status registers, must be pre-mapped at MCE time */ |
| 53 | |
| 54 | #define MAX_MCE_REGS 32 |
| 55 | struct mce_regs { |
| 56 | char *name; |
| 57 | void __iomem *addr; |
| 58 | }; |
| 59 | |
| 60 | static struct mce_regs mce_regs[MAX_MCE_REGS]; |
| 61 | static int num_mce_regs; |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 62 | static int nmi_virq = NO_IRQ; |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 63 | |
| 64 | |
Daniel Axtens | 95ec77c | 2016-07-12 10:54:52 +1000 | [diff] [blame] | 65 | static void __noreturn pas_restart(char *cmd) |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 66 | { |
Olof Johansson | 32e2b55 | 2007-11-07 09:31:06 -0600 | [diff] [blame] | 67 | /* Need to put others cpu in hold loop so they're not sleeping */ |
| 68 | smp_send_stop(); |
| 69 | udelay(10000); |
Olof Johansson | f620be9 | 2007-02-04 16:36:52 -0600 | [diff] [blame] | 70 | printk("Restarting...\n"); |
| 71 | while (1) |
| 72 | out_le32(reset_reg, 0x6000000); |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | #ifdef CONFIG_SMP |
Thomas Gleixner | 445c895 | 2009-12-02 19:49:50 +0100 | [diff] [blame] | 76 | static arch_spinlock_t timebase_lock; |
Olof Johansson | dc559f7 | 2007-08-22 12:26:43 +1000 | [diff] [blame] | 77 | static unsigned long timebase; |
Olof Johansson | c388cfe | 2007-02-04 16:36:53 -0600 | [diff] [blame] | 78 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 79 | static void pas_give_timebase(void) |
Olof Johansson | c388cfe | 2007-02-04 16:36:53 -0600 | [diff] [blame] | 80 | { |
Benjamin Herrenschmidt | 6893ce6 | 2009-06-16 16:42:51 +0000 | [diff] [blame] | 81 | unsigned long flags; |
| 82 | |
| 83 | local_irq_save(flags); |
| 84 | hard_irq_disable(); |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 85 | arch_spin_lock(&timebase_lock); |
Olof Johansson | c388cfe | 2007-02-04 16:36:53 -0600 | [diff] [blame] | 86 | mtspr(SPRN_TBCTL, TBCTL_FREEZE); |
Olof Johansson | dc559f7 | 2007-08-22 12:26:43 +1000 | [diff] [blame] | 87 | isync(); |
| 88 | timebase = get_tb(); |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 89 | arch_spin_unlock(&timebase_lock); |
Olof Johansson | dc559f7 | 2007-08-22 12:26:43 +1000 | [diff] [blame] | 90 | |
| 91 | while (timebase) |
| 92 | barrier(); |
| 93 | mtspr(SPRN_TBCTL, TBCTL_RESTART); |
Benjamin Herrenschmidt | 6893ce6 | 2009-06-16 16:42:51 +0000 | [diff] [blame] | 94 | local_irq_restore(flags); |
Olof Johansson | c388cfe | 2007-02-04 16:36:53 -0600 | [diff] [blame] | 95 | } |
| 96 | |
Greg Kroah-Hartman | cad5cef | 2012-12-21 14:04:10 -0800 | [diff] [blame] | 97 | static void pas_take_timebase(void) |
Olof Johansson | c388cfe | 2007-02-04 16:36:53 -0600 | [diff] [blame] | 98 | { |
Olof Johansson | dc559f7 | 2007-08-22 12:26:43 +1000 | [diff] [blame] | 99 | while (!timebase) |
| 100 | smp_rmb(); |
| 101 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 102 | arch_spin_lock(&timebase_lock); |
Olof Johansson | dc559f7 | 2007-08-22 12:26:43 +1000 | [diff] [blame] | 103 | set_tb(timebase >> 32, timebase & 0xffffffff); |
| 104 | timebase = 0; |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 105 | arch_spin_unlock(&timebase_lock); |
Olof Johansson | c388cfe | 2007-02-04 16:36:53 -0600 | [diff] [blame] | 106 | } |
| 107 | |
Daniel Axtens | 7c98bd7 | 2016-09-06 15:32:40 +1000 | [diff] [blame] | 108 | static struct smp_ops_t pas_smp_ops = { |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 109 | .probe = smp_mpic_probe, |
| 110 | .message_pass = smp_mpic_message_pass, |
| 111 | .kick_cpu = smp_generic_kick_cpu, |
| 112 | .setup_cpu = smp_mpic_setup_cpu, |
Olof Johansson | c388cfe | 2007-02-04 16:36:53 -0600 | [diff] [blame] | 113 | .give_timebase = pas_give_timebase, |
| 114 | .take_timebase = pas_take_timebase, |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 115 | }; |
| 116 | #endif /* CONFIG_SMP */ |
| 117 | |
Daniel Axtens | 7c98bd7 | 2016-09-06 15:32:40 +1000 | [diff] [blame] | 118 | static void __init pas_setup_arch(void) |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 119 | { |
| 120 | #ifdef CONFIG_SMP |
| 121 | /* Setup SMP callback */ |
| 122 | smp_ops = &pas_smp_ops; |
| 123 | #endif |
| 124 | /* Lookup PCI hosts */ |
| 125 | pas_pci_init(); |
| 126 | |
| 127 | #ifdef CONFIG_DUMMY_CONSOLE |
| 128 | conswitchp = &dummy_con; |
| 129 | #endif |
| 130 | |
Olof Johansson | f620be9 | 2007-02-04 16:36:52 -0600 | [diff] [blame] | 131 | /* Remap SDC register for doing reset */ |
| 132 | /* XXXOJN This should maybe come out of the device tree */ |
| 133 | reset_reg = ioremap(0xfc101100, 4); |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 134 | } |
| 135 | |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 136 | static int __init pas_setup_mce_regs(void) |
| 137 | { |
| 138 | struct pci_dev *dev; |
| 139 | int reg; |
| 140 | |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 141 | /* Remap various SoC status registers for use by the MCE handler */ |
| 142 | |
| 143 | reg = 0; |
| 144 | |
| 145 | dev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa00a, NULL); |
| 146 | while (dev && reg < MAX_MCE_REGS) { |
| 147 | mce_regs[reg].name = kasprintf(GFP_KERNEL, |
| 148 | "mc%d_mcdebug_errsta", reg); |
| 149 | mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x730); |
| 150 | dev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa00a, dev); |
| 151 | reg++; |
| 152 | } |
| 153 | |
| 154 | dev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa001, NULL); |
| 155 | if (dev && reg+4 < MAX_MCE_REGS) { |
| 156 | mce_regs[reg].name = "iobdbg_IntStatus1"; |
| 157 | mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x438); |
| 158 | reg++; |
| 159 | mce_regs[reg].name = "iobdbg_IOCTbusIntDbgReg"; |
| 160 | mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x454); |
| 161 | reg++; |
| 162 | mce_regs[reg].name = "iobiom_IntStatus"; |
| 163 | mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0xc10); |
| 164 | reg++; |
| 165 | mce_regs[reg].name = "iobiom_IntDbgReg"; |
| 166 | mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0xc1c); |
| 167 | reg++; |
| 168 | } |
| 169 | |
| 170 | dev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa009, NULL); |
| 171 | if (dev && reg+2 < MAX_MCE_REGS) { |
| 172 | mce_regs[reg].name = "l2csts_IntStatus"; |
| 173 | mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x200); |
| 174 | reg++; |
| 175 | mce_regs[reg].name = "l2csts_Cnt"; |
| 176 | mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x214); |
| 177 | reg++; |
| 178 | } |
| 179 | |
| 180 | num_mce_regs = reg; |
| 181 | |
| 182 | return 0; |
| 183 | } |
Grant Likely | bdddec4 | 2008-01-02 12:32:28 -0700 | [diff] [blame] | 184 | machine_device_initcall(pasemi, pas_setup_mce_regs); |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 185 | |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 186 | static __init void pas_init_IRQ(void) |
| 187 | { |
| 188 | struct device_node *np; |
| 189 | struct device_node *root, *mpic_node; |
| 190 | unsigned long openpic_addr; |
| 191 | const unsigned int *opprop; |
| 192 | int naddr, opplen; |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 193 | int mpic_flags; |
| 194 | const unsigned int *nmiprop; |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 195 | struct mpic *mpic; |
| 196 | |
| 197 | mpic_node = NULL; |
| 198 | |
| 199 | for_each_node_by_type(np, "interrupt-controller") |
Stephen Rothwell | 55b61fe | 2007-05-03 17:26:52 +1000 | [diff] [blame] | 200 | if (of_device_is_compatible(np, "open-pic")) { |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 201 | mpic_node = np; |
| 202 | break; |
| 203 | } |
| 204 | if (!mpic_node) |
| 205 | for_each_node_by_type(np, "open-pic") { |
| 206 | mpic_node = np; |
| 207 | break; |
| 208 | } |
| 209 | if (!mpic_node) { |
| 210 | printk(KERN_ERR |
| 211 | "Failed to locate the MPIC interrupt controller\n"); |
| 212 | return; |
| 213 | } |
| 214 | |
| 215 | /* Find address list in /platform-open-pic */ |
| 216 | root = of_find_node_by_path("/"); |
Stephen Rothwell | a8bda5d | 2007-04-03 10:56:50 +1000 | [diff] [blame] | 217 | naddr = of_n_addr_cells(root); |
Stephen Rothwell | e2eb639 | 2007-04-03 22:26:41 +1000 | [diff] [blame] | 218 | opprop = of_get_property(root, "platform-open-pic", &opplen); |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 219 | if (!opprop) { |
| 220 | printk(KERN_ERR "No platform-open-pic property.\n"); |
| 221 | of_node_put(root); |
| 222 | return; |
| 223 | } |
| 224 | openpic_addr = of_read_number(opprop, naddr); |
| 225 | printk(KERN_DEBUG "OpenPIC addr: %lx\n", openpic_addr); |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 226 | |
Kyle Moffett | e55d7f7 | 2011-12-22 10:19:14 +0000 | [diff] [blame] | 227 | mpic_flags = MPIC_LARGE_VECTORS | MPIC_NO_BIAS | MPIC_NO_RESET; |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 228 | |
| 229 | nmiprop = of_get_property(mpic_node, "nmi-source", NULL); |
| 230 | if (nmiprop) |
| 231 | mpic_flags |= MPIC_ENABLE_MCK; |
| 232 | |
Olof Johansson | 7df2457 | 2007-01-28 23:33:18 -0600 | [diff] [blame] | 233 | mpic = mpic_alloc(mpic_node, openpic_addr, |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 234 | mpic_flags, 0, 0, "PASEMI-OPIC"); |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 235 | BUG_ON(!mpic); |
| 236 | |
Kyle Moffett | e7a9867 | 2011-12-02 06:28:01 +0000 | [diff] [blame] | 237 | mpic_assign_isu(mpic, 0, mpic->paddr + 0x10000); |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 238 | mpic_init(mpic); |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 239 | /* The NMI/MCK source needs to be prio 15 */ |
| 240 | if (nmiprop) { |
| 241 | nmi_virq = irq_create_mapping(NULL, *nmiprop); |
| 242 | mpic_irq_set_priority(nmi_virq, 15); |
Thomas Gleixner | ec775d0 | 2011-03-25 16:45:20 +0100 | [diff] [blame] | 243 | irq_set_irq_type(nmi_virq, IRQ_TYPE_EDGE_RISING); |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 244 | mpic_unmask_irq(irq_get_irq_data(nmi_virq)); |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 245 | } |
| 246 | |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 247 | of_node_put(mpic_node); |
| 248 | of_node_put(root); |
| 249 | } |
| 250 | |
| 251 | static void __init pas_progress(char *s, unsigned short hex) |
| 252 | { |
| 253 | printk("[%04x] : %s\n", hex, s ? s : ""); |
| 254 | } |
| 255 | |
| 256 | |
Olof Johansson | bfed9d3 | 2007-02-04 16:36:50 -0600 | [diff] [blame] | 257 | static int pas_machine_check_handler(struct pt_regs *regs) |
| 258 | { |
| 259 | int cpu = smp_processor_id(); |
| 260 | unsigned long srr0, srr1, dsisr; |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 261 | int dump_slb = 0; |
| 262 | int i; |
Olof Johansson | bfed9d3 | 2007-02-04 16:36:50 -0600 | [diff] [blame] | 263 | |
| 264 | srr0 = regs->nip; |
| 265 | srr1 = regs->msr; |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 266 | |
Olof Johansson | f0d4577 | 2008-01-02 12:35:50 -0600 | [diff] [blame] | 267 | if (nmi_virq != NO_IRQ && mpic_get_mcirq() == nmi_virq) { |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 268 | printk(KERN_ERR "NMI delivered\n"); |
| 269 | debugger(regs); |
Lennert Buytenhek | 835c0553 | 2011-03-08 22:26:43 +0000 | [diff] [blame] | 270 | mpic_end_irq(irq_get_irq_data(nmi_virq)); |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 271 | goto out; |
| 272 | } |
| 273 | |
Olof Johansson | bfed9d3 | 2007-02-04 16:36:50 -0600 | [diff] [blame] | 274 | dsisr = mfspr(SPRN_DSISR); |
| 275 | printk(KERN_ERR "Machine Check on CPU %d\n", cpu); |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 276 | printk(KERN_ERR "SRR0 0x%016lx SRR1 0x%016lx\n", srr0, srr1); |
| 277 | printk(KERN_ERR "DSISR 0x%016lx DAR 0x%016lx\n", dsisr, regs->dar); |
| 278 | printk(KERN_ERR "BER 0x%016lx MER 0x%016lx\n", mfspr(SPRN_PA6T_BER), |
| 279 | mfspr(SPRN_PA6T_MER)); |
| 280 | printk(KERN_ERR "IER 0x%016lx DER 0x%016lx\n", mfspr(SPRN_PA6T_IER), |
| 281 | mfspr(SPRN_PA6T_DER)); |
Olof Johansson | bfed9d3 | 2007-02-04 16:36:50 -0600 | [diff] [blame] | 282 | printk(KERN_ERR "Cause:\n"); |
| 283 | |
| 284 | if (srr1 & 0x200000) |
| 285 | printk(KERN_ERR "Signalled by SDC\n"); |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 286 | |
Olof Johansson | bfed9d3 | 2007-02-04 16:36:50 -0600 | [diff] [blame] | 287 | if (srr1 & 0x100000) { |
| 288 | printk(KERN_ERR "Load/Store detected error:\n"); |
| 289 | if (dsisr & 0x8000) |
| 290 | printk(KERN_ERR "D-cache ECC double-bit error or bus error\n"); |
| 291 | if (dsisr & 0x4000) |
| 292 | printk(KERN_ERR "LSU snoop response error\n"); |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 293 | if (dsisr & 0x2000) { |
Olof Johansson | bfed9d3 | 2007-02-04 16:36:50 -0600 | [diff] [blame] | 294 | printk(KERN_ERR "MMU SLB multi-hit or invalid B field\n"); |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 295 | dump_slb = 1; |
| 296 | } |
Olof Johansson | bfed9d3 | 2007-02-04 16:36:50 -0600 | [diff] [blame] | 297 | if (dsisr & 0x1000) |
| 298 | printk(KERN_ERR "Recoverable Duptags\n"); |
| 299 | if (dsisr & 0x800) |
| 300 | printk(KERN_ERR "Recoverable D-cache parity error count overflow\n"); |
| 301 | if (dsisr & 0x400) |
| 302 | printk(KERN_ERR "TLB parity error count overflow\n"); |
| 303 | } |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 304 | |
Olof Johansson | bfed9d3 | 2007-02-04 16:36:50 -0600 | [diff] [blame] | 305 | if (srr1 & 0x80000) |
| 306 | printk(KERN_ERR "Bus Error\n"); |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 307 | |
| 308 | if (srr1 & 0x40000) { |
Olof Johansson | bfed9d3 | 2007-02-04 16:36:50 -0600 | [diff] [blame] | 309 | printk(KERN_ERR "I-side SLB multiple hit\n"); |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 310 | dump_slb = 1; |
| 311 | } |
| 312 | |
Olof Johansson | bfed9d3 | 2007-02-04 16:36:50 -0600 | [diff] [blame] | 313 | if (srr1 & 0x20000) |
| 314 | printk(KERN_ERR "I-cache parity error hit\n"); |
| 315 | |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 316 | if (num_mce_regs == 0) |
| 317 | printk(KERN_ERR "No MCE registers mapped yet, can't dump\n"); |
| 318 | else |
| 319 | printk(KERN_ERR "SoC debug registers:\n"); |
| 320 | |
| 321 | for (i = 0; i < num_mce_regs; i++) |
| 322 | printk(KERN_ERR "%s: 0x%08x\n", mce_regs[i].name, |
| 323 | in_le32(mce_regs[i].addr)); |
| 324 | |
| 325 | if (dump_slb) { |
| 326 | unsigned long e, v; |
| 327 | int i; |
| 328 | |
| 329 | printk(KERN_ERR "slb contents:\n"); |
Michael Neuling | 584f8b7 | 2007-12-06 17:24:48 +1100 | [diff] [blame] | 330 | for (i = 0; i < mmu_slb_size; i++) { |
Olof Johansson | cd78341 | 2007-09-05 12:09:23 +1000 | [diff] [blame] | 331 | asm volatile("slbmfee %0,%1" : "=r" (e) : "r" (i)); |
| 332 | asm volatile("slbmfev %0,%1" : "=r" (v) : "r" (i)); |
| 333 | printk(KERN_ERR "%02d %016lx %016lx\n", i, e, v); |
| 334 | } |
| 335 | } |
| 336 | |
Olof Johansson | f365355 | 2007-12-20 13:11:18 -0600 | [diff] [blame] | 337 | out: |
Olof Johansson | bfed9d3 | 2007-02-04 16:36:50 -0600 | [diff] [blame] | 338 | /* SRR1[62] is from MSR[62] if recoverable, so pass that back */ |
| 339 | return !!(srr1 & 0x2); |
| 340 | } |
| 341 | |
Olof Johansson | 2b571a0 | 2007-10-16 23:26:20 -0700 | [diff] [blame] | 342 | #ifdef CONFIG_PCMCIA |
| 343 | static int pcmcia_notify(struct notifier_block *nb, unsigned long action, |
| 344 | void *data) |
| 345 | { |
| 346 | struct device *dev = data; |
| 347 | struct device *parent; |
| 348 | struct pcmcia_device *pdev = to_pcmcia_dev(dev); |
| 349 | |
| 350 | /* We are only intereted in device addition */ |
| 351 | if (action != BUS_NOTIFY_ADD_DEVICE) |
| 352 | return 0; |
| 353 | |
| 354 | parent = pdev->socket->dev.parent; |
| 355 | |
| 356 | /* We know electra_cf devices will always have of_node set, since |
| 357 | * electra_cf is an of_platform driver. |
| 358 | */ |
Grant Likely | 58f9b0b | 2010-04-13 16:12:56 -0700 | [diff] [blame] | 359 | if (!parent->of_node) |
Olof Johansson | 2b571a0 | 2007-10-16 23:26:20 -0700 | [diff] [blame] | 360 | return 0; |
| 361 | |
Grant Likely | 58f9b0b | 2010-04-13 16:12:56 -0700 | [diff] [blame] | 362 | if (!of_device_is_compatible(parent->of_node, "electra-cf")) |
Olof Johansson | 2b571a0 | 2007-10-16 23:26:20 -0700 | [diff] [blame] | 363 | return 0; |
| 364 | |
| 365 | /* We use the direct ops for localbus */ |
| 366 | dev->archdata.dma_ops = &dma_direct_ops; |
| 367 | |
| 368 | return 0; |
| 369 | } |
| 370 | |
| 371 | static struct notifier_block pcmcia_notifier = { |
| 372 | .notifier_call = pcmcia_notify, |
| 373 | }; |
| 374 | |
| 375 | static inline void pasemi_pcmcia_init(void) |
| 376 | { |
| 377 | extern struct bus_type pcmcia_bus_type; |
| 378 | |
| 379 | bus_register_notifier(&pcmcia_bus_type, &pcmcia_notifier); |
| 380 | } |
| 381 | |
| 382 | #else |
| 383 | |
| 384 | static inline void pasemi_pcmcia_init(void) |
| 385 | { |
| 386 | } |
| 387 | |
| 388 | #endif |
| 389 | |
| 390 | |
Uwe Kleine-König | ce6d73c | 2014-09-10 21:56:38 +0200 | [diff] [blame] | 391 | static const struct of_device_id pasemi_bus_ids[] = { |
Olof Johansson | 0d08a84 | 2007-11-04 20:57:45 -0600 | [diff] [blame] | 392 | /* Unfortunately needed for legacy firmwares */ |
Olof Johansson | 2b571a0 | 2007-10-16 23:26:20 -0700 | [diff] [blame] | 393 | { .type = "localbus", }, |
Olof Johansson | b97d279 | 2007-04-18 16:39:54 +1000 | [diff] [blame] | 394 | { .type = "sdc", }, |
Olof Johansson | 0d08a84 | 2007-11-04 20:57:45 -0600 | [diff] [blame] | 395 | /* These are the proper entries, which newer firmware uses */ |
| 396 | { .compatible = "pasemi,localbus", }, |
| 397 | { .compatible = "pasemi,sdc", }, |
Olof Johansson | b97d279 | 2007-04-18 16:39:54 +1000 | [diff] [blame] | 398 | {}, |
| 399 | }; |
| 400 | |
| 401 | static int __init pasemi_publish_devices(void) |
| 402 | { |
Olof Johansson | 2b571a0 | 2007-10-16 23:26:20 -0700 | [diff] [blame] | 403 | pasemi_pcmcia_init(); |
| 404 | |
Olof Johansson | 90f7afe | 2007-05-01 14:43:39 +1000 | [diff] [blame] | 405 | /* Publish OF platform devices for SDC and other non-PCI devices */ |
Olof Johansson | b97d279 | 2007-04-18 16:39:54 +1000 | [diff] [blame] | 406 | of_platform_bus_probe(NULL, pasemi_bus_ids, NULL); |
| 407 | |
| 408 | return 0; |
| 409 | } |
Grant Likely | bdddec4 | 2008-01-02 12:32:28 -0700 | [diff] [blame] | 410 | machine_device_initcall(pasemi, pasemi_publish_devices); |
Olof Johansson | b97d279 | 2007-04-18 16:39:54 +1000 | [diff] [blame] | 411 | |
Olof Johansson | bfed9d3 | 2007-02-04 16:36:50 -0600 | [diff] [blame] | 412 | |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 413 | /* |
| 414 | * Called very early, MMU is off, device-tree isn't unflattened |
| 415 | */ |
| 416 | static int __init pas_probe(void) |
| 417 | { |
Benjamin Herrenschmidt | 406b0b6 | 2016-07-05 15:04:00 +1000 | [diff] [blame] | 418 | if (!of_machine_is_compatible("PA6T-1682M") && |
| 419 | !of_machine_is_compatible("pasemi,pwrficient")) |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 420 | return 0; |
| 421 | |
Benjamin Herrenschmidt | f2d5769 | 2016-07-05 15:04:06 +1000 | [diff] [blame] | 422 | iommu_init_early_pasemi(); |
| 423 | |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 424 | return 1; |
| 425 | } |
| 426 | |
Olof Johansson | d4875a2 | 2007-07-06 00:49:04 +1000 | [diff] [blame] | 427 | define_machine(pasemi) { |
Olof Johansson | 0d08a84 | 2007-11-04 20:57:45 -0600 | [diff] [blame] | 428 | .name = "PA Semi PWRficient", |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 429 | .probe = pas_probe, |
| 430 | .setup_arch = pas_setup_arch, |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 431 | .init_IRQ = pas_init_IRQ, |
| 432 | .get_irq = mpic_get_irq, |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 433 | .restart = pas_restart, |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 434 | .get_boot_time = pas_get_boot_time, |
| 435 | .calibrate_decr = generic_calibrate_decr, |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 436 | .progress = pas_progress, |
Olof Johansson | bfed9d3 | 2007-02-04 16:36:50 -0600 | [diff] [blame] | 437 | .machine_check_exception = pas_machine_check_handler, |
Olof Johansson | 1e76875 | 2006-09-06 14:42:08 -0500 | [diff] [blame] | 438 | }; |