blob: f974bfe7fde1e27d1fa4af8300c65a3ff95abcaa [file] [log] [blame]
Thomas Gleixner45051532019-05-29 16:57:47 -07001// SPDX-License-Identifier: GPL-2.0-only
Olof Johansson1e768752006-09-06 14:42:08 -05002/*
Olof Johansson31c56d82007-02-04 16:36:55 -06003 * Copyright (C) 2006-2007 PA Semi, Inc
Olof Johansson1e768752006-09-06 14:42:08 -05004 *
5 * Authors: Kip Walker, PA Semi
6 * Olof Johansson, PA Semi
7 *
8 * Maintained by: Olof Johansson <olof@lixom.net>
9 *
10 * Based on arch/powerpc/platforms/maple/setup.c
Olof Johansson1e768752006-09-06 14:42:08 -050011 */
12
Olof Johansson1e768752006-09-06 14:42:08 -050013#include <linux/errno.h>
14#include <linux/kernel.h>
15#include <linux/delay.h>
16#include <linux/console.h>
Paul Gortmaker66b15db2011-05-27 10:46:24 -040017#include <linux/export.h>
Benjamin Herrenschmidt12d04ee2006-11-11 17:25:02 +110018#include <linux/pci.h>
Jon Loeliger5f867dc2007-11-14 04:13:03 +110019#include <linux/of_platform.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/gfp.h>
Olof Johansson1e768752006-09-06 14:42:08 -050021
22#include <asm/prom.h>
Olof Johansson1e768752006-09-06 14:42:08 -050023#include <asm/iommu.h>
24#include <asm/machdep.h>
Darren Stevens0428a5f2018-08-19 21:21:47 +010025#include <asm/i8259.h>
Olof Johansson1e768752006-09-06 14:42:08 -050026#include <asm/mpic.h>
27#include <asm/smp.h>
28#include <asm/time.h>
Michael Neuling584f8b72007-12-06 17:24:48 +110029#include <asm/mmu.h>
David Howellsae3a1972012-03-28 18:30:02 +010030#include <asm/debug.h>
Olof Johansson1e768752006-09-06 14:42:08 -050031
Olof Johansson2b571a02007-10-16 23:26:20 -070032#include <pcmcia/ss.h>
33#include <pcmcia/cistpl.h>
34#include <pcmcia/ds.h>
35
Olof Johansson1e768752006-09-06 14:42:08 -050036#include "pasemi.h"
37
Olof Johanssoncd783412007-09-05 12:09:23 +100038/* SDC reset register, must be pre-mapped at reset time */
Olof Johanssonf620be92007-02-04 16:36:52 -060039static void __iomem *reset_reg;
40
Olof Johanssoncd783412007-09-05 12:09:23 +100041/* Various error status registers, must be pre-mapped at MCE time */
42
43#define MAX_MCE_REGS 32
44struct mce_regs {
45 char *name;
46 void __iomem *addr;
47};
48
49static struct mce_regs mce_regs[MAX_MCE_REGS];
50static int num_mce_regs;
Michael Ellermanef24ba72016-09-06 21:53:24 +100051static int nmi_virq = 0;
Olof Johanssoncd783412007-09-05 12:09:23 +100052
53
Daniel Axtens95ec77c2016-07-12 10:54:52 +100054static void __noreturn pas_restart(char *cmd)
Olof Johansson1e768752006-09-06 14:42:08 -050055{
Olof Johansson32e2b552007-11-07 09:31:06 -060056 /* Need to put others cpu in hold loop so they're not sleeping */
57 smp_send_stop();
58 udelay(10000);
Olof Johanssonf620be92007-02-04 16:36:52 -060059 printk("Restarting...\n");
60 while (1)
61 out_le32(reset_reg, 0x6000000);
Olof Johansson1e768752006-09-06 14:42:08 -050062}
63
Darren Stevens656fdf32018-08-19 21:23:57 +010064#ifdef CONFIG_PPC_PASEMI_NEMO
65void pas_shutdown(void)
66{
67 /* Set the PLD bit that makes the SB600 think the power button is being pressed */
68 void __iomem *pld_map = ioremap(0xf5000000,4096);
69 while (1)
70 out_8(pld_map+7,0x01);
71}
72
73/* RTC platform device structure as is not in device tree */
74static struct resource rtc_resource[] = {{
75 .name = "rtc",
76 .start = 0x70,
77 .end = 0x71,
78 .flags = IORESOURCE_IO,
79}, {
80 .name = "rtc",
81 .start = 8,
82 .end = 8,
83 .flags = IORESOURCE_IRQ,
84}};
85
86static inline void nemo_init_rtc(void)
87{
88 platform_device_register_simple("rtc_cmos", -1, rtc_resource, 2);
89}
90
91#else
92
93static inline void nemo_init_rtc(void)
94{
95}
96#endif
97
Olof Johansson1e768752006-09-06 14:42:08 -050098#ifdef CONFIG_SMP
Thomas Gleixner445c8952009-12-02 19:49:50 +010099static arch_spinlock_t timebase_lock;
Olof Johanssondc559f72007-08-22 12:26:43 +1000100static unsigned long timebase;
Olof Johanssonc388cfe2007-02-04 16:36:53 -0600101
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800102static void pas_give_timebase(void)
Olof Johanssonc388cfe2007-02-04 16:36:53 -0600103{
Benjamin Herrenschmidt6893ce62009-06-16 16:42:51 +0000104 unsigned long flags;
105
106 local_irq_save(flags);
107 hard_irq_disable();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100108 arch_spin_lock(&timebase_lock);
Olof Johanssonc388cfe2007-02-04 16:36:53 -0600109 mtspr(SPRN_TBCTL, TBCTL_FREEZE);
Olof Johanssondc559f72007-08-22 12:26:43 +1000110 isync();
111 timebase = get_tb();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100112 arch_spin_unlock(&timebase_lock);
Olof Johanssondc559f72007-08-22 12:26:43 +1000113
114 while (timebase)
115 barrier();
116 mtspr(SPRN_TBCTL, TBCTL_RESTART);
Benjamin Herrenschmidt6893ce62009-06-16 16:42:51 +0000117 local_irq_restore(flags);
Olof Johanssonc388cfe2007-02-04 16:36:53 -0600118}
119
Greg Kroah-Hartmancad5cef2012-12-21 14:04:10 -0800120static void pas_take_timebase(void)
Olof Johanssonc388cfe2007-02-04 16:36:53 -0600121{
Olof Johanssondc559f72007-08-22 12:26:43 +1000122 while (!timebase)
123 smp_rmb();
124
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100125 arch_spin_lock(&timebase_lock);
Olof Johanssondc559f72007-08-22 12:26:43 +1000126 set_tb(timebase >> 32, timebase & 0xffffffff);
127 timebase = 0;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100128 arch_spin_unlock(&timebase_lock);
Olof Johanssonc388cfe2007-02-04 16:36:53 -0600129}
130
Daniel Axtens7c98bd72016-09-06 15:32:40 +1000131static struct smp_ops_t pas_smp_ops = {
Olof Johansson1e768752006-09-06 14:42:08 -0500132 .probe = smp_mpic_probe,
133 .message_pass = smp_mpic_message_pass,
134 .kick_cpu = smp_generic_kick_cpu,
135 .setup_cpu = smp_mpic_setup_cpu,
Olof Johanssonc388cfe2007-02-04 16:36:53 -0600136 .give_timebase = pas_give_timebase,
137 .take_timebase = pas_take_timebase,
Olof Johansson1e768752006-09-06 14:42:08 -0500138};
139#endif /* CONFIG_SMP */
140
Daniel Axtens7c98bd72016-09-06 15:32:40 +1000141static void __init pas_setup_arch(void)
Olof Johansson1e768752006-09-06 14:42:08 -0500142{
143#ifdef CONFIG_SMP
144 /* Setup SMP callback */
145 smp_ops = &pas_smp_ops;
146#endif
Olof Johansson1e768752006-09-06 14:42:08 -0500147
Olof Johanssonf620be92007-02-04 16:36:52 -0600148 /* Remap SDC register for doing reset */
149 /* XXXOJN This should maybe come out of the device tree */
150 reset_reg = ioremap(0xfc101100, 4);
Olof Johansson1e768752006-09-06 14:42:08 -0500151}
152
Olof Johanssoncd783412007-09-05 12:09:23 +1000153static int __init pas_setup_mce_regs(void)
154{
155 struct pci_dev *dev;
156 int reg;
157
Olof Johanssoncd783412007-09-05 12:09:23 +1000158 /* Remap various SoC status registers for use by the MCE handler */
159
160 reg = 0;
161
162 dev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa00a, NULL);
163 while (dev && reg < MAX_MCE_REGS) {
164 mce_regs[reg].name = kasprintf(GFP_KERNEL,
165 "mc%d_mcdebug_errsta", reg);
166 mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x730);
167 dev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa00a, dev);
168 reg++;
169 }
170
171 dev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa001, NULL);
172 if (dev && reg+4 < MAX_MCE_REGS) {
173 mce_regs[reg].name = "iobdbg_IntStatus1";
174 mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x438);
175 reg++;
176 mce_regs[reg].name = "iobdbg_IOCTbusIntDbgReg";
177 mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x454);
178 reg++;
179 mce_regs[reg].name = "iobiom_IntStatus";
180 mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0xc10);
181 reg++;
182 mce_regs[reg].name = "iobiom_IntDbgReg";
183 mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0xc1c);
184 reg++;
185 }
186
187 dev = pci_get_device(PCI_VENDOR_ID_PASEMI, 0xa009, NULL);
188 if (dev && reg+2 < MAX_MCE_REGS) {
189 mce_regs[reg].name = "l2csts_IntStatus";
190 mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x200);
191 reg++;
192 mce_regs[reg].name = "l2csts_Cnt";
193 mce_regs[reg].addr = pasemi_pci_getcfgaddr(dev, 0x214);
194 reg++;
195 }
196
197 num_mce_regs = reg;
198
199 return 0;
200}
Grant Likelybdddec42008-01-02 12:32:28 -0700201machine_device_initcall(pasemi, pas_setup_mce_regs);
Olof Johanssoncd783412007-09-05 12:09:23 +1000202
Darren Stevens0428a5f2018-08-19 21:21:47 +0100203#ifdef CONFIG_PPC_PASEMI_NEMO
204static void sb600_8259_cascade(struct irq_desc *desc)
205{
206 struct irq_chip *chip = irq_desc_get_chip(desc);
207 unsigned int cascade_irq = i8259_irq();
208
209 if (cascade_irq)
210 generic_handle_irq(cascade_irq);
211
212 chip->irq_eoi(&desc->irq_data);
213}
214
Nick Childe37e06a2021-12-16 17:00:24 -0500215static void __init nemo_init_IRQ(struct mpic *mpic)
Darren Stevens0428a5f2018-08-19 21:21:47 +0100216{
217 struct device_node *np;
218 int gpio_virq;
219 /* Connect the SB600's legacy i8259 controller */
220 np = of_find_node_by_path("/pxp@0,e0000000");
221 i8259_init(np, 0);
222 of_node_put(np);
223
224 gpio_virq = irq_create_mapping(NULL, 3);
225 irq_set_irq_type(gpio_virq, IRQ_TYPE_LEVEL_HIGH);
226 irq_set_chained_handler(gpio_virq, sb600_8259_cascade);
227 mpic_unmask_irq(irq_get_irq_data(gpio_virq));
228
229 irq_set_default_host(mpic->irqhost);
230}
231
232#else
233
234static inline void nemo_init_IRQ(struct mpic *mpic)
235{
236}
237#endif
238
Olof Johansson1e768752006-09-06 14:42:08 -0500239static __init void pas_init_IRQ(void)
240{
241 struct device_node *np;
242 struct device_node *root, *mpic_node;
243 unsigned long openpic_addr;
244 const unsigned int *opprop;
245 int naddr, opplen;
Olof Johanssonf3653552007-12-20 13:11:18 -0600246 int mpic_flags;
247 const unsigned int *nmiprop;
Olof Johansson1e768752006-09-06 14:42:08 -0500248 struct mpic *mpic;
249
250 mpic_node = NULL;
251
252 for_each_node_by_type(np, "interrupt-controller")
Stephen Rothwell55b61fe2007-05-03 17:26:52 +1000253 if (of_device_is_compatible(np, "open-pic")) {
Olof Johansson1e768752006-09-06 14:42:08 -0500254 mpic_node = np;
255 break;
256 }
257 if (!mpic_node)
258 for_each_node_by_type(np, "open-pic") {
259 mpic_node = np;
260 break;
261 }
262 if (!mpic_node) {
Darren Stevense13606d2018-08-03 21:15:10 +1000263 pr_err("Failed to locate the MPIC interrupt controller\n");
Olof Johansson1e768752006-09-06 14:42:08 -0500264 return;
265 }
266
267 /* Find address list in /platform-open-pic */
268 root = of_find_node_by_path("/");
Stephen Rothwella8bda5d2007-04-03 10:56:50 +1000269 naddr = of_n_addr_cells(root);
Stephen Rothwelle2eb6392007-04-03 22:26:41 +1000270 opprop = of_get_property(root, "platform-open-pic", &opplen);
Olof Johansson1e768752006-09-06 14:42:08 -0500271 if (!opprop) {
Darren Stevense13606d2018-08-03 21:15:10 +1000272 pr_err("No platform-open-pic property.\n");
Olof Johansson1e768752006-09-06 14:42:08 -0500273 of_node_put(root);
274 return;
275 }
276 openpic_addr = of_read_number(opprop, naddr);
Darren Stevense13606d2018-08-03 21:15:10 +1000277 pr_debug("OpenPIC addr: %lx\n", openpic_addr);
Olof Johansson1e768752006-09-06 14:42:08 -0500278
Kyle Moffette55d7f72011-12-22 10:19:14 +0000279 mpic_flags = MPIC_LARGE_VECTORS | MPIC_NO_BIAS | MPIC_NO_RESET;
Olof Johanssonf3653552007-12-20 13:11:18 -0600280
281 nmiprop = of_get_property(mpic_node, "nmi-source", NULL);
282 if (nmiprop)
283 mpic_flags |= MPIC_ENABLE_MCK;
284
Olof Johansson7df2457d2007-01-28 23:33:18 -0600285 mpic = mpic_alloc(mpic_node, openpic_addr,
Olof Johanssonf3653552007-12-20 13:11:18 -0600286 mpic_flags, 0, 0, "PASEMI-OPIC");
Olof Johansson1e768752006-09-06 14:42:08 -0500287 BUG_ON(!mpic);
288
Kyle Moffette7a98672011-12-02 06:28:01 +0000289 mpic_assign_isu(mpic, 0, mpic->paddr + 0x10000);
Olof Johansson1e768752006-09-06 14:42:08 -0500290 mpic_init(mpic);
Olof Johanssonf3653552007-12-20 13:11:18 -0600291 /* The NMI/MCK source needs to be prio 15 */
292 if (nmiprop) {
293 nmi_virq = irq_create_mapping(NULL, *nmiprop);
294 mpic_irq_set_priority(nmi_virq, 15);
Thomas Gleixnerec775d02011-03-25 16:45:20 +0100295 irq_set_irq_type(nmi_virq, IRQ_TYPE_EDGE_RISING);
Lennert Buytenhek835c05532011-03-08 22:26:43 +0000296 mpic_unmask_irq(irq_get_irq_data(nmi_virq));
Olof Johanssonf3653552007-12-20 13:11:18 -0600297 }
298
Darren Stevens51f4cc22018-08-19 21:26:28 +0100299 nemo_init_IRQ(mpic);
300
Olof Johansson1e768752006-09-06 14:42:08 -0500301 of_node_put(mpic_node);
302 of_node_put(root);
303}
304
305static void __init pas_progress(char *s, unsigned short hex)
306{
307 printk("[%04x] : %s\n", hex, s ? s : "");
308}
309
310
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600311static int pas_machine_check_handler(struct pt_regs *regs)
312{
313 int cpu = smp_processor_id();
314 unsigned long srr0, srr1, dsisr;
Olof Johanssoncd783412007-09-05 12:09:23 +1000315 int dump_slb = 0;
316 int i;
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600317
318 srr0 = regs->nip;
319 srr1 = regs->msr;
Olof Johanssonf3653552007-12-20 13:11:18 -0600320
Michael Ellermanef24ba72016-09-06 21:53:24 +1000321 if (nmi_virq && mpic_get_mcirq() == nmi_virq) {
Darren Stevense13606d2018-08-03 21:15:10 +1000322 pr_err("NMI delivered\n");
Olof Johanssonf3653552007-12-20 13:11:18 -0600323 debugger(regs);
Lennert Buytenhek835c05532011-03-08 22:26:43 +0000324 mpic_end_irq(irq_get_irq_data(nmi_virq));
Olof Johanssonf3653552007-12-20 13:11:18 -0600325 goto out;
326 }
327
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600328 dsisr = mfspr(SPRN_DSISR);
Darren Stevense13606d2018-08-03 21:15:10 +1000329 pr_err("Machine Check on CPU %d\n", cpu);
330 pr_err("SRR0 0x%016lx SRR1 0x%016lx\n", srr0, srr1);
331 pr_err("DSISR 0x%016lx DAR 0x%016lx\n", dsisr, regs->dar);
332 pr_err("BER 0x%016lx MER 0x%016lx\n", mfspr(SPRN_PA6T_BER),
Olof Johanssoncd783412007-09-05 12:09:23 +1000333 mfspr(SPRN_PA6T_MER));
Darren Stevense13606d2018-08-03 21:15:10 +1000334 pr_err("IER 0x%016lx DER 0x%016lx\n", mfspr(SPRN_PA6T_IER),
Olof Johanssoncd783412007-09-05 12:09:23 +1000335 mfspr(SPRN_PA6T_DER));
Darren Stevense13606d2018-08-03 21:15:10 +1000336 pr_err("Cause:\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600337
338 if (srr1 & 0x200000)
Darren Stevense13606d2018-08-03 21:15:10 +1000339 pr_err("Signalled by SDC\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000340
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600341 if (srr1 & 0x100000) {
Darren Stevense13606d2018-08-03 21:15:10 +1000342 pr_err("Load/Store detected error:\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600343 if (dsisr & 0x8000)
Darren Stevense13606d2018-08-03 21:15:10 +1000344 pr_err("D-cache ECC double-bit error or bus error\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600345 if (dsisr & 0x4000)
Darren Stevense13606d2018-08-03 21:15:10 +1000346 pr_err("LSU snoop response error\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000347 if (dsisr & 0x2000) {
Darren Stevense13606d2018-08-03 21:15:10 +1000348 pr_err("MMU SLB multi-hit or invalid B field\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000349 dump_slb = 1;
350 }
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600351 if (dsisr & 0x1000)
Darren Stevense13606d2018-08-03 21:15:10 +1000352 pr_err("Recoverable Duptags\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600353 if (dsisr & 0x800)
Darren Stevense13606d2018-08-03 21:15:10 +1000354 pr_err("Recoverable D-cache parity error count overflow\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600355 if (dsisr & 0x400)
Darren Stevense13606d2018-08-03 21:15:10 +1000356 pr_err("TLB parity error count overflow\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600357 }
Olof Johanssoncd783412007-09-05 12:09:23 +1000358
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600359 if (srr1 & 0x80000)
Darren Stevense13606d2018-08-03 21:15:10 +1000360 pr_err("Bus Error\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000361
362 if (srr1 & 0x40000) {
Darren Stevense13606d2018-08-03 21:15:10 +1000363 pr_err("I-side SLB multiple hit\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000364 dump_slb = 1;
365 }
366
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600367 if (srr1 & 0x20000)
Darren Stevense13606d2018-08-03 21:15:10 +1000368 pr_err("I-cache parity error hit\n");
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600369
Olof Johanssoncd783412007-09-05 12:09:23 +1000370 if (num_mce_regs == 0)
Darren Stevense13606d2018-08-03 21:15:10 +1000371 pr_err("No MCE registers mapped yet, can't dump\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000372 else
Darren Stevense13606d2018-08-03 21:15:10 +1000373 pr_err("SoC debug registers:\n");
Olof Johanssoncd783412007-09-05 12:09:23 +1000374
375 for (i = 0; i < num_mce_regs; i++)
Darren Stevense13606d2018-08-03 21:15:10 +1000376 pr_err("%s: 0x%08x\n", mce_regs[i].name,
Olof Johanssoncd783412007-09-05 12:09:23 +1000377 in_le32(mce_regs[i].addr));
378
379 if (dump_slb) {
380 unsigned long e, v;
381 int i;
382
Darren Stevense13606d2018-08-03 21:15:10 +1000383 pr_err("slb contents:\n");
Michael Neuling584f8b72007-12-06 17:24:48 +1100384 for (i = 0; i < mmu_slb_size; i++) {
Olof Johanssoncd783412007-09-05 12:09:23 +1000385 asm volatile("slbmfee %0,%1" : "=r" (e) : "r" (i));
386 asm volatile("slbmfev %0,%1" : "=r" (v) : "r" (i));
Darren Stevense13606d2018-08-03 21:15:10 +1000387 pr_err("%02d %016lx %016lx\n", i, e, v);
Olof Johanssoncd783412007-09-05 12:09:23 +1000388 }
389 }
390
Olof Johanssonf3653552007-12-20 13:11:18 -0600391out:
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600392 /* SRR1[62] is from MSR[62] if recoverable, so pass that back */
393 return !!(srr1 & 0x2);
394}
395
Uwe Kleine-Königce6d73c2014-09-10 21:56:38 +0200396static const struct of_device_id pasemi_bus_ids[] = {
Olof Johansson0d08a842007-11-04 20:57:45 -0600397 /* Unfortunately needed for legacy firmwares */
Olof Johansson2b571a02007-10-16 23:26:20 -0700398 { .type = "localbus", },
Olof Johanssonb97d2792007-04-18 16:39:54 +1000399 { .type = "sdc", },
Olof Johansson0d08a842007-11-04 20:57:45 -0600400 /* These are the proper entries, which newer firmware uses */
401 { .compatible = "pasemi,localbus", },
402 { .compatible = "pasemi,sdc", },
Olof Johanssonb97d2792007-04-18 16:39:54 +1000403 {},
404};
405
406static int __init pasemi_publish_devices(void)
407{
Olof Johansson90f7afe2007-05-01 14:43:39 +1000408 /* Publish OF platform devices for SDC and other non-PCI devices */
Olof Johanssonb97d2792007-04-18 16:39:54 +1000409 of_platform_bus_probe(NULL, pasemi_bus_ids, NULL);
410
Darren Stevens51f4cc22018-08-19 21:26:28 +0100411 nemo_init_rtc();
412
Olof Johanssonb97d2792007-04-18 16:39:54 +1000413 return 0;
414}
Grant Likelybdddec42008-01-02 12:32:28 -0700415machine_device_initcall(pasemi, pasemi_publish_devices);
Olof Johanssonb97d2792007-04-18 16:39:54 +1000416
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600417
Olof Johansson1e768752006-09-06 14:42:08 -0500418/*
419 * Called very early, MMU is off, device-tree isn't unflattened
420 */
421static int __init pas_probe(void)
422{
Benjamin Herrenschmidt406b0b62016-07-05 15:04:00 +1000423 if (!of_machine_is_compatible("PA6T-1682M") &&
424 !of_machine_is_compatible("pasemi,pwrficient"))
Olof Johansson1e768752006-09-06 14:42:08 -0500425 return 0;
426
Darren Stevens51f4cc22018-08-19 21:26:28 +0100427#ifdef CONFIG_PPC_PASEMI_NEMO
428 /*
429 * Check for the Nemo motherboard here, if we are running on one
430 * change the machine definition to fit
431 */
432 if (of_machine_is_compatible("pasemi,nemo")) {
433 pm_power_off = pas_shutdown;
434 ppc_md.name = "A-EON Amigaone X1000";
435 }
436#endif
437
Benjamin Herrenschmidtf2d57692016-07-05 15:04:06 +1000438 iommu_init_early_pasemi();
439
Olof Johansson1e768752006-09-06 14:42:08 -0500440 return 1;
441}
442
Olof Johanssond4875a22007-07-06 00:49:04 +1000443define_machine(pasemi) {
Olof Johansson0d08a842007-11-04 20:57:45 -0600444 .name = "PA Semi PWRficient",
Olof Johansson1e768752006-09-06 14:42:08 -0500445 .probe = pas_probe,
446 .setup_arch = pas_setup_arch,
Oliver O'Halloranc144bc72020-11-03 15:35:22 +1100447 .discover_phbs = pas_pci_init,
Olof Johansson1e768752006-09-06 14:42:08 -0500448 .init_IRQ = pas_init_IRQ,
449 .get_irq = mpic_get_irq,
Olof Johansson1e768752006-09-06 14:42:08 -0500450 .restart = pas_restart,
Olof Johansson1e768752006-09-06 14:42:08 -0500451 .get_boot_time = pas_get_boot_time,
452 .calibrate_decr = generic_calibrate_decr,
Olof Johansson1e768752006-09-06 14:42:08 -0500453 .progress = pas_progress,
Olof Johanssonbfed9d32007-02-04 16:36:50 -0600454 .machine_check_exception = pas_machine_check_handler,
Olof Johansson1e768752006-09-06 14:42:08 -0500455};