thinkpad-acpi: fix bad use of article an
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / mach-default / setup.c
blob37b9ae4d44c5b755470cb3661328b073e951b068
1 /*
2 * Machine specific setup for generic
3 */
5 #include <linux/smp.h>
6 #include <linux/init.h>
7 #include <linux/interrupt.h>
8 #include <asm/acpi.h>
9 #include <asm/arch_hooks.h>
10 #include <asm/e820.h>
11 #include <asm/setup.h>
13 #include <mach_ipi.h>
15 #ifdef CONFIG_HOTPLUG_CPU
16 #define DEFAULT_SEND_IPI (1)
17 #else
18 #define DEFAULT_SEND_IPI (0)
19 #endif
21 int no_broadcast = DEFAULT_SEND_IPI;
23 /**
24 * pre_intr_init_hook - initialisation prior to setting up interrupt vectors
26 * Description:
27 * Perform any necessary interrupt initialisation prior to setting up
28 * the "ordinary" interrupt call gates. For legacy reasons, the ISA
29 * interrupts should be initialised here if the machine emulates a PC
30 * in any way.
31 **/
32 void __init pre_intr_init_hook(void)
34 if (x86_quirks->arch_pre_intr_init) {
35 if (x86_quirks->arch_pre_intr_init())
36 return;
38 init_ISA_irqs();
41 /**
42 * intr_init_hook - post gate setup interrupt initialisation
44 * Description:
45 * Fill in any interrupts that may have been left out by the general
46 * init_IRQ() routine. interrupts having to do with the machine rather
47 * than the devices on the I/O bus (like APIC interrupts in intel MP
48 * systems) are started here.
49 **/
50 void __init intr_init_hook(void)
52 if (x86_quirks->arch_intr_init) {
53 if (x86_quirks->arch_intr_init())
54 return;
58 /**
59 * pre_setup_arch_hook - hook called prior to any setup_arch() execution
61 * Description:
62 * generally used to activate any machine specific identification
63 * routines that may be needed before setup_arch() runs. On Voyager
64 * this is used to get the board revision and type.
65 **/
66 void __init pre_setup_arch_hook(void)
70 /**
71 * trap_init_hook - initialise system specific traps
73 * Description:
74 * Called as the final act of trap_init(). Used in VISWS to initialise
75 * the various board specific APIC traps.
76 **/
77 void __init trap_init_hook(void)
79 if (x86_quirks->arch_trap_init) {
80 if (x86_quirks->arch_trap_init())
81 return;
85 static struct irqaction irq0 = {
86 .handler = timer_interrupt,
87 .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_IRQPOLL,
88 .mask = CPU_MASK_NONE,
89 .name = "timer"
92 /**
93 * pre_time_init_hook - do any specific initialisations before.
95 **/
96 void __init pre_time_init_hook(void)
98 if (x86_quirks->arch_pre_time_init)
99 x86_quirks->arch_pre_time_init();
103 * time_init_hook - do any specific initialisations for the system timer.
105 * Description:
106 * Must plug the system timer interrupt source at HZ into the IRQ listed
107 * in irq_vectors.h:TIMER_IRQ
109 void __init time_init_hook(void)
111 if (x86_quirks->arch_time_init) {
113 * A nonzero return code does not mean failure, it means
114 * that the architecture quirk does not want any
115 * generic (timer) setup to be performed after this:
117 if (x86_quirks->arch_time_init())
118 return;
121 irq0.mask = cpumask_of_cpu(0);
122 setup_irq(0, &irq0);
125 #ifdef CONFIG_MCA
127 * mca_nmi_hook - hook into MCA specific NMI chain
129 * Description:
130 * The MCA (Microchannel Architecture) has an NMI chain for NMI sources
131 * along the MCA bus. Use this to hook into that chain if you will need
132 * it.
134 void mca_nmi_hook(void)
136 /* If I recall correctly, there's a whole bunch of other things that
137 * we can do to check for NMI problems, but that's all I know about
138 * at the moment.
141 printk("NMI generated from unknown source!\n");
143 #endif
145 static __init int no_ipi_broadcast(char *str)
147 get_option(&str, &no_broadcast);
148 printk ("Using %s mode\n", no_broadcast ? "No IPI Broadcast" :
149 "IPI Broadcast");
150 return 1;
153 __setup("no_ipi_broadcast=", no_ipi_broadcast);
155 static int __init print_ipi_mode(void)
157 printk ("Using IPI %s mode\n", no_broadcast ? "No-Shortcut" :
158 "Shortcut");
159 return 0;
162 late_initcall(print_ipi_mode);