blob: ee468f07f37894462df958ab67a15b5bce511ccf [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Paul Mackerras033ef332005-10-26 17:05:24 +10002 * 64-bit pSeries and RS/6000 setup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
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>
David Gibson007e8f52005-10-28 15:35:50 +100062#include "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 -070090struct mpic *pSeries_mpic;
91
Paul Mackerras0dd194d2005-10-20 20:48:19 +100092void pSeries_show_cpuinfo(struct seq_file *m)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093{
94 struct device_node *root;
95 const char *model = "";
96
97 root = of_find_node_by_path("/");
98 if (root)
99 model = get_property(root, "model", NULL);
100 seq_printf(m, "machine\t\t: CHRP %s\n", model);
101 of_node_put(root);
102}
103
104/* Initialize firmware assisted non-maskable interrupts if
105 * the firmware supports this feature.
106 *
107 */
108static void __init fwnmi_init(void)
109{
110 int ret;
111 int ibm_nmi_register = rtas_token("ibm,nmi-register");
112 if (ibm_nmi_register == RTAS_UNKNOWN_SERVICE)
113 return;
114 ret = rtas_call(ibm_nmi_register, 2, 1, NULL,
115 __pa((unsigned long)system_reset_fwnmi),
116 __pa((unsigned long)machine_check_fwnmi));
117 if (ret == 0)
118 fwnmi_active = 1;
119}
120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121static void __init pSeries_init_mpic(void)
122{
123 unsigned int *addrp;
124 struct device_node *np;
Paul Mackerrasf9bd1702005-10-26 16:47:42 +1000125 unsigned long intack = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127 /* All ISUs are setup, complete initialization */
128 mpic_init(pSeries_mpic);
129
130 /* Check what kind of cascade ACK we have */
131 if (!(np = of_find_node_by_name(NULL, "pci"))
132 || !(addrp = (unsigned int *)
133 get_property(np, "8259-interrupt-acknowledge", NULL)))
134 printk(KERN_ERR "Cannot find pci to get ack address\n");
135 else
Paul Mackerrasf9bd1702005-10-26 16:47:42 +1000136 intack = addrp[prom_n_addr_cells(np)-1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 of_node_put(np);
138
139 /* Setup the legacy interrupts & controller */
Paul Mackerrasf9bd1702005-10-26 16:47:42 +1000140 i8259_init(intack, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 /* Hook cascade to mpic */
Paul Mackerrasf9bd1702005-10-26 16:47:42 +1000143 mpic_setup_cascade(NUM_ISA_INTERRUPTS, i8259_irq_cascade, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146static void __init pSeries_setup_mpic(void)
147{
148 unsigned int *opprop;
149 unsigned long openpic_addr = 0;
150 unsigned char senses[NR_IRQS - NUM_ISA_INTERRUPTS];
151 struct device_node *root;
152 int irq_count;
153
154 /* Find the Open PIC if present */
155 root = of_find_node_by_path("/");
156 opprop = (unsigned int *) get_property(root, "platform-open-pic", NULL);
157 if (opprop != 0) {
158 int n = prom_n_addr_cells(root);
159
160 for (openpic_addr = 0; n > 0; --n)
161 openpic_addr = (openpic_addr << 32) + *opprop++;
162 printk(KERN_DEBUG "OpenPIC addr: %lx\n", openpic_addr);
163 }
164 of_node_put(root);
165
166 BUG_ON(openpic_addr == 0);
167
168 /* Get the sense values from OF */
169 prom_get_irq_senses(senses, NUM_ISA_INTERRUPTS, NR_IRQS);
170
171 /* Setup the openpic driver */
172 irq_count = NR_IRQS - NUM_ISA_INTERRUPTS - 4; /* leave room for IPIs */
173 pSeries_mpic = mpic_alloc(openpic_addr, MPIC_PRIMARY,
174 16, 16, irq_count, /* isu size, irq offset, irq count */
175 NR_IRQS - 4, /* ipi offset */
176 senses, irq_count, /* sense & sense size */
177 " MPIC ");
178}
179
Michael Ellerman180a3362005-08-09 11:13:36 +1000180static void pseries_lpar_enable_pmcs(void)
181{
182 unsigned long set, reset;
183
184 power4_enable_pmcs();
185
186 set = 1UL << 63;
187 reset = 0;
188 plpar_hcall_norets(H_PERFMON, set, reset);
189
190 /* instruct hypervisor to maintain PMCs */
191 if (firmware_has_feature(FW_FEATURE_SPLPAR))
192 get_paca()->lppaca.pmcregs_in_use = 1;
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195static void __init pSeries_setup_arch(void)
196{
197 /* Fixup ppc_md depending on the type of interrupt controller */
198 if (ppc64_interrupt_controller == IC_OPEN_PIC) {
R Sharadafce0d572005-06-25 14:58:10 -0700199 ppc_md.init_IRQ = pSeries_init_mpic;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 ppc_md.get_irq = mpic_get_irq;
R Sharadafce0d572005-06-25 14:58:10 -0700201 ppc_md.cpu_irq_down = mpic_teardown_this_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* Allocate the mpic now, so that find_and_init_phbs() can
203 * fill the ISUs */
204 pSeries_setup_mpic();
205 } else {
206 ppc_md.init_IRQ = xics_init_IRQ;
207 ppc_md.get_irq = xics_get_irq;
R Sharadafce0d572005-06-25 14:58:10 -0700208 ppc_md.cpu_irq_down = xics_teardown_cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 }
210
211#ifdef CONFIG_SMP
212 smp_init_pSeries();
213#endif
214 /* openpic global configuration register (64-bit format). */
215 /* openpic Interrupt Source Unit pointer (64-bit format). */
216 /* python0 facility area (mmio) (64-bit format) REAL address. */
217
218 /* init to some ~sane value until calibrate_delay() runs */
219 loops_per_jiffy = 50000000;
220
221 if (ROOT_DEV == 0) {
222 printk("No ramdisk, default root is /dev/sda2\n");
223 ROOT_DEV = Root_SDA2;
224 }
225
226 fwnmi_init();
227
228 /* Find and initialize PCI host bridges */
229 init_pci_config_tokens();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 find_and_init_phbs();
Paul Mackerras0160f532005-09-13 20:56:20 +1000231 eeh_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 pSeries_nvram_init();
234
Michael Ellerman62d60e92005-07-07 17:56:30 -0700235 /* Choose an idle loop */
Stephen Rothwell1ababe12005-08-03 14:35:25 +1000236 if (firmware_has_feature(FW_FEATURE_SPLPAR)) {
Stephen Rothwell8d15a3e2005-08-03 14:40:16 +1000237 vpa_init(boot_cpuid);
Michael Ellerman62d60e92005-07-07 17:56:30 -0700238 if (get_paca()->lppaca.shared_proc) {
239 printk(KERN_INFO "Using shared processor idle loop\n");
Anton Blanchard050a0932005-07-07 17:56:33 -0700240 ppc_md.idle_loop = pseries_shared_idle;
Michael Ellerman62d60e92005-07-07 17:56:30 -0700241 } else {
242 printk(KERN_INFO "Using dedicated idle loop\n");
Anton Blanchard050a0932005-07-07 17:56:33 -0700243 ppc_md.idle_loop = pseries_dedicated_idle;
Michael Ellerman62d60e92005-07-07 17:56:30 -0700244 }
245 } else {
246 printk(KERN_INFO "Using default idle loop\n");
247 ppc_md.idle_loop = default_idle;
248 }
Michael Ellerman180a3362005-08-09 11:13:36 +1000249
250 if (systemcfg->platform & PLATFORM_LPAR)
251 ppc_md.enable_pmcs = pseries_lpar_enable_pmcs;
252 else
253 ppc_md.enable_pmcs = power4_enable_pmcs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
256static int __init pSeries_init_panel(void)
257{
258 /* Manually leave the kernel version on the panel. */
259 ppc_md.progress("Linux ppc64\n", 0);
Olaf Heringcebb2b12005-07-10 19:35:15 +0000260 ppc_md.progress(system_utsname.version, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 return 0;
263}
264arch_initcall(pSeries_init_panel);
265
266
Stephen Rothwell7a6af5e2005-08-03 14:32:30 +1000267/* Build up the ppc64_firmware_features bitmask field
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 * using contents of device-tree/ibm,hypertas-functions.
269 * Ultimately this functionality may be moved into prom.c prom_init().
270 */
Stephen Rothwellaed31352005-08-03 14:43:21 +1000271static void __init fw_feature_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 struct device_node * dn;
274 char * hypertas;
275 unsigned int len;
276
277 DBG(" -> fw_feature_init()\n");
278
Stephen Rothwell7a6af5e2005-08-03 14:32:30 +1000279 ppc64_firmware_features = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 dn = of_find_node_by_path("/rtas");
281 if (dn == NULL) {
282 printk(KERN_ERR "WARNING ! Cannot find RTAS in device-tree !\n");
283 goto no_rtas;
284 }
285
286 hypertas = get_property(dn, "ibm,hypertas-functions", &len);
287 if (hypertas) {
288 while (len > 0){
289 int i, hypertas_len;
290 /* check value against table of strings */
291 for(i=0; i < FIRMWARE_MAX_FEATURES ;i++) {
292 if ((firmware_features_table[i].name) &&
293 (strcmp(firmware_features_table[i].name,hypertas))==0) {
294 /* we have a match */
Stephen Rothwell7a6af5e2005-08-03 14:32:30 +1000295 ppc64_firmware_features |=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 (firmware_features_table[i].val);
297 break;
298 }
299 }
300 hypertas_len = strlen(hypertas);
301 len -= hypertas_len +1;
302 hypertas+= hypertas_len +1;
303 }
304 }
305
306 of_node_put(dn);
307 no_rtas:
308 printk(KERN_INFO "firmware_features = 0x%lx\n",
Stephen Rothwell7a6af5e2005-08-03 14:32:30 +1000309 ppc64_firmware_features);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 DBG(" <- fw_feature_init()\n");
312}
313
314
315static void __init pSeries_discover_pic(void)
316{
317 struct device_node *np;
318 char *typep;
319
320 /*
321 * Setup interrupt mapping options that are needed for finish_device_tree
322 * to properly parse the OF interrupt tree & do the virtual irq mapping
323 */
324 __irq_offset_value = NUM_ISA_INTERRUPTS;
325 ppc64_interrupt_controller = IC_INVALID;
326 for (np = NULL; (np = of_find_node_by_name(np, "interrupt-controller"));) {
327 typep = (char *)get_property(np, "compatible", NULL);
328 if (strstr(typep, "open-pic"))
329 ppc64_interrupt_controller = IC_OPEN_PIC;
330 else if (strstr(typep, "ppc-xicp"))
331 ppc64_interrupt_controller = IC_PPC_XIC;
332 else
333 printk("pSeries_discover_pic: failed to recognize"
334 " interrupt-controller\n");
335 break;
336 }
337}
338
339static void pSeries_mach_cpu_die(void)
340{
341 local_irq_disable();
342 idle_task_exit();
343 /* Some hardware requires clearing the CPPR, while other hardware does not
344 * it is safe either way
345 */
346 pSeriesLP_cppr_info(0, 0);
347 rtas_stop_self();
348 /* Should never get here... */
349 BUG();
350 for(;;);
351}
352
Michael Ellermancab0af92005-11-03 15:30:49 +1100353static int pseries_set_dabr(unsigned long dabr)
354{
355 if (firmware_has_feature(FW_FEATURE_XDABR)) {
356 /* We want to catch accesses from kernel and userspace */
357 return plpar_set_xdabr(dabr, H_DABRX_KERNEL | H_DABRX_USER);
358 }
359
360 return plpar_set_dabr(dabr);
361}
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364/*
365 * Early initialization. Relocation is on but do not reference unbolted pages
366 */
367static void __init pSeries_init_early(void)
368{
369 void *comport;
370 int iommu_off = 0;
371 unsigned int default_speed;
372 u64 physport;
373
374 DBG(" -> pSeries_init_early()\n");
375
376 fw_feature_init();
377
378 if (systemcfg->platform & PLATFORM_LPAR)
379 hpte_init_lpar();
380 else {
381 hpte_init_native();
382 iommu_off = (of_chosen &&
383 get_property(of_chosen, "linux,iommu-off", NULL));
384 }
385
386 generic_find_legacy_serial_ports(&physport, &default_speed);
387
388 if (systemcfg->platform & PLATFORM_LPAR)
389 find_udbg_vterm();
390 else if (physport) {
391 /* Map the uart for udbg. */
Benjamin Herrenschmidtdfbacdc2005-04-16 15:24:33 -0700392 comport = (void *)ioremap(physport, 16);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 udbg_init_uart(comport, default_speed);
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 DBG("Hello World !\n");
396 }
397
Michael Ellermancab0af92005-11-03 15:30:49 +1100398 if (firmware_has_feature(FW_FEATURE_XDABR | FW_FEATURE_DABR))
399 ppc_md.set_dabr = pseries_set_dabr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 iommu_init_early_pSeries();
402
403 pSeries_discover_pic();
404
405 DBG(" <- pSeries_init_early()\n");
406}
407
408
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409static int pSeries_check_legacy_ioport(unsigned int baseport)
410{
411 struct device_node *np;
412
413#define I8042_DATA_REG 0x60
414#define FDC_BASE 0x3f0
415
416
417 switch(baseport) {
418 case I8042_DATA_REG:
419 np = of_find_node_by_type(NULL, "8042");
420 if (np == NULL)
421 return -ENODEV;
422 of_node_put(np);
423 break;
424 case FDC_BASE:
425 np = of_find_node_by_type(NULL, "fdc");
426 if (np == NULL)
427 return -ENODEV;
428 of_node_put(np);
429 break;
430 }
431 return 0;
432}
433
434/*
435 * Called very early, MMU is off, device-tree isn't unflattened
436 */
437extern struct machdep_calls pSeries_md;
438
439static int __init pSeries_probe(int platform)
440{
441 if (platform != PLATFORM_PSERIES &&
442 platform != PLATFORM_PSERIES_LPAR)
443 return 0;
444
445 /* if we have some ppc_md fixups for LPAR to do, do
446 * it here ...
447 */
448
449 return 1;
450}
451
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700452DECLARE_PER_CPU(unsigned long, smt_snooze_delay);
453
Anton Blanchard050a0932005-07-07 17:56:33 -0700454static inline void dedicated_idle_sleep(unsigned int cpu)
455{
456 struct paca_struct *ppaca = &paca[cpu ^ 1];
457
458 /* Only sleep if the other thread is not idle */
459 if (!(ppaca->lppaca.idle)) {
460 local_irq_disable();
461
462 /*
463 * We are about to sleep the thread and so wont be polling any
464 * more.
465 */
466 clear_thread_flag(TIF_POLLING_NRFLAG);
467
468 /*
469 * SMT dynamic mode. Cede will result in this thread going
470 * dormant, if the partner thread is still doing work. Thread
471 * wakes up if partner goes idle, an interrupt is presented, or
472 * a prod occurs. Returning from the cede enables external
473 * interrupts.
474 */
475 if (!need_resched())
476 cede_processor();
477 else
478 local_irq_enable();
479 } else {
480 /*
481 * Give the HV an opportunity at the processor, since we are
482 * not doing any work.
483 */
484 poll_pending();
485 }
486}
487
Paul Mackerras143a1de2005-10-19 23:11:21 +1000488static void pseries_dedicated_idle(void)
489{
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700490 long oldval;
Anton Blanchard050a0932005-07-07 17:56:33 -0700491 struct paca_struct *lpaca = get_paca();
492 unsigned int cpu = smp_processor_id();
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700493 unsigned long start_snooze;
494 unsigned long *smt_snooze_delay = &__get_cpu_var(smt_snooze_delay);
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700495
496 while (1) {
497 /*
498 * Indicate to the HV that we are idle. Now would be
499 * a good time to find other work to dispatch.
500 */
501 lpaca->lppaca.idle = 1;
502
503 oldval = test_and_clear_thread_flag(TIF_NEED_RESCHED);
504 if (!oldval) {
505 set_thread_flag(TIF_POLLING_NRFLAG);
Anton Blanchard050a0932005-07-07 17:56:33 -0700506
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700507 start_snooze = __get_tb() +
508 *smt_snooze_delay * tb_ticks_per_usec;
Anton Blanchard050a0932005-07-07 17:56:33 -0700509
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700510 while (!need_resched() && !cpu_is_offline(cpu)) {
Anton Blanchard050a0932005-07-07 17:56:33 -0700511 ppc64_runlatch_off();
512
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700513 /*
514 * Go into low thread priority and possibly
515 * low power mode.
516 */
517 HMT_low();
518 HMT_very_low();
519
Anton Blanchard050a0932005-07-07 17:56:33 -0700520 if (*smt_snooze_delay != 0 &&
521 __get_tb() > start_snooze) {
522 HMT_medium();
523 dedicated_idle_sleep(cpu);
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700524 }
Anton Blanchard050a0932005-07-07 17:56:33 -0700525
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700526 }
527
Anton Blanchard050a0932005-07-07 17:56:33 -0700528 HMT_medium();
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700529 clear_thread_flag(TIF_POLLING_NRFLAG);
530 } else {
531 set_need_resched();
532 }
533
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700534 lpaca->lppaca.idle = 0;
Anton Blanchard050a0932005-07-07 17:56:33 -0700535 ppc64_runlatch_on();
536
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700537 schedule();
Anton Blanchard050a0932005-07-07 17:56:33 -0700538
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700539 if (cpu_is_offline(cpu) && system_state == SYSTEM_RUNNING)
540 cpu_die();
541 }
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700542}
543
Paul Mackerras143a1de2005-10-19 23:11:21 +1000544static void pseries_shared_idle(void)
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700545{
546 struct paca_struct *lpaca = get_paca();
547 unsigned int cpu = smp_processor_id();
548
549 while (1) {
550 /*
551 * Indicate to the HV that we are idle. Now would be
552 * a good time to find other work to dispatch.
553 */
554 lpaca->lppaca.idle = 1;
555
556 while (!need_resched() && !cpu_is_offline(cpu)) {
557 local_irq_disable();
Anton Blanchard050a0932005-07-07 17:56:33 -0700558 ppc64_runlatch_off();
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700559
560 /*
561 * Yield the processor to the hypervisor. We return if
562 * an external interrupt occurs (which are driven prior
563 * to returning here) or if a prod occurs from another
564 * processor. When returning here, external interrupts
565 * are enabled.
566 *
567 * Check need_resched() again with interrupts disabled
568 * to avoid a race.
569 */
570 if (!need_resched())
571 cede_processor();
572 else
573 local_irq_enable();
Anton Blanchard050a0932005-07-07 17:56:33 -0700574
575 HMT_medium();
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700576 }
577
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700578 lpaca->lppaca.idle = 0;
Anton Blanchard050a0932005-07-07 17:56:33 -0700579 ppc64_runlatch_on();
580
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700581 schedule();
Anton Blanchard050a0932005-07-07 17:56:33 -0700582
583 if (cpu_is_offline(cpu) && system_state == SYSTEM_RUNNING)
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700584 cpu_die();
585 }
Michael Ellermanc66d5dd2005-07-07 17:56:29 -0700586}
587
Paul Mackerras42672922005-09-12 17:17:36 +1000588static int pSeries_pci_probe_mode(struct pci_bus *bus)
589{
590 if (systemcfg->platform & PLATFORM_LPAR)
591 return PCI_PROBE_DEVTREE;
592 return PCI_PROBE_NORMAL;
593}
594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595struct machdep_calls __initdata pSeries_md = {
596 .probe = pSeries_probe,
597 .setup_arch = pSeries_setup_arch,
598 .init_early = pSeries_init_early,
Paul Mackerras0dd194d2005-10-20 20:48:19 +1000599 .show_cpuinfo = pSeries_show_cpuinfo,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 .log_error = pSeries_log_error,
601 .pcibios_fixup = pSeries_final_fixup,
Paul Mackerras42672922005-09-12 17:17:36 +1000602 .pci_probe_mode = pSeries_pci_probe_mode,
John Rosedad32bb2005-06-23 17:09:54 +1000603 .irq_bus_setup = pSeries_irq_bus_setup,
Paul Mackerras033ef332005-10-26 17:05:24 +1000604 .restart = rtas_fw_restart,
605 .power_off = rtas_fw_power_off,
606 .halt = rtas_fw_halt,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 .panic = rtas_os_term,
608 .cpu_die = pSeries_mach_cpu_die,
Arnd Bergmann773bf9c2005-06-23 09:43:18 +1000609 .get_boot_time = rtas_get_boot_time,
610 .get_rtc_time = rtas_get_rtc_time,
611 .set_rtc_time = rtas_set_rtc_time,
Arnd Bergmann10f7e7c2005-06-23 09:43:07 +1000612 .calibrate_decr = generic_calibrate_decr,
Arnd Bergmann6566c6f2005-06-23 09:43:28 +1000613 .progress = rtas_progress,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 .check_legacy_ioport = pSeries_check_legacy_ioport,
615 .system_reset_exception = pSeries_system_reset_exception,
616 .machine_check_exception = pSeries_machine_check_exception,
617};