blob: 92d18003f152ee391138ef0c3ea082b6e21223bb [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/arch/ppc/kernel/setup.c
3 *
4 * Copyright (C) 1995 Linus Torvalds
5 * Adapted from 'alpha' version by Gary Thomas
6 * Modified by Cort Dougan (cort@cs.nmt.edu)
7 * Modified by PPC64 Team, IBM Corp
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 */
14
15/*
16 * bootup setup stuff..
17 */
18
19#undef DEBUG
20
21#include <linux/config.h>
Michael Ellerman62d60e92005-07-07 17:56:30 -070022#include <linux/cpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/errno.h>
24#include <linux/sched.h>
25#include <linux/kernel.h>
26#include <linux/mm.h>
27#include <linux/stddef.h>
28#include <linux/unistd.h>
29#include <linux/slab.h>
30#include <linux/user.h>
31#include <linux/a.out.h>
32#include <linux/tty.h>
33#include <linux/major.h>
34#include <linux/interrupt.h>
35#include <linux/reboot.h>
36#include <linux/init.h>
37#include <linux/ioport.h>
38#include <linux/console.h>
39#include <linux/pci.h>
Olaf Heringcebb2b12005-07-10 19:35:15 +000040#include <linux/utsname.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/adb.h>
42#include <linux/module.h>
43#include <linux/delay.h>
44#include <linux/irq.h>
45#include <linux/seq_file.h>
46#include <linux/root_dev.h>
47
48#include <asm/mmu.h>
49#include <asm/processor.h>
50#include <asm/io.h>
51#include <asm/pgtable.h>
52#include <asm/prom.h>
53#include <asm/rtas.h>
54#include <asm/pci-bridge.h>
55#include <asm/iommu.h>
56#include <asm/dma.h>
57#include <asm/machdep.h>
58#include <asm/irq.h>
59#include <asm/time.h>
60#include <asm/nvram.h>
61#include <asm/plpar_wrappers.h>
62#include <asm/xics.h>
Stephen Rothwell1ababe12005-08-03 14:35:25 +100063#include <asm/firmware.h>
Michael Ellerman180a3362005-08-09 11:13:36 +100064#include <asm/pmc.h>
Stephen Rothwellbbeb3f42005-09-27 13:51:59 +100065#include <asm/mpic.h>
Stephen Rothwelld3878992005-09-28 02:50:25 +100066#include <asm/ppc-pci.h>
Paul Mackerras69a80d32005-10-10 22:03:41 +100067#include <asm/i8259.h>
68#include <asm/udbg.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70#ifdef DEBUG
71#define DBG(fmt...) udbg_printf(fmt)
72#else
73#define DBG(fmt...)
74#endif
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076extern void find_udbg_vterm(void);
77extern void system_reset_fwnmi(void); /* from head.S */
78extern void machine_check_fwnmi(void); /* from head.S */
79extern void generic_find_legacy_serial_ports(u64 *physport,
80 unsigned int *default_speed);
81
82int fwnmi_active; /* TRUE if an FWNMI handler is present */
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084extern void pSeries_system_reset_exception(struct pt_regs *regs);
85extern int pSeries_machine_check_exception(struct pt_regs *regs);
86
Paul Mackerras143a1de2005-10-19 23:11:21 +100087static void pseries_shared_idle(void);
88static void pseries_dedicated_idle(void);
Michael Ellerman62d60e92005-07-07 17:56:30 -070089
Linus Torvalds1da177e2005-04-16 15:20:36 -070090static volatile void __iomem * chrp_int_ack_special;
91struct mpic *pSeries_mpic;
92
Paul Mackerras0dd194d2005-10-20 20:48:19 +100093void pSeries_show_cpuinfo(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
95 struct device_node *root;
96 const char *model = "";
97
98 root = of_find_node_by_path("/");
99 if (root)
100 model = get_property(root, "model", NULL);
101 seq_printf(m, "machine\t\t: CHRP %s\n", model);
102 of_node_put(root);
103}
104
105/* Initialize firmware assisted non-maskable interrupts if
106 * the firmware supports this feature.
107 *
108 */
109static void __init fwnmi_init(void)
110{
111 int ret;
112 int ibm_nmi_register = rtas_token("ibm,nmi-register");
113 if (ibm_nmi_register == RTAS_UNKNOWN_SERVICE)
114 return;
115 ret = rtas_call(ibm_nmi_register, 2, 1, NULL,
116 __pa((unsigned long)system_reset_fwnmi),
117 __pa((unsigned long)machine_check_fwnmi));
118 if (ret == 0)
119 fwnmi_active = 1;
120}
121
122static int pSeries_irq_cascade(struct pt_regs *regs, void *data)
123{
124 if (chrp_int_ack_special)
125 return readb(chrp_int_ack_special);
126 else
Paul Mackerras69a80d32005-10-10 22:03:41 +1000127 return i8259_irq(regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
130static void __init pSeries_init_mpic(void)
131{
132 unsigned int *addrp;
133 struct device_node *np;
134 int i;
135
136 /* All ISUs are setup, complete initialization */
137 mpic_init(pSeries_mpic);
138
139 /* Check what kind of cascade ACK we have */
140 if (!(np = of_find_node_by_name(NULL, "pci"))
141 || !(addrp = (unsigned int *)
142 get_property(np, "8259-interrupt-acknowledge", NULL)))
143 printk(KERN_ERR "Cannot find pci to get ack address\n");
144 else
145 chrp_int_ack_special = ioremap(addrp[prom_n_addr_cells(np)-1], 1);
146 of_node_put(np);
147
148 /* Setup the legacy interrupts & controller */
149 for (i = 0; i < NUM_ISA_INTERRUPTS; i++)
150 irq_desc[i].handler = &i8259_pic;
151 i8259_init(0);
152
153 /* Hook cascade to mpic */
154 mpic_setup_cascade(NUM_ISA_INTERRUPTS, pSeries_irq_cascade, NULL);
155}
156
157static void __init pSeries_setup_mpic(void)
158{
159 unsigned int *opprop;
160 unsigned long openpic_addr = 0;
161 unsigned char senses[NR_IRQS - NUM_ISA_INTERRUPTS];
162 struct device_node *root;
163 int irq_count;
164
165 /* Find the Open PIC if present */
166 root = of_find_node_by_path("/");
167 opprop = (unsigned int *) get_property(root, "platform-open-pic", NULL);
168 if (opprop != 0) {
169 int n = prom_n_addr_cells(root);
170
171 for (openpic_addr = 0; n > 0; --n)
172 openpic_addr = (openpic_addr << 32) + *opprop++;
173 printk(KERN_DEBUG "OpenPIC addr: %lx\n", openpic_addr);
174 }
175 of_node_put(root);
176
177 BUG_ON(openpic_addr == 0);
178
179 /* Get the sense values from OF */
180 prom_get_irq_senses(senses, NUM_ISA_INTERRUPTS, NR_IRQS);
181
182 /* Setup the openpic driver */
183 irq_count = NR_IRQS - NUM_ISA_INTERRUPTS - 4; /* leave room for IPIs */
184 pSeries_mpic = mpic_alloc(openpic_addr, MPIC_PRIMARY,
185 16, 16, irq_count, /* isu size, irq offset, irq count */
186 NR_IRQS - 4, /* ipi offset */
187 senses, irq_count, /* sense & sense size */
188 " MPIC ");
189}
190
Michael Ellerman180a3362005-08-09 11:13:36 +1000191static void pseries_lpar_enable_pmcs(void)
192{
193 unsigned long set, reset;
194
195 power4_enable_pmcs();
196
197 set = 1UL << 63;
198 reset = 0;
199 plpar_hcall_norets(H_PERFMON, set, reset);
200
201 /* instruct hypervisor to maintain PMCs */
202 if (firmware_has_feature(FW_FEATURE_SPLPAR))
203 get_paca()->lppaca.pmcregs_in_use = 1;
204}
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206static void __init pSeries_setup_arch(void)
207{
208 /* Fixup ppc_md depending on the type of interrupt controller */
209 if (ppc64_interrupt_controller == IC_OPEN_PIC) {
R Sharadafce0d572005-06-25 14:58:10 -0700210 ppc_md.init_IRQ = pSeries_init_mpic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 ppc_md.get_irq = mpic_get_irq;
R Sharadafce0d572005-06-25 14:58:10 -0700212 ppc_md.cpu_irq_down = mpic_teardown_this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 /* Allocate the mpic now, so that find_and_init_phbs() can
214 * fill the ISUs */
215 pSeries_setup_mpic();
216 } else {
217 ppc_md.init_IRQ = xics_init_IRQ;
218 ppc_md.get_irq = xics_get_irq;
R Sharadafce0d572005-06-25 14:58:10 -0700219 ppc_md.cpu_irq_down = xics_teardown_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 }
221
222#ifdef CONFIG_SMP
223 smp_init_pSeries();
224#endif
225 /* openpic global configuration register (64-bit format). */
226 /* openpic Interrupt Source Unit pointer (64-bit format). */
227 /* python0 facility area (mmio) (64-bit format) REAL address. */
228
229 /* init to some ~sane value until calibrate_delay() runs */
230 loops_per_jiffy = 50000000;
231
232 if (ROOT_DEV == 0) {
233 printk("No ramdisk, default root is /dev/sda2\n");
234 ROOT_DEV = Root_SDA2;
235 }
236
237 fwnmi_init();
238
239 /* Find and initialize PCI host bridges */
240 init_pci_config_tokens();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 find_and_init_phbs();
Paul Mackerras0160f532005-09-13 20:56:20 +1000242 eeh_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 pSeries_nvram_init();
245
Michael Ellerman62d60e92005-07-07 17:56:30 -0700246 /* Choose an idle loop */
Stephen Rothwell1ababe12005-08-03 14:35:25 +1000247 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
Stephen Rothwell8d15a3e2005-08-03 14:40:16 +1000248 vpa_init(boot_cpuid);
Michael Ellerman62d60e92005-07-07 17:56:30 -0700249 if (get_paca()->lppaca.shared_proc) {
250 printk(KERN_INFO "Using shared processor idle loop\n");
Anton Blanchard050a0932005-07-07 17:56:33 -0700251 ppc_md.idle_loop = pseries_shared_idle;
Michael Ellerman62d60e92005-07-07 17:56:30 -0700252 } else {
253 printk(KERN_INFO "Using dedicated idle loop\n");
Anton Blanchard050a0932005-07-07 17:56:33 -0700254 ppc_md.idle_loop = pseries_dedicated_idle;
Michael Ellerman62d60e92005-07-07 17:56:30 -0700255 }
256 } else {
257 printk(KERN_INFO "Using default idle loop\n");
258 ppc_md.idle_loop = default_idle;
259 }
Michael Ellerman180a3362005-08-09 11:13:36 +1000260
261 if (systemcfg->platform & PLATFORM_LPAR)
262 ppc_md.enable_pmcs = pseries_lpar_enable_pmcs;
263 else
264 ppc_md.enable_pmcs = power4_enable_pmcs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265}
266
267static int __init pSeries_init_panel(void)
268{
269 /* Manually leave the kernel version on the panel. */
270 ppc_md.progress("Linux ppc64\n", 0);
Olaf Heringcebb2b12005-07-10 19:35:15 +0000271 ppc_md.progress(system_utsname.version, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 return 0;
274}
275arch_initcall(pSeries_init_panel);
276
277
Stephen Rothwell7a6af5e2005-08-03 14:32:30 +1000278/* Build up the ppc64_firmware_features bitmask field
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 * using contents of device-tree/ibm,hypertas-functions.
280 * Ultimately this functionality may be moved into prom.c prom_init().
281 */
Stephen Rothwellaed31352005-08-03 14:43:21 +1000282static void __init fw_feature_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 struct device_node * dn;
285 char * hypertas;
286 unsigned int len;
287
288 DBG(" -> fw_feature_init()\n");
289
Stephen Rothwell7a6af5e2005-08-03 14:32:30 +1000290 ppc64_firmware_features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 dn = of_find_node_by_path("/rtas");
292 if (dn == NULL) {
293 printk(KERN_ERR "WARNING ! Cannot find RTAS in device-tree !\n");
294 goto no_rtas;
295 }
296
297 hypertas = get_property(dn, "ibm,hypertas-functions", &len);
298 if (hypertas) {
299 while (len > 0){
300 int i, hypertas_len;
301 /* check value against table of strings */
302 for(i=0; i < FIRMWARE_MAX_FEATURES ;i++) {
303 if ((firmware_features_table[i].name) &&
304 (strcmp(firmware_features_table[i].name,hypertas))==0) {
305 /* we have a match */
Stephen Rothwell7a6af5e2005-08-03 14:32:30 +1000306 ppc64_firmware_features |=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 (firmware_features_table[i].val);
308 break;
309 }
310 }
311 hypertas_len = strlen(hypertas);
312 len -= hypertas_len +1;
313 hypertas+= hypertas_len +1;
314 }
315 }
316
317 of_node_put(dn);
318 no_rtas:
319 printk(KERN_INFO "firmware_features = 0x%lx\n",
Stephen Rothwell7a6af5e2005-08-03 14:32:30 +1000320 ppc64_firmware_features);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 DBG(" <- fw_feature_init()\n");
323}
324
325
326static void __init pSeries_discover_pic(void)
327{
328 struct device_node *np;
329 char *typep;
330
331 /*
332 * Setup interrupt mapping options that are needed for finish_device_tree
333 * to properly parse the OF interrupt tree & do the virtual irq mapping
334 */
335 __irq_offset_value = NUM_ISA_INTERRUPTS;
336 ppc64_interrupt_controller = IC_INVALID;
337 for (np = NULL; (np = of_find_node_by_name(np, "interrupt-controller"));) {
338 typep = (char *)get_property(np, "compatible", NULL);
339 if (strstr(typep, "open-pic"))
340 ppc64_interrupt_controller = IC_OPEN_PIC;
341 else if (strstr(typep, "ppc-xicp"))
342 ppc64_interrupt_controller = IC_PPC_XIC;
343 else
344 printk("pSeries_discover_pic: failed to recognize"
345 " interrupt-controller\n");
346 break;
347 }
348}
349
350static void pSeries_mach_cpu_die(void)
351{
352 local_irq_disable();
353 idle_task_exit();
354 /* Some hardware requires clearing the CPPR, while other hardware does not
355 * it is safe either way
356 */
357 pSeriesLP_cppr_info(0, 0);
358 rtas_stop_self();
359 /* Should never get here... */
360 BUG();
361 for(;;);
362}
363
364
365/*
366 * Early initialization. Relocation is on but do not reference unbolted pages
367 */
368static void __init pSeries_init_early(void)
369{
370 void *comport;
371 int iommu_off = 0;
372 unsigned int default_speed;
373 u64 physport;
374
375 DBG(" -> pSeries_init_early()\n");
376
377 fw_feature_init();
378
379 if (systemcfg->platform & PLATFORM_LPAR)
380 hpte_init_lpar();
381 else {
382 hpte_init_native();
383 iommu_off = (of_chosen &&
384 get_property(of_chosen, "linux,iommu-off", NULL));
385 }
386
387 generic_find_legacy_serial_ports(&physport, &default_speed);
388
389 if (systemcfg->platform & PLATFORM_LPAR)
390 find_udbg_vterm();
391 else if (physport) {
392 /* Map the uart for udbg. */
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700393 comport = (void *)ioremap(physport, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 udbg_init_uart(comport, default_speed);
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 DBG("Hello World !\n");
397 }
398
399
400 iommu_init_early_pSeries();
401
402 pSeries_discover_pic();
403
404 DBG(" <- pSeries_init_early()\n");
405}
406
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408static int pSeries_check_legacy_ioport(unsigned int baseport)
409{
410 struct device_node *np;
411
412#define I8042_DATA_REG 0x60
413#define FDC_BASE 0x3f0
414
415
416 switch(baseport) {
417 case I8042_DATA_REG:
418 np = of_find_node_by_type(NULL, "8042");
419 if (np == NULL)
420 return -ENODEV;
421 of_node_put(np);
422 break;
423 case FDC_BASE:
424 np = of_find_node_by_type(NULL, "fdc");
425 if (np == NULL)
426 return -ENODEV;
427 of_node_put(np);
428 break;
429 }
430 return 0;
431}
432
433/*
434 * Called very early, MMU is off, device-tree isn't unflattened
435 */
436extern struct machdep_calls pSeries_md;
437
438static int __init pSeries_probe(int platform)
439{
440 if (platform != PLATFORM_PSERIES &&
441 platform != PLATFORM_PSERIES_LPAR)
442 return 0;
443
444 /* if we have some ppc_md fixups for LPAR to do, do
445 * it here ...
446 */
447
448 return 1;
449}
450
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700451DECLARE_PER_CPU(unsigned long, smt_snooze_delay);
452
Anton Blanchard050a0932005-07-07 17:56:33 -0700453static inline void dedicated_idle_sleep(unsigned int cpu)
454{
455 struct paca_struct *ppaca = &paca[cpu ^ 1];
456
457 /* Only sleep if the other thread is not idle */
458 if (!(ppaca->lppaca.idle)) {
459 local_irq_disable();
460
461 /*
462 * We are about to sleep the thread and so wont be polling any
463 * more.
464 */
465 clear_thread_flag(TIF_POLLING_NRFLAG);
466
467 /*
468 * SMT dynamic mode. Cede will result in this thread going
469 * dormant, if the partner thread is still doing work. Thread
470 * wakes up if partner goes idle, an interrupt is presented, or
471 * a prod occurs. Returning from the cede enables external
472 * interrupts.
473 */
474 if (!need_resched())
475 cede_processor();
476 else
477 local_irq_enable();
478 } else {
479 /*
480 * Give the HV an opportunity at the processor, since we are
481 * not doing any work.
482 */
483 poll_pending();
484 }
485}
486
Paul Mackerras143a1de2005-10-19 23:11:21 +1000487static void pseries_dedicated_idle(void)
488{
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700489 long oldval;
Anton Blanchard050a0932005-07-07 17:56:33 -0700490 struct paca_struct *lpaca = get_paca();
491 unsigned int cpu = smp_processor_id();
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700492 unsigned long start_snooze;
493 unsigned long *smt_snooze_delay = &__get_cpu_var(smt_snooze_delay);
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700494
495 while (1) {
496 /*
497 * Indicate to the HV that we are idle. Now would be
498 * a good time to find other work to dispatch.
499 */
500 lpaca->lppaca.idle = 1;
501
502 oldval = test_and_clear_thread_flag(TIF_NEED_RESCHED);
503 if (!oldval) {
504 set_thread_flag(TIF_POLLING_NRFLAG);
Anton Blanchard050a0932005-07-07 17:56:33 -0700505
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700506 start_snooze = __get_tb() +
507 *smt_snooze_delay * tb_ticks_per_usec;
Anton Blanchard050a0932005-07-07 17:56:33 -0700508
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700509 while (!need_resched() && !cpu_is_offline(cpu)) {
Anton Blanchard050a0932005-07-07 17:56:33 -0700510 ppc64_runlatch_off();
511
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700512 /*
513 * Go into low thread priority and possibly
514 * low power mode.
515 */
516 HMT_low();
517 HMT_very_low();
518
Anton Blanchard050a0932005-07-07 17:56:33 -0700519 if (*smt_snooze_delay != 0 &&
520 __get_tb() > start_snooze) {
521 HMT_medium();
522 dedicated_idle_sleep(cpu);
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700523 }
Anton Blanchard050a0932005-07-07 17:56:33 -0700524
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700525 }
526
Anton Blanchard050a0932005-07-07 17:56:33 -0700527 HMT_medium();
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700528 clear_thread_flag(TIF_POLLING_NRFLAG);
529 } else {
530 set_need_resched();
531 }
532
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700533 lpaca->lppaca.idle = 0;
Anton Blanchard050a0932005-07-07 17:56:33 -0700534 ppc64_runlatch_on();
535
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700536 schedule();
Anton Blanchard050a0932005-07-07 17:56:33 -0700537
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700538 if (cpu_is_offline(cpu) && system_state == SYSTEM_RUNNING)
539 cpu_die();
540 }
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700541}
542
Paul Mackerras143a1de2005-10-19 23:11:21 +1000543static void pseries_shared_idle(void)
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700544{
545 struct paca_struct *lpaca = get_paca();
546 unsigned int cpu = smp_processor_id();
547
548 while (1) {
549 /*
550 * Indicate to the HV that we are idle. Now would be
551 * a good time to find other work to dispatch.
552 */
553 lpaca->lppaca.idle = 1;
554
555 while (!need_resched() && !cpu_is_offline(cpu)) {
556 local_irq_disable();
Anton Blanchard050a0932005-07-07 17:56:33 -0700557 ppc64_runlatch_off();
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700558
559 /*
560 * Yield the processor to the hypervisor. We return if
561 * an external interrupt occurs (which are driven prior
562 * to returning here) or if a prod occurs from another
563 * processor. When returning here, external interrupts
564 * are enabled.
565 *
566 * Check need_resched() again with interrupts disabled
567 * to avoid a race.
568 */
569 if (!need_resched())
570 cede_processor();
571 else
572 local_irq_enable();
Anton Blanchard050a0932005-07-07 17:56:33 -0700573
574 HMT_medium();
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700575 }
576
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700577 lpaca->lppaca.idle = 0;
Anton Blanchard050a0932005-07-07 17:56:33 -0700578 ppc64_runlatch_on();
579
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700580 schedule();
Anton Blanchard050a0932005-07-07 17:56:33 -0700581
582 if (cpu_is_offline(cpu) && system_state == SYSTEM_RUNNING)
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700583 cpu_die();
584 }
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700585}
586
Paul Mackerras42672922005-09-12 17:17:36 +1000587static int pSeries_pci_probe_mode(struct pci_bus *bus)
588{
589 if (systemcfg->platform & PLATFORM_LPAR)
590 return PCI_PROBE_DEVTREE;
591 return PCI_PROBE_NORMAL;
592}
593
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594struct machdep_calls __initdata pSeries_md = {
595 .probe = pSeries_probe,
596 .setup_arch = pSeries_setup_arch,
597 .init_early = pSeries_init_early,
Paul Mackerras0dd194d2005-10-20 20:48:19 +1000598 .show_cpuinfo = pSeries_show_cpuinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 .log_error = pSeries_log_error,
600 .pcibios_fixup = pSeries_final_fixup,
Paul Mackerras42672922005-09-12 17:17:36 +1000601 .pci_probe_mode = pSeries_pci_probe_mode,
John Rosedad32bb2005-06-23 17:09:54 +1000602 .irq_bus_setup = pSeries_irq_bus_setup,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 .restart = rtas_restart,
604 .power_off = rtas_power_off,
605 .halt = rtas_halt,
606 .panic = rtas_os_term,
607 .cpu_die = pSeries_mach_cpu_die,
Arnd Bergmann773bf9c2005-06-23 09:43:18 +1000608 .get_boot_time = rtas_get_boot_time,
609 .get_rtc_time = rtas_get_rtc_time,
610 .set_rtc_time = rtas_set_rtc_time,
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000611 .calibrate_decr = generic_calibrate_decr,
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000612 .progress = rtas_progress,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 .check_legacy_ioport = pSeries_check_legacy_ioport,
614 .system_reset_exception = pSeries_system_reset_exception,
615 .machine_check_exception = pSeries_machine_check_exception,
616};