diff options
Diffstat (limited to 'arch/ppc/platforms/chrp_setup.c')
-rw-r--r-- | arch/ppc/platforms/chrp_setup.c | 33 |
1 files changed, 11 insertions, 22 deletions
diff --git a/arch/ppc/platforms/chrp_setup.c b/arch/ppc/platforms/chrp_setup.c index 66346f0de7ec..f1b70ab3c6fd 100644 --- a/arch/ppc/platforms/chrp_setup.c +++ b/arch/ppc/platforms/chrp_setup.c | |||
@@ -104,7 +104,7 @@ static const char *gg2_cachemodes[4] = { | |||
104 | "Disabled", "Write-Through", "Copy-Back", "Transparent Mode" | 104 | "Disabled", "Write-Through", "Copy-Back", "Transparent Mode" |
105 | }; | 105 | }; |
106 | 106 | ||
107 | int __chrp | 107 | int |
108 | chrp_show_cpuinfo(struct seq_file *m) | 108 | chrp_show_cpuinfo(struct seq_file *m) |
109 | { | 109 | { |
110 | int i, sdramen; | 110 | int i, sdramen; |
@@ -302,7 +302,7 @@ void __init chrp_setup_arch(void) | |||
302 | pci_create_OF_bus_map(); | 302 | pci_create_OF_bus_map(); |
303 | } | 303 | } |
304 | 304 | ||
305 | void __chrp | 305 | void |
306 | chrp_event_scan(void) | 306 | chrp_event_scan(void) |
307 | { | 307 | { |
308 | unsigned char log[1024]; | 308 | unsigned char log[1024]; |
@@ -313,7 +313,7 @@ chrp_event_scan(void) | |||
313 | ppc_md.heartbeat_count = ppc_md.heartbeat_reset; | 313 | ppc_md.heartbeat_count = ppc_md.heartbeat_reset; |
314 | } | 314 | } |
315 | 315 | ||
316 | void __chrp | 316 | void |
317 | chrp_restart(char *cmd) | 317 | chrp_restart(char *cmd) |
318 | { | 318 | { |
319 | printk("RTAS system-reboot returned %d\n", | 319 | printk("RTAS system-reboot returned %d\n", |
@@ -321,7 +321,7 @@ chrp_restart(char *cmd) | |||
321 | for (;;); | 321 | for (;;); |
322 | } | 322 | } |
323 | 323 | ||
324 | void __chrp | 324 | void |
325 | chrp_power_off(void) | 325 | chrp_power_off(void) |
326 | { | 326 | { |
327 | /* allow power on only with power button press */ | 327 | /* allow power on only with power button press */ |
@@ -330,20 +330,12 @@ chrp_power_off(void) | |||
330 | for (;;); | 330 | for (;;); |
331 | } | 331 | } |
332 | 332 | ||
333 | void __chrp | 333 | void |
334 | chrp_halt(void) | 334 | chrp_halt(void) |
335 | { | 335 | { |
336 | chrp_power_off(); | 336 | chrp_power_off(); |
337 | } | 337 | } |
338 | 338 | ||
339 | u_int __chrp | ||
340 | chrp_irq_canonicalize(u_int irq) | ||
341 | { | ||
342 | if (irq == 2) | ||
343 | return 9; | ||
344 | return irq; | ||
345 | } | ||
346 | |||
347 | /* | 339 | /* |
348 | * Finds the open-pic node and sets OpenPIC_Addr based on its reg property. | 340 | * Finds the open-pic node and sets OpenPIC_Addr based on its reg property. |
349 | * Then checks if it has an interrupt-ranges property. If it does then | 341 | * Then checks if it has an interrupt-ranges property. If it does then |
@@ -444,9 +436,7 @@ void __init chrp_init_IRQ(void) | |||
444 | i8259_irq); | 436 | i8259_irq); |
445 | 437 | ||
446 | } | 438 | } |
447 | for (i = 0; i < NUM_8259_INTERRUPTS; i++) | 439 | i8259_init(chrp_int_ack, 0); |
448 | irq_desc[i].handler = &i8259_pic; | ||
449 | i8259_init(chrp_int_ack); | ||
450 | 440 | ||
451 | #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(XMON) | 441 | #if defined(CONFIG_VT) && defined(CONFIG_INPUT_ADBHID) && defined(XMON) |
452 | /* see if there is a keyboard in the device tree | 442 | /* see if there is a keyboard in the device tree |
@@ -464,8 +454,7 @@ void __init | |||
464 | chrp_init2(void) | 454 | chrp_init2(void) |
465 | { | 455 | { |
466 | #ifdef CONFIG_NVRAM | 456 | #ifdef CONFIG_NVRAM |
467 | // XX replace this in a more saner way | 457 | chrp_nvram_init(); |
468 | // pmac_nvram_init(); | ||
469 | #endif | 458 | #endif |
470 | 459 | ||
471 | request_region(0x20,0x20,"pic1"); | 460 | request_region(0x20,0x20,"pic1"); |
@@ -499,6 +488,7 @@ chrp_init(unsigned long r3, unsigned long r4, unsigned long r5, | |||
499 | DMA_MODE_READ = 0x44; | 488 | DMA_MODE_READ = 0x44; |
500 | DMA_MODE_WRITE = 0x48; | 489 | DMA_MODE_WRITE = 0x48; |
501 | isa_io_base = CHRP_ISA_IO_BASE; /* default value */ | 490 | isa_io_base = CHRP_ISA_IO_BASE; /* default value */ |
491 | ppc_do_canonicalize_irqs = 1; | ||
502 | 492 | ||
503 | if (root) | 493 | if (root) |
504 | machine = get_property(root, "model", NULL); | 494 | machine = get_property(root, "model", NULL); |
@@ -517,7 +507,6 @@ chrp_init(unsigned long r3, unsigned long r4, unsigned long r5, | |||
517 | ppc_md.show_percpuinfo = of_show_percpuinfo; | 507 | ppc_md.show_percpuinfo = of_show_percpuinfo; |
518 | ppc_md.show_cpuinfo = chrp_show_cpuinfo; | 508 | ppc_md.show_cpuinfo = chrp_show_cpuinfo; |
519 | 509 | ||
520 | ppc_md.irq_canonicalize = chrp_irq_canonicalize; | ||
521 | ppc_md.init_IRQ = chrp_init_IRQ; | 510 | ppc_md.init_IRQ = chrp_init_IRQ; |
522 | if (_chrp_type == _CHRP_Pegasos) | 511 | if (_chrp_type == _CHRP_Pegasos) |
523 | ppc_md.get_irq = i8259_irq; | 512 | ppc_md.get_irq = i8259_irq; |
@@ -561,7 +550,7 @@ chrp_init(unsigned long r3, unsigned long r4, unsigned long r5, | |||
561 | #endif | 550 | #endif |
562 | 551 | ||
563 | #ifdef CONFIG_SMP | 552 | #ifdef CONFIG_SMP |
564 | ppc_md.smp_ops = &chrp_smp_ops; | 553 | smp_ops = &chrp_smp_ops; |
565 | #endif /* CONFIG_SMP */ | 554 | #endif /* CONFIG_SMP */ |
566 | 555 | ||
567 | /* | 556 | /* |
@@ -571,7 +560,7 @@ chrp_init(unsigned long r3, unsigned long r4, unsigned long r5, | |||
571 | if (ppc_md.progress) ppc_md.progress("Linux/PPC "UTS_RELEASE"\n", 0x0); | 560 | if (ppc_md.progress) ppc_md.progress("Linux/PPC "UTS_RELEASE"\n", 0x0); |
572 | } | 561 | } |
573 | 562 | ||
574 | void __chrp | 563 | void |
575 | rtas_display_progress(char *s, unsigned short hex) | 564 | rtas_display_progress(char *s, unsigned short hex) |
576 | { | 565 | { |
577 | int width; | 566 | int width; |
@@ -598,7 +587,7 @@ rtas_display_progress(char *s, unsigned short hex) | |||
598 | call_rtas( "display-character", 1, 1, NULL, ' ' ); | 587 | call_rtas( "display-character", 1, 1, NULL, ' ' ); |
599 | } | 588 | } |
600 | 589 | ||
601 | void __chrp | 590 | void |
602 | rtas_indicator_progress(char *s, unsigned short hex) | 591 | rtas_indicator_progress(char *s, unsigned short hex) |
603 | { | 592 | { |
604 | call_rtas("set-indicator", 3, 1, NULL, 6, 0, hex); | 593 | call_rtas("set-indicator", 3, 1, NULL, 6, 0, hex); |