blob: f4aca9fa9546f23ff49874a322d1a684078f485b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Machine specific setup for generic
3 */
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <asm/arch_hooks.h>
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -07008#include <asm/voyager.h>
9#include <asm/e820.h>
James Bottomleyd5fb3422006-06-27 02:53:50 -070010#include <asm/io.h>
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -070011#include <asm/setup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012
13void __init pre_intr_init_hook(void)
14{
15 init_ISA_irqs();
16}
17
18/*
19 * IRQ2 is cascade interrupt to second interrupt controller
20 */
Thomas Gleixner6a61f6a2007-10-17 18:04:36 +020021static struct irqaction irq2 = {
22 .handler = no_action,
23 .mask = CPU_MASK_NONE,
24 .name = "cascade",
25};
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27void __init intr_init_hook(void)
28{
29#ifdef CONFIG_SMP
30 smp_intr_init();
31#endif
32
James Bottomleyd5fb3422006-06-27 02:53:50 -070033 setup_irq(2, &irq2);
Linus Torvalds1da177e2005-04-16 15:20:36 -070034}
35
36void __init pre_setup_arch_hook(void)
37{
38 /* Voyagers run their CPUs from independent clocks, so disable
39 * the TSC code because we can't sync them */
Andi Kleen404ee5b2008-01-30 13:33:20 +010040 setup_clear_cpu_cap(X86_FEATURE_TSC);
Linus Torvalds1da177e2005-04-16 15:20:36 -070041}
42
43void __init trap_init_hook(void)
44{
45}
46
Ingo Molnara4ec1ef2008-01-30 13:30:10 +010047static struct irqaction irq0 = {
James Bottomley9f483512007-04-30 11:30:10 -050048 .handler = timer_interrupt,
Bernhard Walleb34942f2007-05-08 00:35:29 -070049 .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_IRQPOLL,
James Bottomley9f483512007-04-30 11:30:10 -050050 .mask = CPU_MASK_NONE,
51 .name = "timer"
52};
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54void __init time_init_hook(void)
55{
James Bottomley9f483512007-04-30 11:30:10 -050056 irq0.mask = cpumask_of_cpu(safe_smp_processor_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 setup_irq(0, &irq0);
58}
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -070059
60/* Hook for machine specific memory setup. */
61
Ingo Molnara4ec1ef2008-01-30 13:30:10 +010062char *__init machine_specific_memory_setup(void)
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -070063{
64 char *who;
Paul Jackson6e9bcc72008-05-14 08:15:46 -070065 int new_nr;
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -070066
67 who = "NOT VOYAGER";
68
Ingo Molnara4ec1ef2008-01-30 13:30:10 +010069 if (voyager_level == 5) {
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -070070 __u32 addr, length;
71 int i;
72
73 who = "Voyager-SUS";
74
75 e820.nr_map = 0;
Ingo Molnara4ec1ef2008-01-30 13:30:10 +010076 for (i = 0; voyager_memory_detect(i, &addr, &length); i++) {
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -070077 add_memory_region(addr, length, E820_RAM);
78 }
79 return who;
Ingo Molnara4ec1ef2008-01-30 13:30:10 +010080 } else if (voyager_level == 4) {
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -070081 __u32 tom;
Ingo Molnara4ec1ef2008-01-30 13:30:10 +010082 __u16 catbase = inb(VOYAGER_SSPB_RELOCATION_PORT) << 8;
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -070083 /* select the DINO config space */
84 outb(VOYAGER_DINO, VOYAGER_CAT_CONFIG_PORT);
85 /* Read DINO top of memory register */
86 tom = ((inb(catbase + 0x4) & 0xf0) << 16)
Ingo Molnara4ec1ef2008-01-30 13:30:10 +010087 + ((inb(catbase + 0x5) & 0x7f) << 24);
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -070088
Ingo Molnara4ec1ef2008-01-30 13:30:10 +010089 if (inb(catbase) != VOYAGER_DINO) {
90 printk(KERN_ERR
91 "Voyager: Failed to get DINO for L4, setting tom to EXT_MEM_K\n");
92 tom = (boot_params.screen_info.ext_mem_k) << 10;
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -070093 }
94 who = "Voyager-TOM";
95 add_memory_region(0, 0x9f000, E820_RAM);
96 /* map from 1M to top of memory */
Ingo Molnara4ec1ef2008-01-30 13:30:10 +010097 add_memory_region(1 * 1024 * 1024, tom - 1 * 1024 * 1024,
98 E820_RAM);
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -070099 /* FIXME: Should check the ASICs to see if I need to
100 * take out the 8M window. Just do it at the moment
101 * */
Ingo Molnara4ec1ef2008-01-30 13:30:10 +0100102 add_memory_region(8 * 1024 * 1024, 8 * 1024 * 1024,
103 E820_RESERVED);
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -0700104 return who;
105 }
106
107 who = "BIOS-e820";
108
109 /*
110 * Try to copy the BIOS-supplied E820-map.
111 *
112 * Otherwise fake a memory map; one section from 0k->640k,
113 * the next section from 1mb->appropriate_mem_k
114 */
Paul Jackson6e9bcc72008-05-14 08:15:46 -0700115 new_nr = boot_params.e820_entries;
Paul Jacksonc3965bd2008-05-14 08:15:34 -0700116 sanitize_e820_map(boot_params.e820_map,
117 ARRAY_SIZE(boot_params.e820_map),
Paul Jackson6e9bcc72008-05-14 08:15:46 -0700118 &new_nr);
119 boot_params.e820_entries = new_nr;
H. Peter Anvin30c82642007-10-15 17:13:22 -0700120 if (copy_e820_map(boot_params.e820_map, boot_params.e820_entries)
121 < 0) {
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -0700122 unsigned long mem_size;
123
124 /* compare results from other methods and take the greater */
Ingo Molnara4ec1ef2008-01-30 13:30:10 +0100125 if (boot_params.alt_mem_k < boot_params.screen_info.ext_mem_k) {
H. Peter Anvin30c82642007-10-15 17:13:22 -0700126 mem_size = boot_params.screen_info.ext_mem_k;
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -0700127 who = "BIOS-88";
128 } else {
H. Peter Anvin30c82642007-10-15 17:13:22 -0700129 mem_size = boot_params.alt_mem_k;
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -0700130 who = "BIOS-e801";
131 }
132
133 e820.nr_map = 0;
134 add_memory_region(0, LOWMEMSIZE(), E820_RAM);
135 add_memory_region(HIGH_MEMORY, mem_size << 10, E820_RAM);
Ingo Molnara4ec1ef2008-01-30 13:30:10 +0100136 }
Jeremy Fitzhardingee75eac32006-06-25 05:46:50 -0700137 return who;
138}