1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Maple (970 eval board) setup code
5 * (c) Copyright 2004 Benjamin Herrenschmidt (benh@kernel.crashing.org),
11 #include <linux/init.h>
12 #include <linux/errno.h>
13 #include <linux/sched.h>
14 #include <linux/kernel.h>
15 #include <linux/export.h>
17 #include <linux/stddef.h>
18 #include <linux/unistd.h>
19 #include <linux/ptrace.h>
20 #include <linux/user.h>
21 #include <linux/tty.h>
22 #include <linux/string.h>
23 #include <linux/delay.h>
24 #include <linux/ioport.h>
25 #include <linux/major.h>
26 #include <linux/initrd.h>
27 #include <linux/vt_kern.h>
28 #include <linux/console.h>
29 #include <linux/pci.h>
30 #include <linux/adb.h>
31 #include <linux/cuda.h>
32 #include <linux/pmu.h>
33 #include <linux/irq.h>
34 #include <linux/seq_file.h>
35 #include <linux/root_dev.h>
36 #include <linux/serial.h>
37 #include <linux/smp.h>
38 #include <linux/bitops.h>
39 #include <linux/of_device.h>
40 #include <linux/memblock.h>
42 #include <asm/processor.h>
43 #include <asm/sections.h>
46 #include <asm/pci-bridge.h>
47 #include <asm/iommu.h>
48 #include <asm/machdep.h>
50 #include <asm/cputable.h>
55 #include <asm/nvram.h>
60 #define DBG(fmt...) udbg_printf(fmt)
65 static unsigned long maple_find_nvram_base(void)
67 struct device_node
*rtcs
;
68 unsigned long result
= 0;
70 /* find NVRAM device */
71 rtcs
= of_find_compatible_node(NULL
, "nvram", "AMD8111");
74 if (of_address_to_resource(rtcs
, 0, &r
)) {
75 printk(KERN_EMERG
"Maple: Unable to translate NVRAM"
79 if (!(r
.flags
& IORESOURCE_IO
)) {
80 printk(KERN_EMERG
"Maple: NVRAM address isn't PIO!\n");
85 printk(KERN_EMERG
"Maple: Unable to find NVRAM\n");
91 static void __noreturn
maple_restart(char *cmd
)
93 unsigned int maple_nvram_base
;
94 const unsigned int *maple_nvram_offset
, *maple_nvram_command
;
95 struct device_node
*sp
;
97 maple_nvram_base
= maple_find_nvram_base();
98 if (maple_nvram_base
== 0)
101 /* find service processor device */
102 sp
= of_find_node_by_name(NULL
, "service-processor");
104 printk(KERN_EMERG
"Maple: Unable to find Service Processor\n");
107 maple_nvram_offset
= of_get_property(sp
, "restart-addr", NULL
);
108 maple_nvram_command
= of_get_property(sp
, "restart-value", NULL
);
112 outb_p(*maple_nvram_command
, maple_nvram_base
+ *maple_nvram_offset
);
115 printk(KERN_EMERG
"Maple: Manual Restart Required\n");
119 static void __noreturn
maple_power_off(void)
121 unsigned int maple_nvram_base
;
122 const unsigned int *maple_nvram_offset
, *maple_nvram_command
;
123 struct device_node
*sp
;
125 maple_nvram_base
= maple_find_nvram_base();
126 if (maple_nvram_base
== 0)
129 /* find service processor device */
130 sp
= of_find_node_by_name(NULL
, "service-processor");
132 printk(KERN_EMERG
"Maple: Unable to find Service Processor\n");
135 maple_nvram_offset
= of_get_property(sp
, "power-off-addr", NULL
);
136 maple_nvram_command
= of_get_property(sp
, "power-off-value", NULL
);
140 outb_p(*maple_nvram_command
, maple_nvram_base
+ *maple_nvram_offset
);
143 printk(KERN_EMERG
"Maple: Manual Power-Down Required\n");
147 static void __noreturn
maple_halt(void)
153 static struct smp_ops_t maple_smp_ops
= {
154 .probe
= smp_mpic_probe
,
155 .message_pass
= smp_mpic_message_pass
,
156 .kick_cpu
= smp_generic_kick_cpu
,
157 .setup_cpu
= smp_mpic_setup_cpu
,
158 .give_timebase
= smp_generic_give_timebase
,
159 .take_timebase
= smp_generic_take_timebase
,
161 #endif /* CONFIG_SMP */
163 static void __init
maple_use_rtas_reboot_and_halt_if_present(void)
165 if (rtas_service_present("system-reboot") &&
166 rtas_service_present("power-off")) {
167 ppc_md
.restart
= rtas_restart
;
168 pm_power_off
= rtas_power_off
;
169 ppc_md
.halt
= rtas_halt
;
173 static void __init
maple_setup_arch(void)
175 /* init to some ~sane value until calibrate_delay() runs */
176 loops_per_jiffy
= 50000000;
178 /* Setup SMP callback */
180 smp_ops
= &maple_smp_ops
;
182 /* Lookup PCI hosts */
185 maple_use_rtas_reboot_and_halt_if_present();
187 printk(KERN_DEBUG
"Using native/NAP idle loop\n");
193 * This is almost identical to pSeries and CHRP. We need to make that
194 * code generic at one point, with appropriate bits in the device-tree to
195 * identify the presence of an HT APIC
197 static void __init
maple_init_IRQ(void)
199 struct device_node
*root
, *np
, *mpic_node
= NULL
;
200 const unsigned int *opprop
;
201 unsigned long openpic_addr
= 0;
202 int naddr
, n
, i
, opplen
, has_isus
= 0;
204 unsigned int flags
= 0;
206 /* Locate MPIC in the device-tree. Note that there is a bug
207 * in Maple device-tree where the type of the controller is
208 * open-pic and not interrupt-controller
211 for_each_node_by_type(np
, "interrupt-controller")
212 if (of_device_is_compatible(np
, "open-pic")) {
216 if (mpic_node
== NULL
)
217 for_each_node_by_type(np
, "open-pic") {
221 if (mpic_node
== NULL
) {
223 "Failed to locate the MPIC interrupt controller\n");
227 /* Find address list in /platform-open-pic */
228 root
= of_find_node_by_path("/");
229 naddr
= of_n_addr_cells(root
);
230 opprop
= of_get_property(root
, "platform-open-pic", &opplen
);
232 openpic_addr
= of_read_number(opprop
, naddr
);
233 has_isus
= (opplen
> naddr
);
234 printk(KERN_DEBUG
"OpenPIC addr: %lx, has ISUs: %d\n",
235 openpic_addr
, has_isus
);
238 BUG_ON(openpic_addr
== 0);
240 /* Check for a big endian MPIC */
241 if (of_get_property(np
, "big-endian", NULL
) != NULL
)
242 flags
|= MPIC_BIG_ENDIAN
;
244 /* XXX Maple specific bits */
245 flags
|= MPIC_U3_HT_IRQS
;
246 /* All U3/U4 are big-endian, older SLOF firmware doesn't encode this */
247 flags
|= MPIC_BIG_ENDIAN
;
249 /* Setup the openpic driver. More device-tree junks, we hard code no
250 * ISUs for now. I'll have to revisit some stuffs with the folks doing
251 * the firmware for those
253 mpic
= mpic_alloc(mpic_node
, openpic_addr
, flags
,
254 /*has_isus ? 16 :*/ 0, 0, " MPIC ");
255 BUG_ON(mpic
== NULL
);
258 opplen
/= sizeof(u32
);
259 for (n
= 0, i
= naddr
; i
< opplen
; i
+= naddr
, n
++) {
260 unsigned long isuaddr
= of_read_number(opprop
+ i
, naddr
);
261 mpic_assign_isu(mpic
, n
, isuaddr
);
264 /* All ISUs are setup, complete initialization */
266 ppc_md
.get_irq
= mpic_get_irq
;
267 of_node_put(mpic_node
);
271 static void __init
maple_progress(char *s
, unsigned short hex
)
273 printk("*** %04x : %s\n", hex
, s
? s
: "");
278 * Called very early, MMU is off, device-tree isn't unflattened
280 static int __init
maple_probe(void)
282 if (!of_machine_is_compatible("Momentum,Maple") &&
283 !of_machine_is_compatible("Momentum,Apache"))
286 pm_power_off
= maple_power_off
;
288 iommu_init_early_dart(&maple_pci_controller_ops
);
295 * Register a platform device for CPC925 memory controller on
296 * all boards with U3H (CPC925) bridge.
298 static int __init
maple_cpc925_edac_setup(void)
300 struct platform_device
*pdev
;
301 struct device_node
*np
= NULL
;
304 volatile void __iomem
*mem
;
307 np
= of_find_node_by_type(NULL
, "memory-controller");
309 printk(KERN_ERR
"%s: Unable to find memory-controller node\n",
314 ret
= of_address_to_resource(np
, 0, &r
);
318 printk(KERN_ERR
"%s: Unable to get memory-controller reg\n",
323 mem
= ioremap(r
.start
, resource_size(&r
));
325 printk(KERN_ERR
"%s: Unable to map memory-controller memory\n",
330 rev
= __raw_readl(mem
);
333 if (rev
< 0x34 || rev
> 0x3f) { /* U3H */
334 printk(KERN_ERR
"%s: Non-CPC925(U3H) bridge revision: %02x\n",
339 pdev
= platform_device_register_simple("cpc925_edac", 0, &r
, 1);
341 return PTR_ERR(pdev
);
343 printk(KERN_INFO
"%s: CPC925 platform device created\n", __func__
);
347 machine_device_initcall(maple
, maple_cpc925_edac_setup
);
350 define_machine(maple
) {
352 .probe
= maple_probe
,
353 .setup_arch
= maple_setup_arch
,
354 .init_IRQ
= maple_init_IRQ
,
355 .pci_irq_fixup
= maple_pci_irq_fixup
,
356 .pci_get_legacy_ide_irq
= maple_pci_get_legacy_ide_irq
,
357 .restart
= maple_restart
,
359 .get_boot_time
= maple_get_boot_time
,
360 .set_rtc_time
= maple_set_rtc_time
,
361 .get_rtc_time
= maple_get_rtc_time
,
362 .calibrate_decr
= generic_calibrate_decr
,
363 .progress
= maple_progress
,
364 .power_save
= power4_idle
,