| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  *	Intel Multiprocessor Specification 1.1 and 1.4 | 
 | 3 |  *	compliant MP-table parsing routines. | 
 | 4 |  * | 
 | 5 |  *	(c) 1995 Alan Cox, Building #3 <alan@redhat.com> | 
 | 6 |  *	(c) 1998, 1999, 2000 Ingo Molnar <mingo@redhat.com> | 
 | 7 |  * | 
 | 8 |  *	Fixes | 
 | 9 |  *		Erich Boleyn	:	MP v1.4 and additional changes. | 
 | 10 |  *		Alan Cox	:	Added EBDA scanning | 
 | 11 |  *		Ingo Molnar	:	various cleanups and rewrites | 
 | 12 |  *		Maciej W. Rozycki:	Bits for default MP configurations | 
 | 13 |  *		Paul Diefenbaugh:	Added full ACPI support | 
 | 14 |  */ | 
 | 15 |  | 
 | 16 | #include <linux/mm.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/init.h> | 
 | 18 | #include <linux/delay.h> | 
 | 19 | #include <linux/config.h> | 
 | 20 | #include <linux/bootmem.h> | 
 | 21 | #include <linux/smp_lock.h> | 
 | 22 | #include <linux/kernel_stat.h> | 
 | 23 | #include <linux/mc146818rtc.h> | 
 | 24 | #include <linux/acpi.h> | 
| Christoph Lameter | 8c5a090 | 2005-06-23 00:08:18 -0700 | [diff] [blame] | 25 | #include <linux/module.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 |  | 
 | 27 | #include <asm/smp.h> | 
 | 28 | #include <asm/mtrr.h> | 
 | 29 | #include <asm/mpspec.h> | 
 | 30 | #include <asm/pgalloc.h> | 
 | 31 | #include <asm/io_apic.h> | 
 | 32 | #include <asm/proto.h> | 
| Andi Kleen | 8d91640 | 2005-05-31 14:39:26 -0700 | [diff] [blame] | 33 | #include <asm/acpi.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 |  | 
 | 35 | /* Have we found an MP table */ | 
 | 36 | int smp_found_config; | 
 | 37 | unsigned int __initdata maxcpus = NR_CPUS; | 
 | 38 |  | 
 | 39 | int acpi_found_madt; | 
 | 40 |  | 
 | 41 | /* | 
 | 42 |  * Various Linux-internal data structures created from the | 
 | 43 |  * MP-table. | 
 | 44 |  */ | 
 | 45 | int apic_version [MAX_APICS]; | 
 | 46 | unsigned char mp_bus_id_to_type [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 }; | 
 | 47 | int mp_bus_id_to_pci_bus [MAX_MP_BUSSES] = { [0 ... MAX_MP_BUSSES-1] = -1 }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 |  | 
 | 49 | static int mp_current_pci_id = 0; | 
 | 50 | /* I/O APIC entries */ | 
 | 51 | struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS]; | 
 | 52 |  | 
 | 53 | /* # of MP IRQ source entries */ | 
 | 54 | struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES]; | 
 | 55 |  | 
 | 56 | /* MP IRQ source entries */ | 
 | 57 | int mp_irq_entries; | 
 | 58 |  | 
 | 59 | int nr_ioapics; | 
 | 60 | int pic_mode; | 
 | 61 | unsigned long mp_lapic_addr = 0; | 
 | 62 |  | 
 | 63 |  | 
 | 64 |  | 
 | 65 | /* Processor that is doing the boot up */ | 
 | 66 | unsigned int boot_cpu_id = -1U; | 
 | 67 | /* Internal processor count */ | 
 | 68 | static unsigned int num_processors = 0; | 
 | 69 |  | 
 | 70 | /* Bitmask of physically existing CPUs */ | 
 | 71 | physid_mask_t phys_cpu_present_map = PHYSID_MASK_NONE; | 
 | 72 |  | 
 | 73 | /* ACPI MADT entry parsing functions */ | 
| Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 74 | #ifdef CONFIG_ACPI | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | extern struct acpi_boot_flags acpi_boot; | 
 | 76 | #ifdef CONFIG_X86_LOCAL_APIC | 
 | 77 | extern int acpi_parse_lapic (acpi_table_entry_header *header); | 
 | 78 | extern int acpi_parse_lapic_addr_ovr (acpi_table_entry_header *header); | 
 | 79 | extern int acpi_parse_lapic_nmi (acpi_table_entry_header *header); | 
 | 80 | #endif /*CONFIG_X86_LOCAL_APIC*/ | 
 | 81 | #ifdef CONFIG_X86_IO_APIC | 
 | 82 | extern int acpi_parse_ioapic (acpi_table_entry_header *header); | 
 | 83 | #endif /*CONFIG_X86_IO_APIC*/ | 
| Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 84 | #endif /*CONFIG_ACPI*/ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 |  | 
 | 86 | u8 bios_cpu_apicid[NR_CPUS] = { [0 ... NR_CPUS-1] = BAD_APICID }; | 
 | 87 |  | 
 | 88 |  | 
 | 89 | /* | 
 | 90 |  * Intel MP BIOS table parsing routines: | 
 | 91 |  */ | 
 | 92 |  | 
 | 93 | /* | 
 | 94 |  * Checksum an MP configuration block. | 
 | 95 |  */ | 
 | 96 |  | 
 | 97 | static int __init mpf_checksum(unsigned char *mp, int len) | 
 | 98 | { | 
 | 99 | 	int sum = 0; | 
 | 100 |  | 
 | 101 | 	while (len--) | 
 | 102 | 		sum += *mp++; | 
 | 103 |  | 
 | 104 | 	return sum & 0xFF; | 
 | 105 | } | 
 | 106 |  | 
 | 107 | static void __init MP_processor_info (struct mpc_config_processor *m) | 
 | 108 | { | 
| Andi Kleen | 61b1b2d | 2005-07-28 21:15:27 -0700 | [diff] [blame] | 109 | 	int ver, cpu; | 
| Andi Kleen | 18a2b64 | 2005-05-16 21:53:35 -0700 | [diff] [blame] | 110 | 	static int found_bsp=0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 |  | 
 | 112 | 	if (!(m->mpc_cpuflag & CPU_ENABLED)) | 
 | 113 | 		return; | 
 | 114 |  | 
 | 115 | 	printk(KERN_INFO "Processor #%d %d:%d APIC version %d\n", | 
 | 116 | 		m->mpc_apicid, | 
 | 117 | 	       (m->mpc_cpufeature & CPU_FAMILY_MASK)>>8, | 
 | 118 | 	       (m->mpc_cpufeature & CPU_MODEL_MASK)>>4, | 
 | 119 | 		m->mpc_apicver); | 
 | 120 |  | 
 | 121 | 	if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) { | 
 | 122 | 		Dprintk("    Bootup CPU\n"); | 
 | 123 | 		boot_cpu_id = m->mpc_apicid; | 
 | 124 | 	} | 
 | 125 | 	if (num_processors >= NR_CPUS) { | 
 | 126 | 		printk(KERN_WARNING "WARNING: NR_CPUS limit of %i reached." | 
 | 127 | 			" Processor ignored.\n", NR_CPUS); | 
 | 128 | 		return; | 
 | 129 | 	} | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 |  | 
| Andi Kleen | 61b1b2d | 2005-07-28 21:15:27 -0700 | [diff] [blame] | 131 | 	cpu = num_processors++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 |  | 
 | 133 | 	if (m->mpc_apicid > MAX_APICS) { | 
 | 134 | 		printk(KERN_ERR "Processor #%d INVALID. (Max ID: %d).\n", | 
 | 135 | 			m->mpc_apicid, MAX_APICS); | 
 | 136 | 		return; | 
 | 137 | 	} | 
 | 138 | 	ver = m->mpc_apicver; | 
 | 139 |  | 
 | 140 | 	physid_set(m->mpc_apicid, phys_cpu_present_map); | 
 | 141 | 	/* | 
 | 142 | 	 * Validate version | 
 | 143 | 	 */ | 
 | 144 | 	if (ver == 0x0) { | 
 | 145 | 		printk(KERN_ERR "BIOS bug, APIC version is 0 for CPU#%d! fixing up to 0x10. (tell your hw vendor)\n", m->mpc_apicid); | 
 | 146 | 		ver = 0x10; | 
 | 147 | 	} | 
 | 148 | 	apic_version[m->mpc_apicid] = ver; | 
| Andi Kleen | 18a2b64 | 2005-05-16 21:53:35 -0700 | [diff] [blame] | 149 |  	if (m->mpc_cpuflag & CPU_BOOTPROCESSOR) { | 
 | 150 |  		/* | 
 | 151 |  		 * bios_cpu_apicid is required to have processors listed | 
 | 152 |  		 * in same order as logical cpu numbers. Hence the first | 
 | 153 |  		 * entry is BSP, and so on. | 
 | 154 |  		 */ | 
| Andi Kleen | 61b1b2d | 2005-07-28 21:15:27 -0700 | [diff] [blame] | 155 | 		cpu = 0; | 
 | 156 |  | 
| Andi Kleen | 18a2b64 | 2005-05-16 21:53:35 -0700 | [diff] [blame] | 157 |  		bios_cpu_apicid[0] = m->mpc_apicid; | 
 | 158 |  		x86_cpu_to_apicid[0] = m->mpc_apicid; | 
 | 159 |  		found_bsp = 1; | 
| Andi Kleen | 61b1b2d | 2005-07-28 21:15:27 -0700 | [diff] [blame] | 160 |  	} else | 
 | 161 | 		cpu = num_processors - found_bsp; | 
 | 162 | 	bios_cpu_apicid[cpu] = m->mpc_apicid; | 
 | 163 | 	x86_cpu_to_apicid[cpu] = m->mpc_apicid; | 
 | 164 |  | 
 | 165 | 	cpu_set(cpu, cpu_possible_map); | 
 | 166 | 	cpu_set(cpu, cpu_present_map); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | } | 
 | 168 |  | 
 | 169 | static void __init MP_bus_info (struct mpc_config_bus *m) | 
 | 170 | { | 
 | 171 | 	char str[7]; | 
 | 172 |  | 
 | 173 | 	memcpy(str, m->mpc_bustype, 6); | 
 | 174 | 	str[6] = 0; | 
 | 175 | 	Dprintk("Bus #%d is %s\n", m->mpc_busid, str); | 
 | 176 |  | 
 | 177 | 	if (strncmp(str, "ISA", 3) == 0) { | 
 | 178 | 		mp_bus_id_to_type[m->mpc_busid] = MP_BUS_ISA; | 
 | 179 | 	} else if (strncmp(str, "EISA", 4) == 0) { | 
 | 180 | 		mp_bus_id_to_type[m->mpc_busid] = MP_BUS_EISA; | 
 | 181 | 	} else if (strncmp(str, "PCI", 3) == 0) { | 
 | 182 | 		mp_bus_id_to_type[m->mpc_busid] = MP_BUS_PCI; | 
 | 183 | 		mp_bus_id_to_pci_bus[m->mpc_busid] = mp_current_pci_id; | 
 | 184 | 		mp_current_pci_id++; | 
 | 185 | 	} else if (strncmp(str, "MCA", 3) == 0) { | 
 | 186 | 		mp_bus_id_to_type[m->mpc_busid] = MP_BUS_MCA; | 
 | 187 | 	} else { | 
 | 188 | 		printk(KERN_ERR "Unknown bustype %s\n", str); | 
 | 189 | 	} | 
 | 190 | } | 
 | 191 |  | 
 | 192 | static void __init MP_ioapic_info (struct mpc_config_ioapic *m) | 
 | 193 | { | 
 | 194 | 	if (!(m->mpc_flags & MPC_APIC_USABLE)) | 
 | 195 | 		return; | 
 | 196 |  | 
 | 197 | 	printk("I/O APIC #%d Version %d at 0x%X.\n", | 
 | 198 | 		m->mpc_apicid, m->mpc_apicver, m->mpc_apicaddr); | 
 | 199 | 	if (nr_ioapics >= MAX_IO_APICS) { | 
 | 200 | 		printk(KERN_ERR "Max # of I/O APICs (%d) exceeded (found %d).\n", | 
 | 201 | 			MAX_IO_APICS, nr_ioapics); | 
 | 202 | 		panic("Recompile kernel with bigger MAX_IO_APICS!.\n"); | 
 | 203 | 	} | 
 | 204 | 	if (!m->mpc_apicaddr) { | 
 | 205 | 		printk(KERN_ERR "WARNING: bogus zero I/O APIC address" | 
 | 206 | 			" found in MP table, skipping!\n"); | 
 | 207 | 		return; | 
 | 208 | 	} | 
 | 209 | 	mp_ioapics[nr_ioapics] = *m; | 
 | 210 | 	nr_ioapics++; | 
 | 211 | } | 
 | 212 |  | 
 | 213 | static void __init MP_intsrc_info (struct mpc_config_intsrc *m) | 
 | 214 | { | 
 | 215 | 	mp_irqs [mp_irq_entries] = *m; | 
 | 216 | 	Dprintk("Int: type %d, pol %d, trig %d, bus %d," | 
 | 217 | 		" IRQ %02x, APIC ID %x, APIC INT %02x\n", | 
 | 218 | 			m->mpc_irqtype, m->mpc_irqflag & 3, | 
 | 219 | 			(m->mpc_irqflag >> 2) & 3, m->mpc_srcbus, | 
 | 220 | 			m->mpc_srcbusirq, m->mpc_dstapic, m->mpc_dstirq); | 
 | 221 | 	if (++mp_irq_entries == MAX_IRQ_SOURCES) | 
 | 222 | 		panic("Max # of irq sources exceeded!!\n"); | 
 | 223 | } | 
 | 224 |  | 
 | 225 | static void __init MP_lintsrc_info (struct mpc_config_lintsrc *m) | 
 | 226 | { | 
 | 227 | 	Dprintk("Lint: type %d, pol %d, trig %d, bus %d," | 
 | 228 | 		" IRQ %02x, APIC ID %x, APIC LINT %02x\n", | 
 | 229 | 			m->mpc_irqtype, m->mpc_irqflag & 3, | 
 | 230 | 			(m->mpc_irqflag >> 2) &3, m->mpc_srcbusid, | 
 | 231 | 			m->mpc_srcbusirq, m->mpc_destapic, m->mpc_destapiclint); | 
 | 232 | 	/* | 
 | 233 | 	 * Well it seems all SMP boards in existence | 
 | 234 | 	 * use ExtINT/LVT1 == LINT0 and | 
 | 235 | 	 * NMI/LVT2 == LINT1 - the following check | 
 | 236 | 	 * will show us if this assumptions is false. | 
 | 237 | 	 * Until then we do not have to add baggage. | 
 | 238 | 	 */ | 
 | 239 | 	if ((m->mpc_irqtype == mp_ExtINT) && | 
 | 240 | 		(m->mpc_destapiclint != 0)) | 
 | 241 | 			BUG(); | 
 | 242 | 	if ((m->mpc_irqtype == mp_NMI) && | 
 | 243 | 		(m->mpc_destapiclint != 1)) | 
 | 244 | 			BUG(); | 
 | 245 | } | 
 | 246 |  | 
 | 247 | /* | 
 | 248 |  * Read/parse the MPC | 
 | 249 |  */ | 
 | 250 |  | 
 | 251 | static int __init smp_read_mpc(struct mp_config_table *mpc) | 
 | 252 | { | 
 | 253 | 	char str[16]; | 
 | 254 | 	int count=sizeof(*mpc); | 
 | 255 | 	unsigned char *mpt=((unsigned char *)mpc)+count; | 
 | 256 |  | 
 | 257 | 	if (memcmp(mpc->mpc_signature,MPC_SIGNATURE,4)) { | 
 | 258 | 		printk("SMP mptable: bad signature [%c%c%c%c]!\n", | 
 | 259 | 			mpc->mpc_signature[0], | 
 | 260 | 			mpc->mpc_signature[1], | 
 | 261 | 			mpc->mpc_signature[2], | 
 | 262 | 			mpc->mpc_signature[3]); | 
 | 263 | 		return 0; | 
 | 264 | 	} | 
 | 265 | 	if (mpf_checksum((unsigned char *)mpc,mpc->mpc_length)) { | 
 | 266 | 		printk("SMP mptable: checksum error!\n"); | 
 | 267 | 		return 0; | 
 | 268 | 	} | 
 | 269 | 	if (mpc->mpc_spec!=0x01 && mpc->mpc_spec!=0x04) { | 
 | 270 | 		printk(KERN_ERR "SMP mptable: bad table version (%d)!!\n", | 
 | 271 | 			mpc->mpc_spec); | 
 | 272 | 		return 0; | 
 | 273 | 	} | 
 | 274 | 	if (!mpc->mpc_lapic) { | 
 | 275 | 		printk(KERN_ERR "SMP mptable: null local APIC address!\n"); | 
 | 276 | 		return 0; | 
 | 277 | 	} | 
 | 278 | 	memcpy(str,mpc->mpc_oem,8); | 
 | 279 | 	str[8]=0; | 
 | 280 | 	printk(KERN_INFO "OEM ID: %s ",str); | 
 | 281 |  | 
 | 282 | 	memcpy(str,mpc->mpc_productid,12); | 
 | 283 | 	str[12]=0; | 
 | 284 | 	printk(KERN_INFO "Product ID: %s ",str); | 
 | 285 |  | 
 | 286 | 	printk(KERN_INFO "APIC at: 0x%X\n",mpc->mpc_lapic); | 
 | 287 |  | 
 | 288 | 	/* save the local APIC address, it might be non-default */ | 
 | 289 | 	if (!acpi_lapic) | 
 | 290 | 	mp_lapic_addr = mpc->mpc_lapic; | 
 | 291 |  | 
 | 292 | 	/* | 
 | 293 | 	 *	Now process the configuration blocks. | 
 | 294 | 	 */ | 
 | 295 | 	while (count < mpc->mpc_length) { | 
 | 296 | 		switch(*mpt) { | 
 | 297 | 			case MP_PROCESSOR: | 
 | 298 | 			{ | 
 | 299 | 				struct mpc_config_processor *m= | 
 | 300 | 					(struct mpc_config_processor *)mpt; | 
 | 301 | 				if (!acpi_lapic) | 
 | 302 | 				MP_processor_info(m); | 
 | 303 | 				mpt += sizeof(*m); | 
 | 304 | 				count += sizeof(*m); | 
 | 305 | 				break; | 
 | 306 | 			} | 
 | 307 | 			case MP_BUS: | 
 | 308 | 			{ | 
 | 309 | 				struct mpc_config_bus *m= | 
 | 310 | 					(struct mpc_config_bus *)mpt; | 
 | 311 | 				MP_bus_info(m); | 
 | 312 | 				mpt += sizeof(*m); | 
 | 313 | 				count += sizeof(*m); | 
 | 314 | 				break; | 
 | 315 | 			} | 
 | 316 | 			case MP_IOAPIC: | 
 | 317 | 			{ | 
 | 318 | 				struct mpc_config_ioapic *m= | 
 | 319 | 					(struct mpc_config_ioapic *)mpt; | 
 | 320 | 				MP_ioapic_info(m); | 
 | 321 | 				mpt+=sizeof(*m); | 
 | 322 | 				count+=sizeof(*m); | 
 | 323 | 				break; | 
 | 324 | 			} | 
 | 325 | 			case MP_INTSRC: | 
 | 326 | 			{ | 
 | 327 | 				struct mpc_config_intsrc *m= | 
 | 328 | 					(struct mpc_config_intsrc *)mpt; | 
 | 329 |  | 
 | 330 | 				MP_intsrc_info(m); | 
 | 331 | 				mpt+=sizeof(*m); | 
 | 332 | 				count+=sizeof(*m); | 
 | 333 | 				break; | 
 | 334 | 			} | 
 | 335 | 			case MP_LINTSRC: | 
 | 336 | 			{ | 
 | 337 | 				struct mpc_config_lintsrc *m= | 
 | 338 | 					(struct mpc_config_lintsrc *)mpt; | 
 | 339 | 				MP_lintsrc_info(m); | 
 | 340 | 				mpt+=sizeof(*m); | 
 | 341 | 				count+=sizeof(*m); | 
 | 342 | 				break; | 
 | 343 | 			} | 
 | 344 | 		} | 
 | 345 | 	} | 
 | 346 | 	clustered_apic_check(); | 
 | 347 | 	if (!num_processors) | 
 | 348 | 		printk(KERN_ERR "SMP mptable: no processors registered!\n"); | 
 | 349 | 	return num_processors; | 
 | 350 | } | 
 | 351 |  | 
 | 352 | static int __init ELCR_trigger(unsigned int irq) | 
 | 353 | { | 
 | 354 | 	unsigned int port; | 
 | 355 |  | 
 | 356 | 	port = 0x4d0 + (irq >> 3); | 
 | 357 | 	return (inb(port) >> (irq & 7)) & 1; | 
 | 358 | } | 
 | 359 |  | 
 | 360 | static void __init construct_default_ioirq_mptable(int mpc_default_type) | 
 | 361 | { | 
 | 362 | 	struct mpc_config_intsrc intsrc; | 
 | 363 | 	int i; | 
 | 364 | 	int ELCR_fallback = 0; | 
 | 365 |  | 
 | 366 | 	intsrc.mpc_type = MP_INTSRC; | 
 | 367 | 	intsrc.mpc_irqflag = 0;			/* conforming */ | 
 | 368 | 	intsrc.mpc_srcbus = 0; | 
 | 369 | 	intsrc.mpc_dstapic = mp_ioapics[0].mpc_apicid; | 
 | 370 |  | 
 | 371 | 	intsrc.mpc_irqtype = mp_INT; | 
 | 372 |  | 
 | 373 | 	/* | 
 | 374 | 	 *  If true, we have an ISA/PCI system with no IRQ entries | 
 | 375 | 	 *  in the MP table. To prevent the PCI interrupts from being set up | 
 | 376 | 	 *  incorrectly, we try to use the ELCR. The sanity check to see if | 
 | 377 | 	 *  there is good ELCR data is very simple - IRQ0, 1, 2 and 13 can | 
 | 378 | 	 *  never be level sensitive, so we simply see if the ELCR agrees. | 
 | 379 | 	 *  If it does, we assume it's valid. | 
 | 380 | 	 */ | 
 | 381 | 	if (mpc_default_type == 5) { | 
 | 382 | 		printk(KERN_INFO "ISA/PCI bus type with no IRQ information... falling back to ELCR\n"); | 
 | 383 |  | 
 | 384 | 		if (ELCR_trigger(0) || ELCR_trigger(1) || ELCR_trigger(2) || ELCR_trigger(13)) | 
 | 385 | 			printk(KERN_ERR "ELCR contains invalid data... not using ELCR\n"); | 
 | 386 | 		else { | 
 | 387 | 			printk(KERN_INFO "Using ELCR to identify PCI interrupts\n"); | 
 | 388 | 			ELCR_fallback = 1; | 
 | 389 | 		} | 
 | 390 | 	} | 
 | 391 |  | 
 | 392 | 	for (i = 0; i < 16; i++) { | 
 | 393 | 		switch (mpc_default_type) { | 
 | 394 | 		case 2: | 
 | 395 | 			if (i == 0 || i == 13) | 
 | 396 | 				continue;	/* IRQ0 & IRQ13 not connected */ | 
 | 397 | 			/* fall through */ | 
 | 398 | 		default: | 
 | 399 | 			if (i == 2) | 
 | 400 | 				continue;	/* IRQ2 is never connected */ | 
 | 401 | 		} | 
 | 402 |  | 
 | 403 | 		if (ELCR_fallback) { | 
 | 404 | 			/* | 
 | 405 | 			 *  If the ELCR indicates a level-sensitive interrupt, we | 
 | 406 | 			 *  copy that information over to the MP table in the | 
 | 407 | 			 *  irqflag field (level sensitive, active high polarity). | 
 | 408 | 			 */ | 
 | 409 | 			if (ELCR_trigger(i)) | 
 | 410 | 				intsrc.mpc_irqflag = 13; | 
 | 411 | 			else | 
 | 412 | 				intsrc.mpc_irqflag = 0; | 
 | 413 | 		} | 
 | 414 |  | 
 | 415 | 		intsrc.mpc_srcbusirq = i; | 
 | 416 | 		intsrc.mpc_dstirq = i ? i : 2;		/* IRQ0 to INTIN2 */ | 
 | 417 | 		MP_intsrc_info(&intsrc); | 
 | 418 | 	} | 
 | 419 |  | 
 | 420 | 	intsrc.mpc_irqtype = mp_ExtINT; | 
 | 421 | 	intsrc.mpc_srcbusirq = 0; | 
 | 422 | 	intsrc.mpc_dstirq = 0;				/* 8259A to INTIN0 */ | 
 | 423 | 	MP_intsrc_info(&intsrc); | 
 | 424 | } | 
 | 425 |  | 
 | 426 | static inline void __init construct_default_ISA_mptable(int mpc_default_type) | 
 | 427 | { | 
 | 428 | 	struct mpc_config_processor processor; | 
 | 429 | 	struct mpc_config_bus bus; | 
 | 430 | 	struct mpc_config_ioapic ioapic; | 
 | 431 | 	struct mpc_config_lintsrc lintsrc; | 
 | 432 | 	int linttypes[2] = { mp_ExtINT, mp_NMI }; | 
 | 433 | 	int i; | 
 | 434 |  | 
 | 435 | 	/* | 
 | 436 | 	 * local APIC has default address | 
 | 437 | 	 */ | 
 | 438 | 	mp_lapic_addr = APIC_DEFAULT_PHYS_BASE; | 
 | 439 |  | 
 | 440 | 	/* | 
 | 441 | 	 * 2 CPUs, numbered 0 & 1. | 
 | 442 | 	 */ | 
 | 443 | 	processor.mpc_type = MP_PROCESSOR; | 
 | 444 | 	/* Either an integrated APIC or a discrete 82489DX. */ | 
 | 445 | 	processor.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01; | 
 | 446 | 	processor.mpc_cpuflag = CPU_ENABLED; | 
 | 447 | 	processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) | | 
 | 448 | 				   (boot_cpu_data.x86_model << 4) | | 
 | 449 | 				   boot_cpu_data.x86_mask; | 
 | 450 | 	processor.mpc_featureflag = boot_cpu_data.x86_capability[0]; | 
 | 451 | 	processor.mpc_reserved[0] = 0; | 
 | 452 | 	processor.mpc_reserved[1] = 0; | 
 | 453 | 	for (i = 0; i < 2; i++) { | 
 | 454 | 		processor.mpc_apicid = i; | 
 | 455 | 		MP_processor_info(&processor); | 
 | 456 | 	} | 
 | 457 |  | 
 | 458 | 	bus.mpc_type = MP_BUS; | 
 | 459 | 	bus.mpc_busid = 0; | 
 | 460 | 	switch (mpc_default_type) { | 
 | 461 | 		default: | 
 | 462 | 			printk(KERN_ERR "???\nUnknown standard configuration %d\n", | 
 | 463 | 				mpc_default_type); | 
 | 464 | 			/* fall through */ | 
 | 465 | 		case 1: | 
 | 466 | 		case 5: | 
 | 467 | 			memcpy(bus.mpc_bustype, "ISA   ", 6); | 
 | 468 | 			break; | 
 | 469 | 		case 2: | 
 | 470 | 		case 6: | 
 | 471 | 		case 3: | 
 | 472 | 			memcpy(bus.mpc_bustype, "EISA  ", 6); | 
 | 473 | 			break; | 
 | 474 | 		case 4: | 
 | 475 | 		case 7: | 
 | 476 | 			memcpy(bus.mpc_bustype, "MCA   ", 6); | 
 | 477 | 	} | 
 | 478 | 	MP_bus_info(&bus); | 
 | 479 | 	if (mpc_default_type > 4) { | 
 | 480 | 		bus.mpc_busid = 1; | 
 | 481 | 		memcpy(bus.mpc_bustype, "PCI   ", 6); | 
 | 482 | 		MP_bus_info(&bus); | 
 | 483 | 	} | 
 | 484 |  | 
 | 485 | 	ioapic.mpc_type = MP_IOAPIC; | 
 | 486 | 	ioapic.mpc_apicid = 2; | 
 | 487 | 	ioapic.mpc_apicver = mpc_default_type > 4 ? 0x10 : 0x01; | 
 | 488 | 	ioapic.mpc_flags = MPC_APIC_USABLE; | 
 | 489 | 	ioapic.mpc_apicaddr = 0xFEC00000; | 
 | 490 | 	MP_ioapic_info(&ioapic); | 
 | 491 |  | 
 | 492 | 	/* | 
 | 493 | 	 * We set up most of the low 16 IO-APIC pins according to MPS rules. | 
 | 494 | 	 */ | 
 | 495 | 	construct_default_ioirq_mptable(mpc_default_type); | 
 | 496 |  | 
 | 497 | 	lintsrc.mpc_type = MP_LINTSRC; | 
 | 498 | 	lintsrc.mpc_irqflag = 0;		/* conforming */ | 
 | 499 | 	lintsrc.mpc_srcbusid = 0; | 
 | 500 | 	lintsrc.mpc_srcbusirq = 0; | 
 | 501 | 	lintsrc.mpc_destapic = MP_APIC_ALL; | 
 | 502 | 	for (i = 0; i < 2; i++) { | 
 | 503 | 		lintsrc.mpc_irqtype = linttypes[i]; | 
 | 504 | 		lintsrc.mpc_destapiclint = i; | 
 | 505 | 		MP_lintsrc_info(&lintsrc); | 
 | 506 | 	} | 
 | 507 | } | 
 | 508 |  | 
 | 509 | static struct intel_mp_floating *mpf_found; | 
 | 510 |  | 
 | 511 | /* | 
 | 512 |  * Scan the memory blocks for an SMP configuration block. | 
 | 513 |  */ | 
 | 514 | void __init get_smp_config (void) | 
 | 515 | { | 
 | 516 | 	struct intel_mp_floating *mpf = mpf_found; | 
 | 517 |  | 
 | 518 | 	/* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 519 |  	 * ACPI supports both logical (e.g. Hyper-Threading) and physical  | 
 | 520 |  	 * processors, where MPS only supports physical. | 
 | 521 |  	 */ | 
 | 522 |  	if (acpi_lapic && acpi_ioapic) { | 
 | 523 |  		printk(KERN_INFO "Using ACPI (MADT) for SMP configuration information\n"); | 
 | 524 |  		return; | 
 | 525 | 	} | 
 | 526 |  	else if (acpi_lapic) | 
 | 527 |  		printk(KERN_INFO "Using ACPI for processor (LAPIC) configuration information\n"); | 
 | 528 |  | 
 | 529 | 	printk("Intel MultiProcessor Specification v1.%d\n", mpf->mpf_specification); | 
 | 530 | 	if (mpf->mpf_feature2 & (1<<7)) { | 
 | 531 | 		printk(KERN_INFO "    IMCR and PIC compatibility mode.\n"); | 
 | 532 | 		pic_mode = 1; | 
 | 533 | 	} else { | 
 | 534 | 		printk(KERN_INFO "    Virtual Wire compatibility mode.\n"); | 
 | 535 | 		pic_mode = 0; | 
 | 536 | 	} | 
 | 537 |  | 
 | 538 | 	/* | 
 | 539 | 	 * Now see if we need to read further. | 
 | 540 | 	 */ | 
 | 541 | 	if (mpf->mpf_feature1 != 0) { | 
 | 542 |  | 
 | 543 | 		printk(KERN_INFO "Default MP configuration #%d\n", mpf->mpf_feature1); | 
 | 544 | 		construct_default_ISA_mptable(mpf->mpf_feature1); | 
 | 545 |  | 
 | 546 | 	} else if (mpf->mpf_physptr) { | 
 | 547 |  | 
 | 548 | 		/* | 
 | 549 | 		 * Read the physical hardware table.  Anything here will | 
 | 550 | 		 * override the defaults. | 
 | 551 | 		 */ | 
 | 552 | 		if (!smp_read_mpc((void *)(unsigned long)mpf->mpf_physptr)) { | 
 | 553 | 			smp_found_config = 0; | 
 | 554 | 			printk(KERN_ERR "BIOS bug, MP table errors detected!...\n"); | 
 | 555 | 			printk(KERN_ERR "... disabling SMP support. (tell your hw vendor)\n"); | 
 | 556 | 			return; | 
 | 557 | 		} | 
 | 558 | 		/* | 
 | 559 | 		 * If there are no explicit MP IRQ entries, then we are | 
 | 560 | 		 * broken.  We set up most of the low 16 IO-APIC pins to | 
 | 561 | 		 * ISA defaults and hope it will work. | 
 | 562 | 		 */ | 
 | 563 | 		if (!mp_irq_entries) { | 
 | 564 | 			struct mpc_config_bus bus; | 
 | 565 |  | 
 | 566 | 			printk(KERN_ERR "BIOS bug, no explicit IRQ entries, using default mptable. (tell your hw vendor)\n"); | 
 | 567 |  | 
 | 568 | 			bus.mpc_type = MP_BUS; | 
 | 569 | 			bus.mpc_busid = 0; | 
 | 570 | 			memcpy(bus.mpc_bustype, "ISA   ", 6); | 
 | 571 | 			MP_bus_info(&bus); | 
 | 572 |  | 
 | 573 | 			construct_default_ioirq_mptable(0); | 
 | 574 | 		} | 
 | 575 |  | 
 | 576 | 	} else | 
 | 577 | 		BUG(); | 
 | 578 |  | 
 | 579 | 	printk(KERN_INFO "Processors: %d\n", num_processors); | 
 | 580 | 	/* | 
 | 581 | 	 * Only use the first configuration found. | 
 | 582 | 	 */ | 
 | 583 | } | 
 | 584 |  | 
 | 585 | static int __init smp_scan_config (unsigned long base, unsigned long length) | 
 | 586 | { | 
 | 587 | 	extern void __bad_mpf_size(void);  | 
 | 588 | 	unsigned int *bp = phys_to_virt(base); | 
 | 589 | 	struct intel_mp_floating *mpf; | 
 | 590 |  | 
 | 591 | 	Dprintk("Scan SMP from %p for %ld bytes.\n", bp,length); | 
 | 592 | 	if (sizeof(*mpf) != 16) | 
 | 593 | 		__bad_mpf_size(); | 
 | 594 |  | 
 | 595 | 	while (length > 0) { | 
 | 596 | 		mpf = (struct intel_mp_floating *)bp; | 
 | 597 | 		if ((*bp == SMP_MAGIC_IDENT) && | 
 | 598 | 			(mpf->mpf_length == 1) && | 
 | 599 | 			!mpf_checksum((unsigned char *)bp, 16) && | 
 | 600 | 			((mpf->mpf_specification == 1) | 
 | 601 | 				|| (mpf->mpf_specification == 4)) ) { | 
 | 602 |  | 
 | 603 | 			smp_found_config = 1; | 
 | 604 | 			reserve_bootmem_generic(virt_to_phys(mpf), PAGE_SIZE); | 
 | 605 | 			if (mpf->mpf_physptr) | 
 | 606 | 				reserve_bootmem_generic(mpf->mpf_physptr, PAGE_SIZE); | 
 | 607 | 			mpf_found = mpf; | 
 | 608 | 			return 1; | 
 | 609 | 		} | 
 | 610 | 		bp += 4; | 
 | 611 | 		length -= 16; | 
 | 612 | 	} | 
 | 613 | 	return 0; | 
 | 614 | } | 
 | 615 |  | 
 | 616 | void __init find_intel_smp (void) | 
 | 617 | { | 
 | 618 | 	unsigned int address; | 
 | 619 |  | 
 | 620 | 	/* | 
 | 621 | 	 * FIXME: Linux assumes you have 640K of base ram.. | 
 | 622 | 	 * this continues the error... | 
 | 623 | 	 * | 
 | 624 | 	 * 1) Scan the bottom 1K for a signature | 
 | 625 | 	 * 2) Scan the top 1K of base RAM | 
 | 626 | 	 * 3) Scan the 64K of bios | 
 | 627 | 	 */ | 
 | 628 | 	if (smp_scan_config(0x0,0x400) || | 
 | 629 | 		smp_scan_config(639*0x400,0x400) || | 
 | 630 | 			smp_scan_config(0xF0000,0x10000)) | 
 | 631 | 		return; | 
 | 632 | 	/* | 
 | 633 | 	 * If it is an SMP machine we should know now, unless the | 
 | 634 | 	 * configuration is in an EISA/MCA bus machine with an | 
 | 635 | 	 * extended bios data area. | 
 | 636 | 	 * | 
 | 637 | 	 * there is a real-mode segmented pointer pointing to the | 
 | 638 | 	 * 4K EBDA area at 0x40E, calculate and scan it here. | 
 | 639 | 	 * | 
 | 640 | 	 * NOTE! There are Linux loaders that will corrupt the EBDA | 
 | 641 | 	 * area, and as such this kind of SMP config may be less | 
 | 642 | 	 * trustworthy, simply because the SMP table may have been | 
 | 643 | 	 * stomped on during early boot. These loaders are buggy and | 
 | 644 | 	 * should be fixed. | 
 | 645 | 	 */ | 
 | 646 |  | 
 | 647 | 	address = *(unsigned short *)phys_to_virt(0x40E); | 
 | 648 | 	address <<= 4; | 
 | 649 | 	if (smp_scan_config(address, 0x1000)) | 
 | 650 | 		return; | 
 | 651 |  | 
 | 652 | 	/* If we have come this far, we did not find an MP table  */ | 
 | 653 | 	 printk(KERN_INFO "No mptable found.\n"); | 
 | 654 | } | 
 | 655 |  | 
 | 656 | /* | 
 | 657 |  * - Intel MP Configuration Table | 
 | 658 |  */ | 
 | 659 | void __init find_smp_config (void) | 
 | 660 | { | 
 | 661 | #ifdef CONFIG_X86_LOCAL_APIC | 
 | 662 | 	find_intel_smp(); | 
 | 663 | #endif | 
 | 664 | } | 
 | 665 |  | 
 | 666 |  | 
 | 667 | /* -------------------------------------------------------------------------- | 
 | 668 |                             ACPI-based MP Configuration | 
 | 669 |    -------------------------------------------------------------------------- */ | 
 | 670 |  | 
| Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 671 | #ifdef CONFIG_ACPI | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 |  | 
 | 673 | void __init mp_register_lapic_address ( | 
 | 674 | 	u64			address) | 
 | 675 | { | 
 | 676 | 	mp_lapic_addr = (unsigned long) address; | 
 | 677 |  | 
 | 678 | 	set_fixmap_nocache(FIX_APIC_BASE, mp_lapic_addr); | 
 | 679 |  | 
 | 680 | 	if (boot_cpu_id == -1U) | 
 | 681 | 		boot_cpu_id = GET_APIC_ID(apic_read(APIC_ID)); | 
 | 682 |  | 
 | 683 | 	Dprintk("Boot CPU = %d\n", boot_cpu_physical_apicid); | 
 | 684 | } | 
 | 685 |  | 
 | 686 |  | 
 | 687 | void __init mp_register_lapic ( | 
 | 688 | 	u8			id,  | 
 | 689 | 	u8			enabled) | 
 | 690 | { | 
 | 691 | 	struct mpc_config_processor processor; | 
 | 692 | 	int			boot_cpu = 0; | 
 | 693 | 	 | 
 | 694 | 	if (id >= MAX_APICS) { | 
 | 695 | 		printk(KERN_WARNING "Processor #%d invalid (max %d)\n", | 
 | 696 | 			id, MAX_APICS); | 
 | 697 | 		return; | 
 | 698 | 	} | 
 | 699 |  | 
 | 700 | 	if (id == boot_cpu_physical_apicid) | 
 | 701 | 		boot_cpu = 1; | 
 | 702 |  | 
 | 703 | 	processor.mpc_type = MP_PROCESSOR; | 
 | 704 | 	processor.mpc_apicid = id; | 
| Andi Kleen | 8675b1a | 2005-09-12 18:49:24 +0200 | [diff] [blame] | 705 | 	processor.mpc_apicver = GET_APIC_VERSION(apic_read(APIC_LVR)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | 	processor.mpc_cpuflag = (enabled ? CPU_ENABLED : 0); | 
 | 707 | 	processor.mpc_cpuflag |= (boot_cpu ? CPU_BOOTPROCESSOR : 0); | 
 | 708 | 	processor.mpc_cpufeature = (boot_cpu_data.x86 << 8) |  | 
 | 709 | 		(boot_cpu_data.x86_model << 4) | boot_cpu_data.x86_mask; | 
 | 710 | 	processor.mpc_featureflag = boot_cpu_data.x86_capability[0]; | 
 | 711 | 	processor.mpc_reserved[0] = 0; | 
 | 712 | 	processor.mpc_reserved[1] = 0; | 
 | 713 |  | 
 | 714 | 	MP_processor_info(&processor); | 
 | 715 | } | 
 | 716 |  | 
 | 717 | #ifdef CONFIG_X86_IO_APIC | 
 | 718 |  | 
 | 719 | #define MP_ISA_BUS		0 | 
 | 720 | #define MP_MAX_IOAPIC_PIN	127 | 
 | 721 |  | 
 | 722 | static struct mp_ioapic_routing { | 
 | 723 | 	int			apic_id; | 
 | 724 | 	int			gsi_start; | 
 | 725 | 	int			gsi_end; | 
 | 726 | 	u32			pin_programmed[4]; | 
 | 727 | } mp_ioapic_routing[MAX_IO_APICS]; | 
 | 728 |  | 
 | 729 |  | 
 | 730 | static int mp_find_ioapic ( | 
 | 731 | 	int			gsi) | 
 | 732 | { | 
 | 733 | 	int			i = 0; | 
 | 734 |  | 
 | 735 | 	/* Find the IOAPIC that manages this GSI. */ | 
 | 736 | 	for (i = 0; i < nr_ioapics; i++) { | 
 | 737 | 		if ((gsi >= mp_ioapic_routing[i].gsi_start) | 
 | 738 | 			&& (gsi <= mp_ioapic_routing[i].gsi_end)) | 
 | 739 | 			return i; | 
 | 740 | 	} | 
 | 741 |  | 
 | 742 | 	printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi); | 
 | 743 |  | 
 | 744 | 	return -1; | 
 | 745 | } | 
 | 746 | 	 | 
 | 747 |  | 
 | 748 | void __init mp_register_ioapic ( | 
 | 749 | 	u8			id,  | 
 | 750 | 	u32			address, | 
 | 751 | 	u32			gsi_base) | 
 | 752 | { | 
 | 753 | 	int			idx = 0; | 
 | 754 |  | 
 | 755 | 	if (nr_ioapics >= MAX_IO_APICS) { | 
 | 756 | 		printk(KERN_ERR "ERROR: Max # of I/O APICs (%d) exceeded " | 
 | 757 | 			"(found %d)\n", MAX_IO_APICS, nr_ioapics); | 
 | 758 | 		panic("Recompile kernel with bigger MAX_IO_APICS!\n"); | 
 | 759 | 	} | 
 | 760 | 	if (!address) { | 
 | 761 | 		printk(KERN_ERR "WARNING: Bogus (zero) I/O APIC address" | 
 | 762 | 			" found in MADT table, skipping!\n"); | 
 | 763 | 		return; | 
 | 764 | 	} | 
 | 765 |  | 
 | 766 | 	idx = nr_ioapics++; | 
 | 767 |  | 
 | 768 | 	mp_ioapics[idx].mpc_type = MP_IOAPIC; | 
 | 769 | 	mp_ioapics[idx].mpc_flags = MPC_APIC_USABLE; | 
 | 770 | 	mp_ioapics[idx].mpc_apicaddr = address; | 
 | 771 |  | 
 | 772 | 	set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address); | 
| Andi Kleen | 0af2be0 | 2005-05-16 21:53:27 -0700 | [diff] [blame] | 773 | 	mp_ioapics[idx].mpc_apicid = id; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 774 | 	mp_ioapics[idx].mpc_apicver = io_apic_get_version(idx); | 
 | 775 | 	 | 
 | 776 | 	/*  | 
 | 777 | 	 * Build basic IRQ lookup table to facilitate gsi->io_apic lookups | 
 | 778 | 	 * and to prevent reprogramming of IOAPIC pins (PCI IRQs). | 
 | 779 | 	 */ | 
 | 780 | 	mp_ioapic_routing[idx].apic_id = mp_ioapics[idx].mpc_apicid; | 
 | 781 | 	mp_ioapic_routing[idx].gsi_start = gsi_base; | 
 | 782 | 	mp_ioapic_routing[idx].gsi_end = gsi_base +  | 
 | 783 | 		io_apic_get_redir_entries(idx); | 
 | 784 |  | 
 | 785 | 	printk(KERN_INFO "IOAPIC[%d]: apic_id %d, version %d, address 0x%x, " | 
 | 786 | 		"GSI %d-%d\n", idx, mp_ioapics[idx].mpc_apicid,  | 
 | 787 | 		mp_ioapics[idx].mpc_apicver, mp_ioapics[idx].mpc_apicaddr, | 
 | 788 | 		mp_ioapic_routing[idx].gsi_start, | 
 | 789 | 		mp_ioapic_routing[idx].gsi_end); | 
 | 790 |  | 
 | 791 | 	return; | 
 | 792 | } | 
 | 793 |  | 
 | 794 |  | 
 | 795 | void __init mp_override_legacy_irq ( | 
 | 796 | 	u8			bus_irq, | 
 | 797 | 	u8			polarity,  | 
 | 798 | 	u8			trigger,  | 
 | 799 | 	u32			gsi) | 
 | 800 | { | 
 | 801 | 	struct mpc_config_intsrc intsrc; | 
 | 802 | 	int			ioapic = -1; | 
 | 803 | 	int			pin = -1; | 
 | 804 |  | 
 | 805 | 	/*  | 
 | 806 | 	 * Convert 'gsi' to 'ioapic.pin'. | 
 | 807 | 	 */ | 
 | 808 | 	ioapic = mp_find_ioapic(gsi); | 
 | 809 | 	if (ioapic < 0) | 
 | 810 | 		return; | 
 | 811 | 	pin = gsi - mp_ioapic_routing[ioapic].gsi_start; | 
 | 812 |  | 
 | 813 | 	/* | 
 | 814 | 	 * TBD: This check is for faulty timer entries, where the override | 
 | 815 | 	 *      erroneously sets the trigger to level, resulting in a HUGE  | 
 | 816 | 	 *      increase of timer interrupts! | 
 | 817 | 	 */ | 
 | 818 | 	if ((bus_irq == 0) && (trigger == 3)) | 
 | 819 | 		trigger = 1; | 
 | 820 |  | 
 | 821 | 	intsrc.mpc_type = MP_INTSRC; | 
 | 822 | 	intsrc.mpc_irqtype = mp_INT; | 
 | 823 | 	intsrc.mpc_irqflag = (trigger << 2) | polarity; | 
 | 824 | 	intsrc.mpc_srcbus = MP_ISA_BUS; | 
 | 825 | 	intsrc.mpc_srcbusirq = bus_irq;				       /* IRQ */ | 
 | 826 | 	intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid;	   /* APIC ID */ | 
 | 827 | 	intsrc.mpc_dstirq = pin;				    /* INTIN# */ | 
 | 828 |  | 
 | 829 | 	Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, %d-%d\n",  | 
 | 830 | 		intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,  | 
 | 831 | 		(intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,  | 
 | 832 | 		intsrc.mpc_srcbusirq, intsrc.mpc_dstapic, intsrc.mpc_dstirq); | 
 | 833 |  | 
 | 834 | 	mp_irqs[mp_irq_entries] = intsrc; | 
 | 835 | 	if (++mp_irq_entries == MAX_IRQ_SOURCES) | 
 | 836 | 		panic("Max # of irq sources exceeded!\n"); | 
 | 837 |  | 
 | 838 | 	return; | 
 | 839 | } | 
 | 840 |  | 
 | 841 |  | 
 | 842 | void __init mp_config_acpi_legacy_irqs (void) | 
 | 843 | { | 
 | 844 | 	struct mpc_config_intsrc intsrc; | 
 | 845 | 	int			i = 0; | 
 | 846 | 	int			ioapic = -1; | 
 | 847 |  | 
 | 848 | 	/*  | 
 | 849 | 	 * Fabricate the legacy ISA bus (bus #31). | 
 | 850 | 	 */ | 
 | 851 | 	mp_bus_id_to_type[MP_ISA_BUS] = MP_BUS_ISA; | 
 | 852 | 	Dprintk("Bus #%d is ISA\n", MP_ISA_BUS); | 
 | 853 |  | 
 | 854 | 	/*  | 
 | 855 | 	 * Locate the IOAPIC that manages the ISA IRQs (0-15).  | 
 | 856 | 	 */ | 
 | 857 | 	ioapic = mp_find_ioapic(0); | 
 | 858 | 	if (ioapic < 0) | 
 | 859 | 		return; | 
 | 860 |  | 
 | 861 | 	intsrc.mpc_type = MP_INTSRC; | 
 | 862 | 	intsrc.mpc_irqflag = 0;					/* Conforming */ | 
 | 863 | 	intsrc.mpc_srcbus = MP_ISA_BUS; | 
 | 864 | 	intsrc.mpc_dstapic = mp_ioapics[ioapic].mpc_apicid; | 
 | 865 |  | 
 | 866 | 	/*  | 
 | 867 | 	 * Use the default configuration for the IRQs 0-15.  Unless | 
 | 868 | 	 * overridden by (MADT) interrupt source override entries. | 
 | 869 | 	 */ | 
 | 870 | 	for (i = 0; i < 16; i++) { | 
 | 871 | 		int idx; | 
 | 872 |  | 
 | 873 | 		for (idx = 0; idx < mp_irq_entries; idx++) { | 
 | 874 | 			struct mpc_config_intsrc *irq = mp_irqs + idx; | 
 | 875 |  | 
 | 876 | 			/* Do we already have a mapping for this ISA IRQ? */ | 
 | 877 | 			if (irq->mpc_srcbus == MP_ISA_BUS && irq->mpc_srcbusirq == i) | 
 | 878 | 				break; | 
 | 879 |  | 
 | 880 | 			/* Do we already have a mapping for this IOAPIC pin */ | 
 | 881 | 			if ((irq->mpc_dstapic == intsrc.mpc_dstapic) && | 
 | 882 | 				(irq->mpc_dstirq == i)) | 
 | 883 | 				break; | 
 | 884 | 		} | 
 | 885 |  | 
 | 886 | 		if (idx != mp_irq_entries) { | 
 | 887 | 			printk(KERN_DEBUG "ACPI: IRQ%d used by override.\n", i); | 
 | 888 | 			continue;			/* IRQ already used */ | 
 | 889 | 		} | 
 | 890 |  | 
 | 891 | 		intsrc.mpc_irqtype = mp_INT; | 
 | 892 | 		intsrc.mpc_srcbusirq = i;		   /* Identity mapped */ | 
 | 893 | 		intsrc.mpc_dstirq = i; | 
 | 894 |  | 
 | 895 | 		Dprintk("Int: type %d, pol %d, trig %d, bus %d, irq %d, " | 
 | 896 | 			"%d-%d\n", intsrc.mpc_irqtype, intsrc.mpc_irqflag & 3,  | 
 | 897 | 			(intsrc.mpc_irqflag >> 2) & 3, intsrc.mpc_srcbus,  | 
 | 898 | 			intsrc.mpc_srcbusirq, intsrc.mpc_dstapic,  | 
 | 899 | 			intsrc.mpc_dstirq); | 
 | 900 |  | 
 | 901 | 		mp_irqs[mp_irq_entries] = intsrc; | 
 | 902 | 		if (++mp_irq_entries == MAX_IRQ_SOURCES) | 
 | 903 | 			panic("Max # of irq sources exceeded!\n"); | 
 | 904 | 	} | 
 | 905 |  | 
 | 906 | 	return; | 
 | 907 | } | 
 | 908 |  | 
| Natalie Protasevich | 701067c | 2005-06-23 00:08:41 -0700 | [diff] [blame] | 909 | #define MAX_GSI_NUM	4096 | 
 | 910 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | int mp_register_gsi(u32 gsi, int edge_level, int active_high_low) | 
 | 912 | { | 
 | 913 | 	int			ioapic = -1; | 
 | 914 | 	int			ioapic_pin = 0; | 
 | 915 | 	int			idx, bit = 0; | 
| Natalie Protasevich | 701067c | 2005-06-23 00:08:41 -0700 | [diff] [blame] | 916 | 	static int		pci_irq = 16; | 
 | 917 | 	/* | 
 | 918 | 	 * Mapping between Global System Interrupts, which | 
 | 919 | 	 * represent all possible interrupts, to the IRQs | 
 | 920 | 	 * assigned to actual devices. | 
 | 921 | 	 */ | 
 | 922 | 	static int		gsi_to_irq[MAX_GSI_NUM]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 923 |  | 
 | 924 | 	if (acpi_irq_model != ACPI_IRQ_MODEL_IOAPIC) | 
 | 925 | 		return gsi; | 
 | 926 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 927 | 	/* Don't set up the ACPI SCI because it's already set up */ | 
 | 928 | 	if (acpi_fadt.sci_int == gsi) | 
 | 929 | 		return gsi; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 |  | 
 | 931 | 	ioapic = mp_find_ioapic(gsi); | 
 | 932 | 	if (ioapic < 0) { | 
 | 933 | 		printk(KERN_WARNING "No IOAPIC for GSI %u\n", gsi); | 
 | 934 | 		return gsi; | 
 | 935 | 	} | 
 | 936 |  | 
 | 937 | 	ioapic_pin = gsi - mp_ioapic_routing[ioapic].gsi_start; | 
 | 938 |  | 
 | 939 | 	/*  | 
 | 940 | 	 * Avoid pin reprogramming.  PRTs typically include entries   | 
 | 941 | 	 * with redundant pin->gsi mappings (but unique PCI devices); | 
 | 942 | 	 * we only program the IOAPIC on the first. | 
 | 943 | 	 */ | 
 | 944 | 	bit = ioapic_pin % 32; | 
 | 945 | 	idx = (ioapic_pin < 32) ? 0 : (ioapic_pin / 32); | 
 | 946 | 	if (idx > 3) { | 
 | 947 | 		printk(KERN_ERR "Invalid reference to IOAPIC pin " | 
 | 948 | 			"%d-%d\n", mp_ioapic_routing[ioapic].apic_id,  | 
 | 949 | 			ioapic_pin); | 
 | 950 | 		return gsi; | 
 | 951 | 	} | 
 | 952 | 	if ((1<<bit) & mp_ioapic_routing[ioapic].pin_programmed[idx]) { | 
 | 953 | 		Dprintk(KERN_DEBUG "Pin %d-%d already programmed\n", | 
 | 954 | 			mp_ioapic_routing[ioapic].apic_id, ioapic_pin); | 
| Natalie Protasevich | 701067c | 2005-06-23 00:08:41 -0700 | [diff] [blame] | 955 | 		return gsi_to_irq[gsi]; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 956 | 	} | 
 | 957 |  | 
 | 958 | 	mp_ioapic_routing[ioapic].pin_programmed[idx] |= (1<<bit); | 
 | 959 |  | 
| Natalie Protasevich | 701067c | 2005-06-23 00:08:41 -0700 | [diff] [blame] | 960 | 	if (edge_level) { | 
 | 961 | 		/* | 
 | 962 | 		 * For PCI devices assign IRQs in order, avoiding gaps | 
 | 963 | 		 * due to unused I/O APIC pins. | 
 | 964 | 		 */ | 
 | 965 | 		int irq = gsi; | 
| Natalie.Protasevich@unisys.com | 6a1caa2 | 2005-07-30 11:25:32 -0700 | [diff] [blame] | 966 | 		if (gsi < MAX_GSI_NUM) { | 
 | 967 | 			if (gsi > 15) | 
 | 968 | 				gsi = pci_irq++; | 
| Natalie.Protasevich@unisys.com | 6a1caa2 | 2005-07-30 11:25:32 -0700 | [diff] [blame] | 969 | 			/* | 
 | 970 | 			 * Don't assign IRQ used by ACPI SCI | 
 | 971 | 			 */ | 
 | 972 | 			if (gsi == acpi_fadt.sci_int) | 
 | 973 | 				gsi = pci_irq++; | 
| Natalie.Protasevich@unisys.com | 6a1caa2 | 2005-07-30 11:25:32 -0700 | [diff] [blame] | 974 | 			gsi_to_irq[irq] = gsi; | 
 | 975 | 		} else { | 
 | 976 | 			printk(KERN_ERR "GSI %u is too high\n", gsi); | 
 | 977 | 			return gsi; | 
 | 978 | 		} | 
| Natalie Protasevich | 701067c | 2005-06-23 00:08:41 -0700 | [diff] [blame] | 979 | 	} | 
 | 980 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | 	io_apic_set_pci_routing(ioapic, ioapic_pin, gsi, | 
 | 982 | 		edge_level == ACPI_EDGE_SENSITIVE ? 0 : 1, | 
 | 983 | 		active_high_low == ACPI_ACTIVE_HIGH ? 0 : 1); | 
 | 984 | 	return gsi; | 
 | 985 | } | 
 | 986 |  | 
 | 987 | #endif /*CONFIG_X86_IO_APIC*/ | 
| Len Brown | 888ba6c | 2005-08-24 12:07:20 -0400 | [diff] [blame] | 988 | #endif /*CONFIG_ACPI*/ |