blob: 9a6eb04cca8306bb9386b569c4e4e6ebfba91d02 [file] [log] [blame]
Olof Johansson1e768752006-09-06 14:42:08 -05001/*
Olof Johansson31c56d82007-02-04 16:36:55 -06002 * Copyright (C) 2006-2007 PA Semi, Inc
Olof Johansson1e768752006-09-06 14:42:08 -05003 *
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 Johansson1e768752006-09-06 14:42:08 -050025#include <linux/errno.h>
26#include <linux/kernel.h>
27#include <linux/delay.h>
28#include <linux/console.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040029#include <linux/export.h>
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +110030#include <linux/pci.h>
Jon Loeliger5f867dc2007-11-14 04:13:03 +110031#include <linux/of_platform.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/gfp.h>
Olof Johansson1e768752006-09-06 14:42:08 -050033
34#include <asm/prom.h>
Olof Johansson1e768752006-09-06 14:42:08 -050035#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 Neuling584f8b72007-12-06 17:24:48 +110040#include <asm/mmu.h>
David Howellsae3a1972012-03-28 18:30:02 +010041#include <asm/debug.h>
Olof Johansson1e768752006-09-06 14:42:08 -050042
Olof Johansson2b571a02007-10-16 23:26:20 -070043#include <pcmcia/ss.h>
44#include <pcmcia/cistpl.h>
45#include <pcmcia/ds.h>
46
Olof Johansson1e768752006-09-06 14:42:08 -050047#include "pasemi.h"
48
Olof Johanssoncd783412007-09-05 12:09:23 +100049/* SDC reset register, must be pre-mapped at reset time */
Olof Johanssonf620be92007-02-04 16:36:52 -060050static void __iomem *reset_reg;
51
Olof Johanssoncd783412007-09-05 12:09:23 +100052/* Various error status registers, must be pre-mapped at MCE time */
53
54#define MAX_MCE_REGS 32
55struct mce_regs {
56 char *name;
57 void __iomem *addr;
58};
59
60static struct mce_regs mce_regs[MAX_MCE_REGS];
61static int num_mce_regs;
Michael Ellermanef24ba72016-09-06 21:53:24 +100062static int nmi_virq = 0;
Olof Johanssoncd783412007-09-05 12:09:23 +100063
64
Daniel Axtens95ec77c2016-07-12 10:54:52 +100065static void __noreturn pas_restart(char *cmd)
Olof Johansson1e768752006-09-06 14:42:08 -050066{
Olof Johansson32e2b552007-11-07 09:31:06 -060067 /* Need to put others cpu in hold loop so they're not sleeping */
68 smp_send_stop();
69 udelay(10000);
Olof Johanssonf620be92007-02-04 16:36:52 -060070 printk("Restarting...\n");
71 while (1)
72 out_le32(reset_reg, 0x6000000);
Olof Johansson1e768752006-09-06 14:42:08 -050073}
74
75#ifdef CONFIG_SMP
Thomas Gleixner445c8952009-12-02 19:49:50 +010076static arch_spinlock_t timebase_lock;
Olof Johanssondc559f72007-08-22 12:26:43 +100077static unsigned long timebase;
Olof Johanssonc388cfe2007-02-04 16:36:53 -060078
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -080079static void pas_give_timebase(void)
Olof Johanssonc388cfe2007-02-04 16:36:53 -060080{
Benjamin Herrenschmidt6893ce62009-06-16 16:42:51 +000081 unsigned long flags;
82
83 local_irq_save(flags);
84 hard_irq_disable();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010085 arch_spin_lock(&timebase_lock);
Olof Johanssonc388cfe2007-02-04 16:36:53 -060086 mtspr(SPRN_TBCTL, TBCTL_FREEZE);
Olof Johanssondc559f72007-08-22 12:26:43 +100087 isync();
88 timebase = get_tb();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010089 arch_spin_unlock(&timebase_lock);
Olof Johanssondc559f72007-08-22 12:26:43 +100090
91 while (timebase)
92 barrier();
93 mtspr(SPRN_TBCTL, TBCTL_RESTART);
Benjamin Herrenschmidt6893ce62009-06-16 16:42:51 +000094 local_irq_restore(flags);
Olof Johanssonc388cfe2007-02-04 16:36:53 -060095}
96
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -080097static void pas_take_timebase(void)
Olof Johanssonc388cfe2007-02-04 16:36:53 -060098{
Olof Johanssondc559f72007-08-22 12:26:43 +100099 while (!timebase)
100 smp_rmb();
101
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100102 arch_spin_lock(&timebase_lock);
Olof Johanssondc559f72007-08-22 12:26:43 +1000103 set_tb(timebase >> 32, timebase & 0xffffffff);
104 timebase = 0;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100105 arch_spin_unlock(&timebase_lock);
Olof Johanssonc388cfe2007-02-04 16:36:53 -0600106}
107
Daniel Axtens7c98bd72016-09-06 15:32:40 +1000108static struct smp_ops_t pas_smp_ops = {
Olof Johansson1e768752006-09-06 14:42:08 -0500109 .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 Johanssonc388cfe2007-02-04 16:36:53 -0600113 .give_timebase = pas_give_timebase,
114 .take_timebase = pas_take_timebase,
Olof Johansson1e768752006-09-06 14:42:08 -0500115};
116#endif /* CONFIG_SMP */
117
Daniel Axtens7c98bd72016-09-06 15:32:40 +1000118static void __init pas_setup_arch(void)
Olof Johansson1e768752006-09-06 14:42:08 -0500119{
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 Johanssonf620be92007-02-04 16:36:52 -0600131 /* Remap SDC register for doing reset */
132 /* XXXOJN This should maybe come out of the device tree */
133 reset_reg = ioremap(0xfc101100, 4);
Olof Johansson1e768752006-09-06 14:42:08 -0500134}
135
Olof Johanssoncd783412007-09-05 12:09:23 +1000136static int __init pas_setup_mce_regs(void)
137{
138 struct pci_dev *dev;
139 int reg;
140
Olof Johanssoncd783412007-09-05 12:09:23 +1000141 /* 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 Likelybdddec42008-01-02 12:32:28 -0700184machine_device_initcall(pasemi, pas_setup_mce_regs);
Olof Johanssoncd783412007-09-05 12:09:23 +1000185
Olof Johansson1e768752006-09-06 14:42:08 -0500186static __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 Johanssonf3653552007-12-20 13:11:18 -0600193 int mpic_flags;
194 const unsigned int *nmiprop;
Olof Johansson1e768752006-09-06 14:42:08 -0500195 struct mpic *mpic;
196
197 mpic_node = NULL;
198
199 for_each_node_by_type(np, "interrupt-controller")
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000200 if (of_device_is_compatible(np, "open-pic")) {
Olof Johansson1e768752006-09-06 14:42:08 -0500201 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) {
Darren Stevense13606d2018-08-03 21:15:10 +1000210 pr_err("Failed to locate the MPIC interrupt controller\n");
Olof Johansson1e768752006-09-06 14:42:08 -0500211 return;
212 }
213
214 /* Find address list in /platform-open-pic */
215 root = of_find_node_by_path("/");
Stephen Rothwella8bda5d2007-04-03 10:56:50 +1000216 naddr = of_n_addr_cells(root);
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000217 opprop = of_get_property(root, "platform-open-pic", &opplen);
Olof Johansson1e768752006-09-06 14:42:08 -0500218 if (!opprop) {
Darren Stevense13606d2018-08-03 21:15:10 +1000219 pr_err("No platform-open-pic property.\n");
Olof Johansson1e768752006-09-06 14:42:08 -0500220 of_node_put(root);
221 return;
222 }
223 openpic_addr = of_read_number(opprop, naddr);
Darren Stevense13606d2018-08-03 21:15:10 +1000224 pr_debug("OpenPIC addr: %lx\n", openpic_addr);
Olof Johansson1e768752006-09-06 14:42:08 -0500225
Kyle Moffette55d7f72011-12-22 10:19:14 +0000226 mpic_flags = MPIC_LARGE_VECTORS | MPIC_NO_BIAS | MPIC_NO_RESET;
Olof Johanssonf3653552007-12-20 13:11:18 -0600227
228 nmiprop = of_get_property(mpic_node, "nmi-source", NULL);
229 if (nmiprop)
230 mpic_flags |= MPIC_ENABLE_MCK;
231
Olof Johansson7df2457d2007-01-28 23:33:18 -0600232 mpic = mpic_alloc(mpic_node, openpic_addr,
Olof Johanssonf3653552007-12-20 13:11:18 -0600233 mpic_flags, 0, 0, "PASEMI-OPIC");
Olof Johansson1e768752006-09-06 14:42:08 -0500234 BUG_ON(!mpic);
235
Kyle Moffette7a98672011-12-02 06:28:01 +0000236 mpic_assign_isu(mpic, 0, mpic->paddr + 0x10000);
Olof Johansson1e768752006-09-06 14:42:08 -0500237 mpic_init(mpic);
Olof Johanssonf3653552007-12-20 13:11:18 -0600238 /* The NMI/MCK source needs to be prio 15 */
239 if (nmiprop) {
240 nmi_virq = irq_create_mapping(NULL, *nmiprop);
241 mpic_irq_set_priority(nmi_virq, 15);
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100242 irq_set_irq_type(nmi_virq, IRQ_TYPE_EDGE_RISING);
Lennert Buytenhek835c05532011-03-08 22:26:43 +0000243 mpic_unmask_irq(irq_get_irq_data(nmi_virq));
Olof Johanssonf3653552007-12-20 13:11:18 -0600244 }
245
Olof Johansson1e768752006-09-06 14:42:08 -0500246 of_node_put(mpic_node);
247 of_node_put(root);
248}
249
250static void __init pas_progress(char *s, unsigned short hex)
251{
252 printk("[%04x] : %s\n", hex, s ? s : "");
253}
254
255
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600256static int pas_machine_check_handler(struct pt_regs *regs)
257{
258 int cpu = smp_processor_id();
259 unsigned long srr0, srr1, dsisr;
Olof Johanssoncd783412007-09-05 12:09:23 +1000260 int dump_slb = 0;
261 int i;
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600262
263 srr0 = regs->nip;
264 srr1 = regs->msr;
Olof Johanssonf3653552007-12-20 13:11:18 -0600265
Michael Ellermanef24ba72016-09-06 21:53:24 +1000266 if (nmi_virq && mpic_get_mcirq() == nmi_virq) {
Darren Stevense13606d2018-08-03 21:15:10 +1000267 pr_err("NMI delivered\n");
Olof Johanssonf3653552007-12-20 13:11:18 -0600268 debugger(regs);
Lennert Buytenhek835c05532011-03-08 22:26:43 +0000269 mpic_end_irq(irq_get_irq_data(nmi_virq));
Olof Johanssonf3653552007-12-20 13:11:18 -0600270 goto out;
271 }
272
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600273 dsisr = mfspr(SPRN_DSISR);
Darren Stevense13606d2018-08-03 21:15:10 +1000274 pr_err("Machine Check on CPU %d\n", cpu);
275 pr_err("SRR0 0x%016lx SRR1 0x%016lx\n", srr0, srr1);
276 pr_err("DSISR 0x%016lx DAR 0x%016lx\n", dsisr, regs->dar);
277 pr_err("BER 0x%016lx MER 0x%016lx\n", mfspr(SPRN_PA6T_BER),
Olof Johanssoncd783412007-09-05 12:09:23 +1000278 mfspr(SPRN_PA6T_MER));
Darren Stevense13606d2018-08-03 21:15:10 +1000279 pr_err("IER 0x%016lx DER 0x%016lx\n", mfspr(SPRN_PA6T_IER),
Olof Johanssoncd783412007-09-05 12:09:23 +1000280 mfspr(SPRN_PA6T_DER));
Darren Stevense13606d2018-08-03 21:15:10 +1000281 pr_err("Cause:\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600282
283 if (srr1 & 0x200000)
Darren Stevense13606d2018-08-03 21:15:10 +1000284 pr_err("Signalled by SDC\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000285
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600286 if (srr1 & 0x100000) {
Darren Stevense13606d2018-08-03 21:15:10 +1000287 pr_err("Load/Store detected error:\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600288 if (dsisr & 0x8000)
Darren Stevense13606d2018-08-03 21:15:10 +1000289 pr_err("D-cache ECC double-bit error or bus error\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600290 if (dsisr & 0x4000)
Darren Stevense13606d2018-08-03 21:15:10 +1000291 pr_err("LSU snoop response error\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000292 if (dsisr & 0x2000) {
Darren Stevense13606d2018-08-03 21:15:10 +1000293 pr_err("MMU SLB multi-hit or invalid B field\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000294 dump_slb = 1;
295 }
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600296 if (dsisr & 0x1000)
Darren Stevense13606d2018-08-03 21:15:10 +1000297 pr_err("Recoverable Duptags\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600298 if (dsisr & 0x800)
Darren Stevense13606d2018-08-03 21:15:10 +1000299 pr_err("Recoverable D-cache parity error count overflow\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600300 if (dsisr & 0x400)
Darren Stevense13606d2018-08-03 21:15:10 +1000301 pr_err("TLB parity error count overflow\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600302 }
Olof Johanssoncd783412007-09-05 12:09:23 +1000303
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600304 if (srr1 & 0x80000)
Darren Stevense13606d2018-08-03 21:15:10 +1000305 pr_err("Bus Error\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000306
307 if (srr1 & 0x40000) {
Darren Stevense13606d2018-08-03 21:15:10 +1000308 pr_err("I-side SLB multiple hit\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000309 dump_slb = 1;
310 }
311
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600312 if (srr1 & 0x20000)
Darren Stevense13606d2018-08-03 21:15:10 +1000313 pr_err("I-cache parity error hit\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600314
Olof Johanssoncd783412007-09-05 12:09:23 +1000315 if (num_mce_regs == 0)
Darren Stevense13606d2018-08-03 21:15:10 +1000316 pr_err("No MCE registers mapped yet, can't dump\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000317 else
Darren Stevense13606d2018-08-03 21:15:10 +1000318 pr_err("SoC debug registers:\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000319
320 for (i = 0; i < num_mce_regs; i++)
Darren Stevense13606d2018-08-03 21:15:10 +1000321 pr_err("%s: 0x%08x\n", mce_regs[i].name,
Olof Johanssoncd783412007-09-05 12:09:23 +1000322 in_le32(mce_regs[i].addr));
323
324 if (dump_slb) {
325 unsigned long e, v;
326 int i;
327
Darren Stevense13606d2018-08-03 21:15:10 +1000328 pr_err("slb contents:\n");
Michael Neuling584f8b72007-12-06 17:24:48 +1100329 for (i = 0; i < mmu_slb_size; i++) {
Olof Johanssoncd783412007-09-05 12:09:23 +1000330 asm volatile("slbmfee %0,%1" : "=r" (e) : "r" (i));
331 asm volatile("slbmfev %0,%1" : "=r" (v) : "r" (i));
Darren Stevense13606d2018-08-03 21:15:10 +1000332 pr_err("%02d %016lx %016lx\n", i, e, v);
Olof Johanssoncd783412007-09-05 12:09:23 +1000333 }
334 }
335
Olof Johanssonf3653552007-12-20 13:11:18 -0600336out:
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600337 /* SRR1[62] is from MSR[62] if recoverable, so pass that back */
338 return !!(srr1 & 0x2);
339}
340
Olof Johansson2b571a02007-10-16 23:26:20 -0700341#ifdef CONFIG_PCMCIA
342static int pcmcia_notify(struct notifier_block *nb, unsigned long action,
343 void *data)
344{
345 struct device *dev = data;
346 struct device *parent;
347 struct pcmcia_device *pdev = to_pcmcia_dev(dev);
348
349 /* We are only intereted in device addition */
350 if (action != BUS_NOTIFY_ADD_DEVICE)
351 return 0;
352
353 parent = pdev->socket->dev.parent;
354
355 /* We know electra_cf devices will always have of_node set, since
356 * electra_cf is an of_platform driver.
357 */
Grant Likely58f9b0b2010-04-13 16:12:56 -0700358 if (!parent->of_node)
Olof Johansson2b571a02007-10-16 23:26:20 -0700359 return 0;
360
Grant Likely58f9b0b2010-04-13 16:12:56 -0700361 if (!of_device_is_compatible(parent->of_node, "electra-cf"))
Olof Johansson2b571a02007-10-16 23:26:20 -0700362 return 0;
363
364 /* We use the direct ops for localbus */
Christoph Hellwig2d9d6f62017-12-22 10:58:24 +0100365 dev->dma_ops = &dma_nommu_ops;
Olof Johansson2b571a02007-10-16 23:26:20 -0700366
367 return 0;
368}
369
370static struct notifier_block pcmcia_notifier = {
371 .notifier_call = pcmcia_notify,
372};
373
374static inline void pasemi_pcmcia_init(void)
375{
376 extern struct bus_type pcmcia_bus_type;
377
378 bus_register_notifier(&pcmcia_bus_type, &pcmcia_notifier);
379}
380
381#else
382
383static inline void pasemi_pcmcia_init(void)
384{
385}
386
387#endif
388
389
Uwe Kleine-Königce6d73c2014-09-10 21:56:38 +0200390static const struct of_device_id pasemi_bus_ids[] = {
Olof Johansson0d08a842007-11-04 20:57:45 -0600391 /* Unfortunately needed for legacy firmwares */
Olof Johansson2b571a02007-10-16 23:26:20 -0700392 { .type = "localbus", },
Olof Johanssonb97d2792007-04-18 16:39:54 +1000393 { .type = "sdc", },
Olof Johansson0d08a842007-11-04 20:57:45 -0600394 /* These are the proper entries, which newer firmware uses */
395 { .compatible = "pasemi,localbus", },
396 { .compatible = "pasemi,sdc", },
Olof Johanssonb97d2792007-04-18 16:39:54 +1000397 {},
398};
399
400static int __init pasemi_publish_devices(void)
401{
Olof Johansson2b571a02007-10-16 23:26:20 -0700402 pasemi_pcmcia_init();
403
Olof Johansson90f7afe2007-05-01 14:43:39 +1000404 /* Publish OF platform devices for SDC and other non-PCI devices */
Olof Johanssonb97d2792007-04-18 16:39:54 +1000405 of_platform_bus_probe(NULL, pasemi_bus_ids, NULL);
406
407 return 0;
408}
Grant Likelybdddec42008-01-02 12:32:28 -0700409machine_device_initcall(pasemi, pasemi_publish_devices);
Olof Johanssonb97d2792007-04-18 16:39:54 +1000410
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600411
Olof Johansson1e768752006-09-06 14:42:08 -0500412/*
413 * Called very early, MMU is off, device-tree isn't unflattened
414 */
415static int __init pas_probe(void)
416{
Benjamin Herrenschmidt406b0b62016-07-05 15:04:00 +1000417 if (!of_machine_is_compatible("PA6T-1682M") &&
418 !of_machine_is_compatible("pasemi,pwrficient"))
Olof Johansson1e768752006-09-06 14:42:08 -0500419 return 0;
420
Benjamin Herrenschmidtf2d57692016-07-05 15:04:06 +1000421 iommu_init_early_pasemi();
422
Olof Johansson1e768752006-09-06 14:42:08 -0500423 return 1;
424}
425
Olof Johanssond4875a22007-07-06 00:49:04 +1000426define_machine(pasemi) {
Olof Johansson0d08a842007-11-04 20:57:45 -0600427 .name = "PA Semi PWRficient",
Olof Johansson1e768752006-09-06 14:42:08 -0500428 .probe = pas_probe,
429 .setup_arch = pas_setup_arch,
Olof Johansson1e768752006-09-06 14:42:08 -0500430 .init_IRQ = pas_init_IRQ,
431 .get_irq = mpic_get_irq,
Olof Johansson1e768752006-09-06 14:42:08 -0500432 .restart = pas_restart,
Olof Johansson1e768752006-09-06 14:42:08 -0500433 .get_boot_time = pas_get_boot_time,
434 .calibrate_decr = generic_calibrate_decr,
Olof Johansson1e768752006-09-06 14:42:08 -0500435 .progress = pas_progress,
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600436 .machine_check_exception = pas_machine_check_handler,
Olof Johansson1e768752006-09-06 14:42:08 -0500437};