io_apic.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:41k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Intel IO-APIC support for multi-Pentium hosts.
  3.  *
  4.  * Copyright (C) 1997, 1998, 1999, 2000 Ingo Molnar, Hajnalka Szabo
  5.  *
  6.  * Many thanks to Stig Venaas for trying out countless experimental
  7.  * patches and reporting/debugging problems patiently!
  8.  *
  9.  * (c) 1999, Multiple IO-APIC support, developed by
  10.  * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
  11.  *      Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
  12.  * further tested and cleaned up by Zach Brown <zab@redhat.com>
  13.  * and Ingo Molnar <mingo@redhat.com>
  14.  *
  15.  * Fixes
  16.  * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
  17.  * thanks to Eric Gilmore
  18.  * and Rolf G. Tews
  19.  * for testing these extensively
  20.  */
  21. #include <linux/mm.h>
  22. #include <linux/irq.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/init.h>
  25. #include <linux/delay.h>
  26. #include <linux/sched.h>
  27. #include <linux/config.h>
  28. #include <linux/smp_lock.h>
  29. #include <linux/mc146818rtc.h>
  30. #include <asm/io.h>
  31. #include <asm/smp.h>
  32. #include <asm/desc.h>
  33. #include <asm/smpboot.h>
  34. #undef APIC_LOCKUP_DEBUG
  35. #define APIC_LOCKUP_DEBUG
  36. static spinlock_t ioapic_lock = SPIN_LOCK_UNLOCKED;
  37. unsigned int int_dest_addr_mode = APIC_DEST_LOGICAL;
  38. unsigned char int_delivery_mode = dest_LowestPrio;
  39. /*
  40.  * # of IRQ routing registers
  41.  */
  42. int nr_ioapic_registers[MAX_IO_APICS];
  43. /*
  44.  * Rough estimation of how many shared IRQs there are, can
  45.  * be changed anytime.
  46.  */
  47. #define MAX_PLUS_SHARED_IRQS NR_IRQS
  48. #define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
  49. /*
  50.  * This is performance-critical, we want to do it O(1)
  51.  *
  52.  * the indexing order of this array favors 1:1 mappings
  53.  * between pins and IRQs.
  54.  */
  55. static struct irq_pin_list {
  56. int apic, pin, next;
  57. } irq_2_pin[PIN_MAP_SIZE];
  58. /*
  59.  * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
  60.  * shared ISA-space IRQs, so we have to support them. We are super
  61.  * fast in the common case, and fast for shared ISA-space IRQs.
  62.  */
  63. static void __init add_pin_to_irq(unsigned int irq, int apic, int pin)
  64. {
  65. static int first_free_entry = NR_IRQS;
  66. struct irq_pin_list *entry = irq_2_pin + irq;
  67. while (entry->next)
  68. entry = irq_2_pin + entry->next;
  69. if (entry->pin != -1) {
  70. entry->next = first_free_entry;
  71. entry = irq_2_pin + entry->next;
  72. if (++first_free_entry >= PIN_MAP_SIZE)
  73. panic("io_apic.c: whoops");
  74. }
  75. entry->apic = apic;
  76. entry->pin = pin;
  77. }
  78. /*
  79.  * Reroute an IRQ to a different pin.
  80.  */
  81. static void __init replace_pin_at_irq(unsigned int irq,
  82.       int oldapic, int oldpin,
  83.       int newapic, int newpin)
  84. {
  85. struct irq_pin_list *entry = irq_2_pin + irq;
  86. while (1) {
  87. if (entry->apic == oldapic && entry->pin == oldpin) {
  88. entry->apic = newapic;
  89. entry->pin = newpin;
  90. }
  91. if (!entry->next)
  92. break;
  93. entry = irq_2_pin + entry->next;
  94. }
  95. }
  96. #define __DO_ACTION(R, ACTION, FINAL)
  97. {
  98. int pin;
  99. struct irq_pin_list *entry = irq_2_pin + irq;
  100. for (;;) {
  101. unsigned int reg;
  102. pin = entry->pin;
  103. if (pin == -1)
  104. break;
  105. reg = io_apic_read(entry->apic, 0x10 + R + pin*2);
  106. reg ACTION;
  107. io_apic_modify(entry->apic, reg);
  108. if (!entry->next)
  109. break;
  110. entry = irq_2_pin + entry->next;
  111. }
  112. FINAL;
  113. }
  114. #define DO_ACTION(name,R,ACTION, FINAL)
  115. static void name##_IO_APIC_irq (unsigned int irq)
  116. __DO_ACTION(R, ACTION, FINAL)
  117. DO_ACTION( __mask,             0, |= 0x00010000, io_apic_sync(entry->apic) )
  118. /* mask = 1 */
  119. DO_ACTION( __unmask,           0, &= 0xfffeffff, )
  120. /* mask = 0 */
  121. DO_ACTION( __mask_and_edge,    0, = (reg & 0xffff7fff) | 0x00010000, )
  122. /* mask = 1, trigger = 0 */
  123. DO_ACTION( __unmask_and_level, 0, = (reg & 0xfffeffff) | 0x00008000, )
  124. /* mask = 0, trigger = 1 */
  125. static void mask_IO_APIC_irq (unsigned int irq)
  126. {
  127. unsigned long flags;
  128. spin_lock_irqsave(&ioapic_lock, flags);
  129. __mask_IO_APIC_irq(irq);
  130. spin_unlock_irqrestore(&ioapic_lock, flags);
  131. }
  132. static void unmask_IO_APIC_irq (unsigned int irq)
  133. {
  134. unsigned long flags;
  135. spin_lock_irqsave(&ioapic_lock, flags);
  136. __unmask_IO_APIC_irq(irq);
  137. spin_unlock_irqrestore(&ioapic_lock, flags);
  138. }
  139. void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
  140. {
  141. struct IO_APIC_route_entry entry;
  142. unsigned long flags;
  143. /*
  144.  * Disable it in the IO-APIC irq-routing table:
  145.  */
  146. memset(&entry, 0, sizeof(entry));
  147. entry.mask = 1;
  148. spin_lock_irqsave(&ioapic_lock, flags);
  149. io_apic_write(apic, 0x10 + 2 * pin, *(((int *)&entry) + 0));
  150. io_apic_write(apic, 0x11 + 2 * pin, *(((int *)&entry) + 1));
  151. spin_unlock_irqrestore(&ioapic_lock, flags);
  152. }
  153. static void clear_IO_APIC (void)
  154. {
  155. int apic, pin;
  156. for (apic = 0; apic < nr_ioapics; apic++)
  157. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
  158. clear_IO_APIC_pin(apic, pin);
  159. }
  160. /*
  161.  * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
  162.  * specific CPU-side IRQs.
  163.  */
  164. #define MAX_PIRQS 8
  165. int pirq_entries [MAX_PIRQS];
  166. int pirqs_enabled;
  167. int skip_ioapic_setup;
  168. static int __init noioapic_setup(char *str)
  169. {
  170. skip_ioapic_setup = 1;
  171. return 1;
  172. }
  173. __setup("noapic", noioapic_setup);
  174. static int __init ioapic_setup(char *str)
  175. {
  176. skip_ioapic_setup = 0;
  177. return 1;
  178. }
  179. __setup("apic", ioapic_setup);
  180. static int __init ioapic_pirq_setup(char *str)
  181. {
  182. int i, max;
  183. int ints[MAX_PIRQS+1];
  184. get_options(str, ARRAY_SIZE(ints), ints);
  185. for (i = 0; i < MAX_PIRQS; i++)
  186. pirq_entries[i] = -1;
  187. pirqs_enabled = 1;
  188. printk(KERN_INFO "PIRQ redirection, working around broken MP-BIOS.n");
  189. max = MAX_PIRQS;
  190. if (ints[0] < MAX_PIRQS)
  191. max = ints[0];
  192. for (i = 0; i < max; i++) {
  193. printk(KERN_DEBUG "... PIRQ%d -> IRQ %dn", i, ints[i+1]);
  194. /*
  195.  * PIRQs are mapped upside down, usually.
  196.  */
  197. pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
  198. }
  199. return 1;
  200. }
  201. __setup("pirq=", ioapic_pirq_setup);
  202. /*
  203.  * Find the IRQ entry number of a certain pin.
  204.  */
  205. static int __init find_irq_entry(int apic, int pin, int type)
  206. {
  207. int i;
  208. for (i = 0; i < mp_irq_entries; i++)
  209. if (mp_irqs[i].mpc_irqtype == type &&
  210.     (mp_irqs[i].mpc_dstapic == mp_ioapics[apic].mpc_apicid ||
  211.      mp_irqs[i].mpc_dstapic == MP_APIC_ALL) &&
  212.     mp_irqs[i].mpc_dstirq == pin)
  213. return i;
  214. return -1;
  215. }
  216. /*
  217.  * Find the pin to which IRQ[irq] (ISA) is connected
  218.  */
  219. static int __init find_isa_irq_pin(int irq, int type)
  220. {
  221. int i;
  222. for (i = 0; i < mp_irq_entries; i++) {
  223. int lbus = mp_irqs[i].mpc_srcbus;
  224. if ((mp_bus_id_to_type[lbus] == MP_BUS_ISA ||
  225.      mp_bus_id_to_type[lbus] == MP_BUS_EISA ||
  226.      mp_bus_id_to_type[lbus] == MP_BUS_MCA) &&
  227.     (mp_irqs[i].mpc_irqtype == type) &&
  228.     (mp_irqs[i].mpc_srcbusirq == irq))
  229. return mp_irqs[i].mpc_dstirq;
  230. }
  231. return -1;
  232. }
  233. /*
  234.  * Find a specific PCI IRQ entry.
  235.  * Not an __init, possibly needed by modules
  236.  */
  237. static int pin_2_irq(int idx, int apic, int pin);
  238. int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
  239. {
  240. int apic, i, best_guess = -1;
  241. Dprintk("querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.n",
  242. bus, slot, pin);
  243. if (mp_bus_id_to_pci_bus[bus] == -1) {
  244. printk(KERN_WARNING "PCI BIOS passed nonexistent PCI bus %d!n", bus);
  245. return -1;
  246. }
  247. for (i = 0; i < mp_irq_entries; i++) {
  248. int lbus = mp_irqs[i].mpc_srcbus;
  249. for (apic = 0; apic < nr_ioapics; apic++)
  250. if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic ||
  251.     mp_irqs[i].mpc_dstapic == MP_APIC_ALL)
  252. break;
  253. if ((mp_bus_id_to_type[lbus] == MP_BUS_PCI) &&
  254.     !mp_irqs[i].mpc_irqtype &&
  255.     (bus == lbus) &&
  256.     (slot == ((mp_irqs[i].mpc_srcbusirq >> 2) & 0x1f))) {
  257. int irq = pin_2_irq(i,apic,mp_irqs[i].mpc_dstirq);
  258. if (!(apic || IO_APIC_IRQ(irq)))
  259. continue;
  260. if (pin == (mp_irqs[i].mpc_srcbusirq & 3))
  261. return irq;
  262. /*
  263.  * Use the first all-but-pin matching entry as a
  264.  * best-guess fuzzy result for broken mptables.
  265.  */
  266. if (best_guess < 0)
  267. best_guess = irq;
  268. }
  269. }
  270. return best_guess;
  271. }
  272. /*
  273.  * EISA Edge/Level control register, ELCR
  274.  */
  275. static int __init EISA_ELCR(unsigned int irq)
  276. {
  277. if (irq < 16) {
  278. unsigned int port = 0x4d0 + (irq >> 3);
  279. return (inb(port) >> (irq & 7)) & 1;
  280. }
  281. printk(KERN_INFO "Broken MPtable reports ISA irq %dn", irq);
  282. return 0;
  283. }
  284. /* EISA interrupts are always polarity zero and can be edge or level
  285.  * trigger depending on the ELCR value.  If an interrupt is listed as
  286.  * EISA conforming in the MP table, that means its trigger type must
  287.  * be read in from the ELCR */
  288. #define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mpc_srcbusirq))
  289. #define default_EISA_polarity(idx) (0)
  290. /* ISA interrupts are always polarity zero edge triggered,
  291.  * when listed as conforming in the MP table. */
  292. #define default_ISA_trigger(idx) (0)
  293. #define default_ISA_polarity(idx) (0)
  294. /* PCI interrupts are always polarity one level triggered,
  295.  * when listed as conforming in the MP table. */
  296. #define default_PCI_trigger(idx) (1)
  297. #define default_PCI_polarity(idx) (1)
  298. /* MCA interrupts are always polarity zero level triggered,
  299.  * when listed as conforming in the MP table. */
  300. #define default_MCA_trigger(idx) (1)
  301. #define default_MCA_polarity(idx) (0)
  302. static int __init MPBIOS_polarity(int idx)
  303. {
  304. int bus = mp_irqs[idx].mpc_srcbus;
  305. int polarity;
  306. /*
  307.  * Determine IRQ line polarity (high active or low active):
  308.  */
  309. switch (mp_irqs[idx].mpc_irqflag & 3)
  310. {
  311. case 0: /* conforms, ie. bus-type dependent polarity */
  312. {
  313. switch (mp_bus_id_to_type[bus])
  314. {
  315. case MP_BUS_ISA: /* ISA pin */
  316. {
  317. polarity = default_ISA_polarity(idx);
  318. break;
  319. }
  320. case MP_BUS_EISA: /* EISA pin */
  321. {
  322. polarity = default_EISA_polarity(idx);
  323. break;
  324. }
  325. case MP_BUS_PCI: /* PCI pin */
  326. {
  327. polarity = default_PCI_polarity(idx);
  328. break;
  329. }
  330. case MP_BUS_MCA: /* MCA pin */
  331. {
  332. polarity = default_MCA_polarity(idx);
  333. break;
  334. }
  335. default:
  336. {
  337. printk(KERN_WARNING "broken BIOS!!n");
  338. polarity = 1;
  339. break;
  340. }
  341. }
  342. break;
  343. }
  344. case 1: /* high active */
  345. {
  346. polarity = 0;
  347. break;
  348. }
  349. case 2: /* reserved */
  350. {
  351. printk(KERN_WARNING "broken BIOS!!n");
  352. polarity = 1;
  353. break;
  354. }
  355. case 3: /* low active */
  356. {
  357. polarity = 1;
  358. break;
  359. }
  360. default: /* invalid */
  361. {
  362. printk(KERN_WARNING "broken BIOS!!n");
  363. polarity = 1;
  364. break;
  365. }
  366. }
  367. return polarity;
  368. }
  369. static int __init MPBIOS_trigger(int idx)
  370. {
  371. int bus = mp_irqs[idx].mpc_srcbus;
  372. int trigger;
  373. /*
  374.  * Determine IRQ trigger mode (edge or level sensitive):
  375.  */
  376. switch ((mp_irqs[idx].mpc_irqflag>>2) & 3)
  377. {
  378. case 0: /* conforms, ie. bus-type dependent */
  379. {
  380. switch (mp_bus_id_to_type[bus])
  381. {
  382. case MP_BUS_ISA: /* ISA pin */
  383. {
  384. trigger = default_ISA_trigger(idx);
  385. break;
  386. }
  387. case MP_BUS_EISA: /* EISA pin */
  388. {
  389. trigger = default_EISA_trigger(idx);
  390. break;
  391. }
  392. case MP_BUS_PCI: /* PCI pin */
  393. {
  394. trigger = default_PCI_trigger(idx);
  395. break;
  396. }
  397. case MP_BUS_MCA: /* MCA pin */
  398. {
  399. trigger = default_MCA_trigger(idx);
  400. break;
  401. }
  402. default:
  403. {
  404. printk(KERN_WARNING "broken BIOS!!n");
  405. trigger = 1;
  406. break;
  407. }
  408. }
  409. break;
  410. }
  411. case 1: /* edge */
  412. {
  413. trigger = 0;
  414. break;
  415. }
  416. case 2: /* reserved */
  417. {
  418. printk(KERN_WARNING "broken BIOS!!n");
  419. trigger = 1;
  420. break;
  421. }
  422. case 3: /* level */
  423. {
  424. trigger = 1;
  425. break;
  426. }
  427. default: /* invalid */
  428. {
  429. printk(KERN_WARNING "broken BIOS!!n");
  430. trigger = 0;
  431. break;
  432. }
  433. }
  434. return trigger;
  435. }
  436. static inline int irq_polarity(int idx)
  437. {
  438. return MPBIOS_polarity(idx);
  439. }
  440. static inline int irq_trigger(int idx)
  441. {
  442. return MPBIOS_trigger(idx);
  443. }
  444. static int pin_2_irq(int idx, int apic, int pin)
  445. {
  446. int irq, i;
  447. int bus = mp_irqs[idx].mpc_srcbus;
  448. /*
  449.  * Debugging check, we are in big trouble if this message pops up!
  450.  */
  451. if (mp_irqs[idx].mpc_dstirq != pin)
  452. printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!n");
  453. switch (mp_bus_id_to_type[bus])
  454. {
  455. case MP_BUS_ISA: /* ISA pin */
  456. case MP_BUS_EISA:
  457. case MP_BUS_MCA:
  458. {
  459. irq = mp_irqs[idx].mpc_srcbusirq;
  460. break;
  461. }
  462. case MP_BUS_PCI: /* PCI pin */
  463. {
  464. /*
  465.  * PCI IRQs are mapped in order
  466.  */
  467. i = irq = 0;
  468. while (i < apic)
  469. irq += nr_ioapic_registers[i++];
  470. irq += pin;
  471. break;
  472. }
  473. default:
  474. {
  475. printk(KERN_ERR "unknown bus type %d.n",bus); 
  476. irq = 0;
  477. break;
  478. }
  479. }
  480. /*
  481.  * PCI IRQ command line redirection. Yes, limits are hardcoded.
  482.  */
  483. if ((pin >= 16) && (pin <= 23)) {
  484. if (pirq_entries[pin-16] != -1) {
  485. if (!pirq_entries[pin-16]) {
  486. printk(KERN_DEBUG "disabling PIRQ%dn", pin-16);
  487. } else {
  488. irq = pirq_entries[pin-16];
  489. printk(KERN_DEBUG "using PIRQ%d -> IRQ %dn",
  490. pin-16, irq);
  491. }
  492. }
  493. }
  494. return irq;
  495. }
  496. static inline int IO_APIC_irq_trigger(int irq)
  497. {
  498. int apic, idx, pin;
  499. for (apic = 0; apic < nr_ioapics; apic++) {
  500. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
  501. idx = find_irq_entry(apic,pin,mp_INT);
  502. if ((idx != -1) && (irq == pin_2_irq(idx,apic,pin)))
  503. return irq_trigger(idx);
  504. }
  505. }
  506. /*
  507.  * nonexistent IRQs are edge default
  508.  */
  509. return 0;
  510. }
  511. int irq_vector[NR_IRQS] = { FIRST_DEVICE_VECTOR , 0 };
  512. static int __init assign_irq_vector(int irq)
  513. {
  514. static int current_vector = FIRST_DEVICE_VECTOR, offset = 0;
  515. if (IO_APIC_VECTOR(irq) > 0)
  516. return IO_APIC_VECTOR(irq);
  517. next:
  518. current_vector += 8;
  519. if (current_vector == SYSCALL_VECTOR)
  520. goto next;
  521. if (current_vector > FIRST_SYSTEM_VECTOR) {
  522. offset++;
  523. current_vector = FIRST_DEVICE_VECTOR + offset;
  524. }
  525. if (current_vector == FIRST_SYSTEM_VECTOR)
  526. panic("ran out of interrupt sources!");
  527. IO_APIC_VECTOR(irq) = current_vector;
  528. return current_vector;
  529. }
  530. extern void (*interrupt[NR_IRQS])(void);
  531. static struct hw_interrupt_type ioapic_level_irq_type;
  532. static struct hw_interrupt_type ioapic_edge_irq_type;
  533. void __init setup_IO_APIC_irqs(void)
  534. {
  535. struct IO_APIC_route_entry entry;
  536. int apic, pin, idx, irq, first_notcon = 1, vector;
  537. unsigned long flags;
  538. printk(KERN_DEBUG "init IO_APIC IRQsn");
  539. for (apic = 0; apic < nr_ioapics; apic++) {
  540. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
  541. /*
  542.  * add it to the IO-APIC irq-routing table:
  543.  */
  544. memset(&entry,0,sizeof(entry));
  545. entry.delivery_mode = INT_DELIVERY_MODE;
  546. entry.dest_mode = (INT_DEST_ADDR_MODE != 0);
  547. entry.mask = 0; /* enable IRQ */
  548. entry.dest.logical.logical_dest = target_cpus();
  549. idx = find_irq_entry(apic,pin,mp_INT);
  550. if (idx == -1) {
  551. if (first_notcon) {
  552. printk(KERN_DEBUG " IO-APIC (apicid-pin) %d-%d", mp_ioapics[apic].mpc_apicid, pin);
  553. first_notcon = 0;
  554. } else
  555. printk(", %d-%d", mp_ioapics[apic].mpc_apicid, pin);
  556. continue;
  557. }
  558. entry.trigger = irq_trigger(idx);
  559. entry.polarity = irq_polarity(idx);
  560. if (irq_trigger(idx)) {
  561. entry.trigger = 1;
  562. entry.mask = 1;
  563. }
  564. irq = pin_2_irq(idx, apic, pin);
  565. /*
  566.  * skip adding the timer int on secondary nodes, which causes
  567.  * a small but painful rift in the time-space continuum
  568.  */
  569. if ((clustered_apic_mode == CLUSTERED_APIC_NUMAQ) 
  570. && (apic != 0) && (irq == 0))
  571. continue;
  572. else
  573. add_pin_to_irq(irq, apic, pin);
  574. if (!apic && !IO_APIC_IRQ(irq))
  575. continue;
  576. if (IO_APIC_IRQ(irq)) {
  577. vector = assign_irq_vector(irq);
  578. entry.vector = vector;
  579. if (IO_APIC_irq_trigger(irq))
  580. irq_desc[irq].handler = &ioapic_level_irq_type;
  581. else
  582. irq_desc[irq].handler = &ioapic_edge_irq_type;
  583. set_intr_gate(vector, interrupt[irq]);
  584. if (!apic && (irq < 16))
  585. disable_8259A_irq(irq);
  586. }
  587. spin_lock_irqsave(&ioapic_lock, flags);
  588. io_apic_write(apic, 0x11+2*pin, *(((int *)&entry)+1));
  589. io_apic_write(apic, 0x10+2*pin, *(((int *)&entry)+0));
  590. spin_unlock_irqrestore(&ioapic_lock, flags);
  591. }
  592. }
  593. if (!first_notcon)
  594. printk(" not connected.n");
  595. }
  596. /*
  597.  * Set up the 8259A-master output pin as broadcast to all
  598.  * CPUs.
  599.  */
  600. void __init setup_ExtINT_IRQ0_pin(unsigned int pin, int vector)
  601. {
  602. struct IO_APIC_route_entry entry;
  603. unsigned long flags;
  604. memset(&entry,0,sizeof(entry));
  605. disable_8259A_irq(0);
  606. /* mask LVT0 */
  607. apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
  608. /*
  609.  * We use logical delivery to get the timer IRQ
  610.  * to the first CPU.
  611.  */
  612. entry.dest_mode = (INT_DEST_ADDR_MODE != 0);
  613. entry.mask = 0; /* unmask IRQ now */
  614. entry.dest.logical.logical_dest = target_cpus();
  615. entry.delivery_mode = INT_DELIVERY_MODE;
  616. entry.polarity = 0;
  617. entry.trigger = 0;
  618. entry.vector = vector;
  619. /*
  620.  * The timer IRQ doesn't have to know that behind the
  621.  * scene we have a 8259A-master in AEOI mode ...
  622.  */
  623. irq_desc[0].handler = &ioapic_edge_irq_type;
  624. /*
  625.  * Add it to the IO-APIC irq-routing table:
  626.  */
  627. spin_lock_irqsave(&ioapic_lock, flags);
  628. io_apic_write(0, 0x11+2*pin, *(((int *)&entry)+1));
  629. io_apic_write(0, 0x10+2*pin, *(((int *)&entry)+0));
  630. spin_unlock_irqrestore(&ioapic_lock, flags);
  631. enable_8259A_irq(0);
  632. }
  633. void __init UNEXPECTED_IO_APIC(void)
  634. {
  635. printk(KERN_WARNING " WARNING: unexpected IO-APIC, please mailn");
  636. printk(KERN_WARNING "          to linux-smp@vger.kernel.orgn");
  637. }
  638. void __init print_IO_APIC(void)
  639. {
  640. int apic, i;
  641. struct IO_APIC_reg_00 reg_00;
  642. struct IO_APIC_reg_01 reg_01;
  643. struct IO_APIC_reg_02 reg_02;
  644. unsigned long flags;
  645.   printk(KERN_DEBUG "number of MP IRQ sources: %d.n", mp_irq_entries);
  646. for (i = 0; i < nr_ioapics; i++)
  647. printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.n",
  648.        mp_ioapics[i].mpc_apicid, nr_ioapic_registers[i]);
  649. /*
  650.  * We are a bit conservative about what we expect.  We have to
  651.  * know about every hardware change ASAP.
  652.  */
  653. printk(KERN_INFO "testing the IO APIC.......................n");
  654. for (apic = 0; apic < nr_ioapics; apic++) {
  655. spin_lock_irqsave(&ioapic_lock, flags);
  656. *(int *)&reg_00 = io_apic_read(apic, 0);
  657. *(int *)&reg_01 = io_apic_read(apic, 1);
  658. if (reg_01.version >= 0x10)
  659. *(int *)&reg_02 = io_apic_read(apic, 2);
  660. spin_unlock_irqrestore(&ioapic_lock, flags);
  661. printk("n");
  662. printk(KERN_DEBUG "IO APIC #%d......n", mp_ioapics[apic].mpc_apicid);
  663. printk(KERN_DEBUG ".... register #00: %08Xn", *(int *)&reg_00);
  664. printk(KERN_DEBUG ".......    : physical APIC id: %02Xn", reg_00.ID);
  665. if (reg_00.__reserved_1 || reg_00.__reserved_2)
  666. UNEXPECTED_IO_APIC();
  667. printk(KERN_DEBUG ".... register #01: %08Xn", *(int *)&reg_01);
  668. printk(KERN_DEBUG ".......     : max redirection entries: %04Xn", reg_01.entries);
  669. if ( (reg_01.entries != 0x0f) && /* older (Neptune) boards */
  670. (reg_01.entries != 0x17) && /* typical ISA+PCI boards */
  671. (reg_01.entries != 0x1b) && /* Compaq Proliant boards */
  672. (reg_01.entries != 0x1f) && /* dual Xeon boards */
  673. (reg_01.entries != 0x22) && /* bigger Xeon boards */
  674. (reg_01.entries != 0x2E) &&
  675. (reg_01.entries != 0x3F)
  676. )
  677. UNEXPECTED_IO_APIC();
  678. printk(KERN_DEBUG ".......     : PRQ implemented: %Xn", reg_01.PRQ);
  679. printk(KERN_DEBUG ".......     : IO APIC version: %04Xn", reg_01.version);
  680. if ( (reg_01.version != 0x01) && /* 82489DX IO-APICs */
  681. (reg_01.version != 0x10) && /* oldest IO-APICs */
  682. (reg_01.version != 0x11) && /* Pentium/Pro IO-APICs */
  683. (reg_01.version != 0x13) && /* Xeon IO-APICs */
  684. (reg_01.version != 0x20)    /* Intel P64H (82806 AA) */
  685. )
  686. UNEXPECTED_IO_APIC();
  687. if (reg_01.__reserved_1 || reg_01.__reserved_2)
  688. UNEXPECTED_IO_APIC();
  689. if (reg_01.version >= 0x10) {
  690. printk(KERN_DEBUG ".... register #02: %08Xn", *(int *)&reg_02);
  691. printk(KERN_DEBUG ".......     : arbitration: %02Xn", reg_02.arbitration);
  692. if (reg_02.__reserved_1 || reg_02.__reserved_2)
  693. UNEXPECTED_IO_APIC();
  694. }
  695. printk(KERN_DEBUG ".... IRQ redirection table:n");
  696. printk(KERN_DEBUG " NR Log Phy Mask Trig IRR Pol"
  697.   " Stat Dest Deli Vect:   n");
  698. for (i = 0; i <= reg_01.entries; i++) {
  699. struct IO_APIC_route_entry entry;
  700. spin_lock_irqsave(&ioapic_lock, flags);
  701. *(((int *)&entry)+0) = io_apic_read(apic, 0x10+i*2);
  702. *(((int *)&entry)+1) = io_apic_read(apic, 0x11+i*2);
  703. spin_unlock_irqrestore(&ioapic_lock, flags);
  704. printk(KERN_DEBUG " %02x %03X %02X  ",
  705. i,
  706. entry.dest.logical.logical_dest,
  707. entry.dest.physical.physical_dest
  708. );
  709. printk("%1d    %1d    %1d   %1d   %1d    %1d    %1d    %02Xn",
  710. entry.mask,
  711. entry.trigger,
  712. entry.irr,
  713. entry.polarity,
  714. entry.delivery_status,
  715. entry.dest_mode,
  716. entry.delivery_mode,
  717. entry.vector
  718. );
  719. }
  720. }
  721. printk(KERN_DEBUG "IRQ to pin mappings:n");
  722. for (i = 0; i < NR_IRQS; i++) {
  723. struct irq_pin_list *entry = irq_2_pin + i;
  724. if (entry->pin < 0)
  725. continue;
  726. printk(KERN_DEBUG "IRQ%d ", i);
  727. for (;;) {
  728. printk("-> %d:%d", entry->apic, entry->pin);
  729. if (!entry->next)
  730. break;
  731. entry = irq_2_pin + entry->next;
  732. }
  733. printk("n");
  734. }
  735. printk(KERN_INFO ".................................... done.n");
  736. return;
  737. }
  738. static void print_APIC_bitfield (int base)
  739. {
  740. unsigned int v;
  741. int i, j;
  742. printk(KERN_DEBUG "0123456789abcdef0123456789abcdefn" KERN_DEBUG);
  743. for (i = 0; i < 8; i++) {
  744. v = apic_read(base + i*0x10);
  745. for (j = 0; j < 32; j++) {
  746. if (v & (1<<j))
  747. printk("1");
  748. else
  749. printk("0");
  750. }
  751. printk("n");
  752. }
  753. }
  754. void /*__init*/ print_local_APIC(void * dummy)
  755. {
  756. unsigned int v, ver, maxlvt;
  757. printk("n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:n",
  758. smp_processor_id(), hard_smp_processor_id());
  759. v = apic_read(APIC_ID);
  760. printk(KERN_INFO "... APIC ID:      %08x (%01x)n", v, GET_APIC_ID(v));
  761. v = apic_read(APIC_LVR);
  762. printk(KERN_INFO "... APIC VERSION: %08xn", v);
  763. ver = GET_APIC_VERSION(v);
  764. maxlvt = get_maxlvt();
  765. v = apic_read(APIC_TASKPRI);
  766. printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)n", v, v & APIC_TPRI_MASK);
  767. if (APIC_INTEGRATED(ver)) { /* !82489DX */
  768. v = apic_read(APIC_ARBPRI);
  769. printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)n", v,
  770. v & APIC_ARBPRI_MASK);
  771. v = apic_read(APIC_PROCPRI);
  772. printk(KERN_DEBUG "... APIC PROCPRI: %08xn", v);
  773. }
  774. v = apic_read(APIC_EOI);
  775. printk(KERN_DEBUG "... APIC EOI: %08xn", v);
  776. v = apic_read(APIC_RRR);
  777. printk(KERN_DEBUG "... APIC RRR: %08xn", v);
  778. v = apic_read(APIC_LDR);
  779. printk(KERN_DEBUG "... APIC LDR: %08xn", v);
  780. v = apic_read(APIC_DFR);
  781. printk(KERN_DEBUG "... APIC DFR: %08xn", v);
  782. v = apic_read(APIC_SPIV);
  783. printk(KERN_DEBUG "... APIC SPIV: %08xn", v);
  784. printk(KERN_DEBUG "... APIC ISR field:n");
  785. print_APIC_bitfield(APIC_ISR);
  786. printk(KERN_DEBUG "... APIC TMR field:n");
  787. print_APIC_bitfield(APIC_TMR);
  788. printk(KERN_DEBUG "... APIC IRR field:n");
  789. print_APIC_bitfield(APIC_IRR);
  790. if (APIC_INTEGRATED(ver)) { /* !82489DX */
  791. if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
  792. apic_write(APIC_ESR, 0);
  793. v = apic_read(APIC_ESR);
  794. printk(KERN_DEBUG "... APIC ESR: %08xn", v);
  795. }
  796. v = apic_read(APIC_ICR);
  797. printk(KERN_DEBUG "... APIC ICR: %08xn", v);
  798. v = apic_read(APIC_ICR2);
  799. printk(KERN_DEBUG "... APIC ICR2: %08xn", v);
  800. v = apic_read(APIC_LVTT);
  801. printk(KERN_DEBUG "... APIC LVTT: %08xn", v);
  802. if (maxlvt > 3) {                       /* PC is LVT#4. */
  803. v = apic_read(APIC_LVTPC);
  804. printk(KERN_DEBUG "... APIC LVTPC: %08xn", v);
  805. }
  806. v = apic_read(APIC_LVT0);
  807. printk(KERN_DEBUG "... APIC LVT0: %08xn", v);
  808. v = apic_read(APIC_LVT1);
  809. printk(KERN_DEBUG "... APIC LVT1: %08xn", v);
  810. if (maxlvt > 2) { /* ERR is LVT#3. */
  811. v = apic_read(APIC_LVTERR);
  812. printk(KERN_DEBUG "... APIC LVTERR: %08xn", v);
  813. }
  814. v = apic_read(APIC_TMICT);
  815. printk(KERN_DEBUG "... APIC TMICT: %08xn", v);
  816. v = apic_read(APIC_TMCCT);
  817. printk(KERN_DEBUG "... APIC TMCCT: %08xn", v);
  818. v = apic_read(APIC_TDCR);
  819. printk(KERN_DEBUG "... APIC TDCR: %08xn", v);
  820. printk("n");
  821. }
  822. void print_all_local_APICs (void)
  823. {
  824. smp_call_function(print_local_APIC, NULL, 1, 1);
  825. print_local_APIC(NULL);
  826. }
  827. void /*__init*/ print_PIC(void)
  828. {
  829. extern spinlock_t i8259A_lock;
  830. unsigned int v, flags;
  831. printk(KERN_DEBUG "nprinting PIC contentsn");
  832. spin_lock_irqsave(&i8259A_lock, flags);
  833. v = inb(0xa1) << 8 | inb(0x21);
  834. printk(KERN_DEBUG "... PIC  IMR: %04xn", v);
  835. v = inb(0xa0) << 8 | inb(0x20);
  836. printk(KERN_DEBUG "... PIC  IRR: %04xn", v);
  837. outb(0x0b,0xa0);
  838. outb(0x0b,0x20);
  839. v = inb(0xa0) << 8 | inb(0x20);
  840. outb(0x0a,0xa0);
  841. outb(0x0a,0x20);
  842. spin_unlock_irqrestore(&i8259A_lock, flags);
  843. printk(KERN_DEBUG "... PIC  ISR: %04xn", v);
  844. v = inb(0x4d1) << 8 | inb(0x4d0);
  845. printk(KERN_DEBUG "... PIC ELCR: %04xn", v);
  846. }
  847. static void __init enable_IO_APIC(void)
  848. {
  849. struct IO_APIC_reg_01 reg_01;
  850. int i;
  851. unsigned long flags;
  852. for (i = 0; i < PIN_MAP_SIZE; i++) {
  853. irq_2_pin[i].pin = -1;
  854. irq_2_pin[i].next = 0;
  855. }
  856. if (!pirqs_enabled)
  857. for (i = 0; i < MAX_PIRQS; i++)
  858. pirq_entries[i] = -1;
  859. /*
  860.  * The number of IO-APIC IRQ registers (== #pins):
  861.  */
  862. for (i = 0; i < nr_ioapics; i++) {
  863. spin_lock_irqsave(&ioapic_lock, flags);
  864. *(int *)&reg_01 = io_apic_read(i, 1);
  865. spin_unlock_irqrestore(&ioapic_lock, flags);
  866. nr_ioapic_registers[i] = reg_01.entries+1;
  867. }
  868. /*
  869.  * Do not trust the IO-APIC being empty at bootup
  870.  */
  871. clear_IO_APIC();
  872. }
  873. /*
  874.  * Not an __init, needed by the reboot code
  875.  */
  876. void disable_IO_APIC(void)
  877. {
  878. /*
  879.  * Clear the IO-APIC before rebooting:
  880.  */
  881. clear_IO_APIC();
  882. disconnect_bsp_APIC();
  883. }
  884. /*
  885.  * function to set the IO-APIC physical IDs based on the
  886.  * values stored in the MPC table.
  887.  *
  888.  * by Matt Domsch <Matt_Domsch@dell.com>  Tue Dec 21 12:25:05 CST 1999
  889.  */
  890. static void __init setup_ioapic_ids_from_mpc (void)
  891. {
  892. struct IO_APIC_reg_00 reg_00;
  893. unsigned long phys_id_present_map = phys_cpu_present_map;
  894. int apic;
  895. int i;
  896. unsigned char old_id;
  897. unsigned long flags;
  898. if (clustered_apic_mode)
  899. /* We don't have a good way to do this yet - hack */
  900. phys_id_present_map = (u_long) 0xf;
  901. /*
  902.  * Set the IOAPIC ID to the value stored in the MPC table.
  903.  */
  904. for (apic = 0; apic < nr_ioapics; apic++) {
  905. /* Read the register 0 value */
  906. spin_lock_irqsave(&ioapic_lock, flags);
  907. *(int *)&reg_00 = io_apic_read(apic, 0);
  908. spin_unlock_irqrestore(&ioapic_lock, flags);
  909. old_id = mp_ioapics[apic].mpc_apicid;
  910. if (mp_ioapics[apic].mpc_apicid >= 0xf) {
  911. printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...n",
  912. apic, mp_ioapics[apic].mpc_apicid);
  913. printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)n",
  914. reg_00.ID);
  915. mp_ioapics[apic].mpc_apicid = reg_00.ID;
  916. }
  917. /*
  918.  * Sanity check, is the ID really free? Every APIC in a
  919.  * system must have a unique ID or we get lots of nice
  920.  * 'stuck on smp_invalidate_needed IPI wait' messages.
  921.  */
  922. if (phys_id_present_map & (1 << mp_ioapics[apic].mpc_apicid)) {
  923. printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...n",
  924. apic, mp_ioapics[apic].mpc_apicid);
  925. for (i = 0; i < 0xf; i++)
  926. if (!(phys_id_present_map & (1 << i)))
  927. break;
  928. if (i >= 0xf)
  929. panic("Max APIC ID exceeded!n");
  930. printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)n",
  931. i);
  932. phys_id_present_map |= 1 << i;
  933. mp_ioapics[apic].mpc_apicid = i;
  934. } else {
  935. printk("Setting %d in the phys_id_present_mapn", mp_ioapics[apic].mpc_apicid);
  936. phys_id_present_map |= 1 << mp_ioapics[apic].mpc_apicid;
  937. }
  938. /*
  939.  * We need to adjust the IRQ routing table
  940.  * if the ID changed.
  941.  */
  942. if (old_id != mp_ioapics[apic].mpc_apicid)
  943. for (i = 0; i < mp_irq_entries; i++)
  944. if (mp_irqs[i].mpc_dstapic == old_id)
  945. mp_irqs[i].mpc_dstapic
  946. = mp_ioapics[apic].mpc_apicid;
  947. /*
  948.  * Read the right value from the MPC table and
  949.  * write it into the ID register.
  950.    */
  951. printk(KERN_INFO "...changing IO-APIC physical APIC ID to %d ...",
  952. mp_ioapics[apic].mpc_apicid);
  953. reg_00.ID = mp_ioapics[apic].mpc_apicid;
  954. spin_lock_irqsave(&ioapic_lock, flags);
  955. io_apic_write(apic, 0, *(int *)&reg_00);
  956. spin_unlock_irqrestore(&ioapic_lock, flags);
  957. /*
  958.  * Sanity check
  959.  */
  960. spin_lock_irqsave(&ioapic_lock, flags);
  961. *(int *)&reg_00 = io_apic_read(apic, 0);
  962. spin_unlock_irqrestore(&ioapic_lock, flags);
  963. if (reg_00.ID != mp_ioapics[apic].mpc_apicid)
  964. panic("could not set ID!n");
  965. else
  966. printk(" ok.n");
  967. }
  968. }
  969. /*
  970.  * There is a nasty bug in some older SMP boards, their mptable lies
  971.  * about the timer IRQ. We do the following to work around the situation:
  972.  *
  973.  * - timer IRQ defaults to IO-APIC IRQ
  974.  * - if this function detects that timer IRQs are defunct, then we fall
  975.  *   back to ISA timer IRQs
  976.  */
  977. static int __init timer_irq_works(void)
  978. {
  979. unsigned int t1 = jiffies;
  980. sti();
  981. /* Let ten ticks pass... */
  982. mdelay((10 * 1000) / HZ);
  983. /*
  984.  * Expect a few ticks at least, to be sure some possible
  985.  * glue logic does not lock up after one or two first
  986.  * ticks in a non-ExtINT mode.  Also the local APIC
  987.  * might have cached one ExtINT interrupt.  Finally, at
  988.  * least one tick may be lost due to delays.
  989.  */
  990. if (jiffies - t1 > 4)
  991. return 1;
  992. return 0;
  993. }
  994. /*
  995.  * In the SMP+IOAPIC case it might happen that there are an unspecified
  996.  * number of pending IRQ events unhandled. These cases are very rare,
  997.  * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
  998.  * better to do it this way as thus we do not have to be aware of
  999.  * 'pending' interrupts in the IRQ path, except at this point.
  1000.  */
  1001. /*
  1002.  * Edge triggered needs to resend any interrupt
  1003.  * that was delayed but this is now handled in the device
  1004.  * independent code.
  1005.  */
  1006. #define enable_edge_ioapic_irq unmask_IO_APIC_irq
  1007. static void disable_edge_ioapic_irq (unsigned int irq) { /* nothing */ }
  1008. /*
  1009.  * Starting up a edge-triggered IO-APIC interrupt is
  1010.  * nasty - we need to make sure that we get the edge.
  1011.  * If it is already asserted for some reason, we need
  1012.  * return 1 to indicate that is was pending.
  1013.  *
  1014.  * This is not complete - we should be able to fake
  1015.  * an edge even if it isn't on the 8259A...
  1016.  */
  1017. static unsigned int startup_edge_ioapic_irq(unsigned int irq)
  1018. {
  1019. int was_pending = 0;
  1020. unsigned long flags;
  1021. spin_lock_irqsave(&ioapic_lock, flags);
  1022. if (irq < 16) {
  1023. disable_8259A_irq(irq);
  1024. if (i8259A_irq_pending(irq))
  1025. was_pending = 1;
  1026. }
  1027. __unmask_IO_APIC_irq(irq);
  1028. spin_unlock_irqrestore(&ioapic_lock, flags);
  1029. return was_pending;
  1030. }
  1031. #define shutdown_edge_ioapic_irq disable_edge_ioapic_irq
  1032. /*
  1033.  * Once we have recorded IRQ_PENDING already, we can mask the
  1034.  * interrupt for real. This prevents IRQ storms from unhandled
  1035.  * devices.
  1036.  */
  1037. static void ack_edge_ioapic_irq(unsigned int irq)
  1038. {
  1039. if ((irq_desc[irq].status & (IRQ_PENDING | IRQ_DISABLED))
  1040. == (IRQ_PENDING | IRQ_DISABLED))
  1041. mask_IO_APIC_irq(irq);
  1042. ack_APIC_irq();
  1043. }
  1044. static void end_edge_ioapic_irq (unsigned int i) { /* nothing */ }
  1045. /*
  1046.  * Level triggered interrupts can just be masked,
  1047.  * and shutting down and starting up the interrupt
  1048.  * is the same as enabling and disabling them -- except
  1049.  * with a startup need to return a "was pending" value.
  1050.  *
  1051.  * Level triggered interrupts are special because we
  1052.  * do not touch any IO-APIC register while handling
  1053.  * them. We ack the APIC in the end-IRQ handler, not
  1054.  * in the start-IRQ-handler. Protection against reentrance
  1055.  * from the same interrupt is still provided, both by the
  1056.  * generic IRQ layer and by the fact that an unacked local
  1057.  * APIC does not accept IRQs.
  1058.  */
  1059. static unsigned int startup_level_ioapic_irq (unsigned int irq)
  1060. {
  1061. unmask_IO_APIC_irq(irq);
  1062. return 0; /* don't check for pending */
  1063. }
  1064. #define shutdown_level_ioapic_irq mask_IO_APIC_irq
  1065. #define enable_level_ioapic_irq unmask_IO_APIC_irq
  1066. #define disable_level_ioapic_irq mask_IO_APIC_irq
  1067. static void end_level_ioapic_irq (unsigned int irq)
  1068. {
  1069. unsigned long v;
  1070. int i;
  1071. /*
  1072.  * It appears there is an erratum which affects at least version 0x11
  1073.  * of I/O APIC (that's the 82093AA and cores integrated into various
  1074.  * chipsets).  Under certain conditions a level-triggered interrupt is
  1075.  * erroneously delivered as edge-triggered one but the respective IRR
  1076.  * bit gets set nevertheless.  As a result the I/O unit expects an EOI
  1077.  * message but it will never arrive and further interrupts are blocked
  1078.  * from the source.  The exact reason is so far unknown, but the
  1079.  * phenomenon was observed when two consecutive interrupt requests
  1080.  * from a given source get delivered to the same CPU and the source is
  1081.  * temporarily disabled in between.
  1082.  *
  1083.  * A workaround is to simulate an EOI message manually.  We achieve it
  1084.  * by setting the trigger mode to edge and then to level when the edge
  1085.  * trigger mode gets detected in the TMR of a local APIC for a
  1086.  * level-triggered interrupt.  We mask the source for the time of the
  1087.  * operation to prevent an edge-triggered interrupt escaping meanwhile.
  1088.  * The idea is from Manfred Spraul.  --macro
  1089.  */
  1090. i = IO_APIC_VECTOR(irq);
  1091. v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
  1092. ack_APIC_irq();
  1093. if (!(v & (1 << (i & 0x1f)))) {
  1094. #ifdef APIC_LOCKUP_DEBUG
  1095. struct irq_pin_list *entry;
  1096. #endif
  1097. #ifdef APIC_MISMATCH_DEBUG
  1098. atomic_inc(&irq_mis_count);
  1099. #endif
  1100. spin_lock(&ioapic_lock);
  1101. __mask_and_edge_IO_APIC_irq(irq);
  1102. #ifdef APIC_LOCKUP_DEBUG
  1103. for (entry = irq_2_pin + irq;;) {
  1104. unsigned int reg;
  1105. if (entry->pin == -1)
  1106. break;
  1107. reg = io_apic_read(entry->apic, 0x10 + entry->pin * 2);
  1108. if (reg & 0x00004000)
  1109. printk(KERN_CRIT "Aieee!!!  Remote IRR"
  1110. " still set after unlock!n");
  1111. if (!entry->next)
  1112. break;
  1113. entry = irq_2_pin + entry->next;
  1114. }
  1115. #endif
  1116. __unmask_and_level_IO_APIC_irq(irq);
  1117. spin_unlock(&ioapic_lock);
  1118. }
  1119. }
  1120. static void mask_and_ack_level_ioapic_irq (unsigned int irq) { /* nothing */ }
  1121. static void set_ioapic_affinity (unsigned int irq, unsigned long mask)
  1122. {
  1123. unsigned long flags;
  1124. /*
  1125.  * Only the first 8 bits are valid.
  1126.  */
  1127. mask = mask << 24;
  1128. spin_lock_irqsave(&ioapic_lock, flags);
  1129. __DO_ACTION(1, = mask, )
  1130. spin_unlock_irqrestore(&ioapic_lock, flags);
  1131. }
  1132. /*
  1133.  * Level and edge triggered IO-APIC interrupts need different handling,
  1134.  * so we use two separate IRQ descriptors. Edge triggered IRQs can be
  1135.  * handled with the level-triggered descriptor, but that one has slightly
  1136.  * more overhead. Level-triggered interrupts cannot be handled with the
  1137.  * edge-triggered handler, without risking IRQ storms and other ugly
  1138.  * races.
  1139.  */
  1140. static struct hw_interrupt_type ioapic_edge_irq_type = {
  1141. "IO-APIC-edge",
  1142. startup_edge_ioapic_irq,
  1143. shutdown_edge_ioapic_irq,
  1144. enable_edge_ioapic_irq,
  1145. disable_edge_ioapic_irq,
  1146. ack_edge_ioapic_irq,
  1147. end_edge_ioapic_irq,
  1148. set_ioapic_affinity,
  1149. };
  1150. static struct hw_interrupt_type ioapic_level_irq_type = {
  1151. "IO-APIC-level",
  1152. startup_level_ioapic_irq,
  1153. shutdown_level_ioapic_irq,
  1154. enable_level_ioapic_irq,
  1155. disable_level_ioapic_irq,
  1156. mask_and_ack_level_ioapic_irq,
  1157. end_level_ioapic_irq,
  1158. set_ioapic_affinity,
  1159. };
  1160. static inline void init_IO_APIC_traps(void)
  1161. {
  1162. int irq;
  1163. /*
  1164.  * NOTE! The local APIC isn't very good at handling
  1165.  * multiple interrupts at the same interrupt level.
  1166.  * As the interrupt level is determined by taking the
  1167.  * vector number and shifting that right by 4, we
  1168.  * want to spread these out a bit so that they don't
  1169.  * all fall in the same interrupt level.
  1170.  *
  1171.  * Also, we've got to be careful not to trash gate
  1172.  * 0x80, because int 0x80 is hm, kind of importantish. ;)
  1173.  */
  1174. for (irq = 0; irq < NR_IRQS ; irq++) {
  1175. if (IO_APIC_IRQ(irq) && !IO_APIC_VECTOR(irq)) {
  1176. /*
  1177.  * Hmm.. We don't have an entry for this,
  1178.  * so default to an old-fashioned 8259
  1179.  * interrupt if we can..
  1180.  */
  1181. if (irq < 16)
  1182. make_8259A_irq(irq);
  1183. else
  1184. /* Strange. Oh, well.. */
  1185. irq_desc[irq].handler = &no_irq_type;
  1186. }
  1187. }
  1188. }
  1189. static void enable_lapic_irq (unsigned int irq)
  1190. {
  1191. unsigned long v;
  1192. v = apic_read(APIC_LVT0);
  1193. apic_write_around(APIC_LVT0, v & ~APIC_LVT_MASKED);
  1194. }
  1195. static void disable_lapic_irq (unsigned int irq)
  1196. {
  1197. unsigned long v;
  1198. v = apic_read(APIC_LVT0);
  1199. apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
  1200. }
  1201. static void ack_lapic_irq (unsigned int irq)
  1202. {
  1203. ack_APIC_irq();
  1204. }
  1205. static void end_lapic_irq (unsigned int i) { /* nothing */ }
  1206. static struct hw_interrupt_type lapic_irq_type = {
  1207. "local-APIC-edge",
  1208. NULL, /* startup_irq() not used for IRQ0 */
  1209. NULL, /* shutdown_irq() not used for IRQ0 */
  1210. enable_lapic_irq,
  1211. disable_lapic_irq,
  1212. ack_lapic_irq,
  1213. end_lapic_irq
  1214. };
  1215. static void enable_NMI_through_LVT0 (void * dummy)
  1216. {
  1217. unsigned int v, ver;
  1218. ver = apic_read(APIC_LVR);
  1219. ver = GET_APIC_VERSION(ver);
  1220. v = APIC_DM_NMI; /* unmask and set to NMI */
  1221. if (!APIC_INTEGRATED(ver)) /* 82489DX */
  1222. v |= APIC_LVT_LEVEL_TRIGGER;
  1223. apic_write_around(APIC_LVT0, v);
  1224. }
  1225. static void setup_nmi (void)
  1226. {
  1227. /*
  1228.    * Dirty trick to enable the NMI watchdog ...
  1229.  * We put the 8259A master into AEOI mode and
  1230.  * unmask on all local APICs LVT0 as NMI.
  1231.  *
  1232.  * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
  1233.  * is from Maciej W. Rozycki - so we do not have to EOI from
  1234.  * the NMI handler or the timer interrupt.
  1235.  */ 
  1236. printk(KERN_INFO "activating NMI Watchdog ...");
  1237. smp_call_function(enable_NMI_through_LVT0, NULL, 1, 1);
  1238. enable_NMI_through_LVT0(NULL);
  1239. printk(" done.n");
  1240. }
  1241. /*
  1242.  * This looks a bit hackish but it's about the only one way of sending
  1243.  * a few INTA cycles to 8259As and any associated glue logic.  ICR does
  1244.  * not support the ExtINT mode, unfortunately.  We need to send these
  1245.  * cycles as some i82489DX-based boards have glue logic that keeps the
  1246.  * 8259A interrupt line asserted until INTA.  --macro
  1247.  */
  1248. static inline void unlock_ExtINT_logic(void)
  1249. {
  1250. int pin, i;
  1251. struct IO_APIC_route_entry entry0, entry1;
  1252. unsigned char save_control, save_freq_select;
  1253. unsigned long flags;
  1254. pin = find_isa_irq_pin(8, mp_INT);
  1255. if (pin == -1)
  1256. return;
  1257. spin_lock_irqsave(&ioapic_lock, flags);
  1258. *(((int *)&entry0) + 1) = io_apic_read(0, 0x11 + 2 * pin);
  1259. *(((int *)&entry0) + 0) = io_apic_read(0, 0x10 + 2 * pin);
  1260. spin_unlock_irqrestore(&ioapic_lock, flags);
  1261. clear_IO_APIC_pin(0, pin);
  1262. memset(&entry1, 0, sizeof(entry1));
  1263. entry1.dest_mode = 0; /* physical delivery */
  1264. entry1.mask = 0; /* unmask IRQ now */
  1265. entry1.dest.physical.physical_dest = hard_smp_processor_id();
  1266. entry1.delivery_mode = dest_ExtINT;
  1267. entry1.polarity = entry0.polarity;
  1268. entry1.trigger = 0;
  1269. entry1.vector = 0;
  1270. spin_lock_irqsave(&ioapic_lock, flags);
  1271. io_apic_write(0, 0x11 + 2 * pin, *(((int *)&entry1) + 1));
  1272. io_apic_write(0, 0x10 + 2 * pin, *(((int *)&entry1) + 0));
  1273. spin_unlock_irqrestore(&ioapic_lock, flags);
  1274. save_control = CMOS_READ(RTC_CONTROL);
  1275. save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
  1276. CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
  1277.    RTC_FREQ_SELECT);
  1278. CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
  1279. i = 100;
  1280. while (i-- > 0) {
  1281. mdelay(10);
  1282. if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
  1283. i -= 10;
  1284. }
  1285. CMOS_WRITE(save_control, RTC_CONTROL);
  1286. CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
  1287. clear_IO_APIC_pin(0, pin);
  1288. spin_lock_irqsave(&ioapic_lock, flags);
  1289. io_apic_write(0, 0x11 + 2 * pin, *(((int *)&entry0) + 1));
  1290. io_apic_write(0, 0x10 + 2 * pin, *(((int *)&entry0) + 0));
  1291. spin_unlock_irqrestore(&ioapic_lock, flags);
  1292. }
  1293. /*
  1294.  * This code may look a bit paranoid, but it's supposed to cooperate with
  1295.  * a wide range of boards and BIOS bugs.  Fortunately only the timer IRQ
  1296.  * is so screwy.  Thanks to Brian Perkins for testing/hacking this beast
  1297.  * fanatically on his truly buggy board.
  1298.  */
  1299. static inline void check_timer(void)
  1300. {
  1301. extern int timer_ack;
  1302. int pin1, pin2;
  1303. int vector;
  1304. /*
  1305.  * get/set the timer IRQ vector:
  1306.  */
  1307. disable_8259A_irq(0);
  1308. vector = assign_irq_vector(0);
  1309. set_intr_gate(vector, interrupt[0]);
  1310. /*
  1311.  * Subtle, code in do_timer_interrupt() expects an AEOI
  1312.  * mode for the 8259A whenever interrupts are routed
  1313.  * through I/O APICs.  Also IRQ0 has to be enabled in
  1314.  * the 8259A which implies the virtual wire has to be
  1315.  * disabled in the local APIC.
  1316.  */
  1317. apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
  1318. init_8259A(1);
  1319. timer_ack = 1;
  1320. enable_8259A_irq(0);
  1321. pin1 = find_isa_irq_pin(0, mp_INT);
  1322. pin2 = find_isa_irq_pin(0, mp_ExtINT);
  1323. printk(KERN_INFO "..TIMER: vector=0x%02X pin1=%d pin2=%dn", vector, pin1, pin2);
  1324. if (pin1 != -1) {
  1325. /*
  1326.  * Ok, does IRQ0 through the IOAPIC work?
  1327.  */
  1328. unmask_IO_APIC_irq(0);
  1329. if (timer_irq_works()) {
  1330. if (nmi_watchdog == NMI_IO_APIC) {
  1331. disable_8259A_irq(0);
  1332. setup_nmi();
  1333. enable_8259A_irq(0);
  1334. check_nmi_watchdog();
  1335. }
  1336. return;
  1337. }
  1338. clear_IO_APIC_pin(0, pin1);
  1339. printk(KERN_ERR "..MP-BIOS bug: 8254 timer not connected to IO-APICn");
  1340. }
  1341. printk(KERN_INFO "...trying to set up timer (IRQ0) through the 8259A ... ");
  1342. if (pin2 != -1) {
  1343. printk("n..... (found pin %d) ...", pin2);
  1344. /*
  1345.  * legacy devices should be connected to IO APIC #0
  1346.  */
  1347. setup_ExtINT_IRQ0_pin(pin2, vector);
  1348. if (timer_irq_works()) {
  1349. printk("works.n");
  1350. if (pin1 != -1)
  1351. replace_pin_at_irq(0, 0, pin1, 0, pin2);
  1352. else
  1353. add_pin_to_irq(0, 0, pin2);
  1354. if (nmi_watchdog == NMI_IO_APIC) {
  1355. setup_nmi();
  1356. check_nmi_watchdog();
  1357. }
  1358. return;
  1359. }
  1360. /*
  1361.  * Cleanup, just in case ...
  1362.  */
  1363. clear_IO_APIC_pin(0, pin2);
  1364. }
  1365. printk(" failed.n");
  1366. if (nmi_watchdog) {
  1367. printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!n");
  1368. nmi_watchdog = 0;
  1369. }
  1370. printk(KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
  1371. disable_8259A_irq(0);
  1372. irq_desc[0].handler = &lapic_irq_type;
  1373. apic_write_around(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
  1374. enable_8259A_irq(0);
  1375. if (timer_irq_works()) {
  1376. printk(" works.n");
  1377. return;
  1378. }
  1379. apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
  1380. printk(" failed.n");
  1381. printk(KERN_INFO "...trying to set up timer as ExtINT IRQ...");
  1382. init_8259A(0);
  1383. make_8259A_irq(0);
  1384. apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
  1385. unlock_ExtINT_logic();
  1386. if (timer_irq_works()) {
  1387. printk(" works.n");
  1388. return;
  1389. }
  1390. printk(" failed :(.n");
  1391. panic("IO-APIC + timer doesn't work! pester mingo@redhat.com");
  1392. }
  1393. /*
  1394.  *
  1395.  * IRQ's that are handled by the old PIC in all cases:
  1396.  * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
  1397.  *   Linux doesn't really care, as it's not actually used
  1398.  *   for any interrupt handling anyway.
  1399.  * - There used to be IRQ13 here as well, but all
  1400.  *   MPS-compliant must not use it for FPU coupling and we
  1401.  *   want to use exception 16 anyway.  And there are
  1402.  *   systems who connect it to an I/O APIC for other uses.
  1403.  *   Thus we don't mark it special any longer.
  1404.  *
  1405.  * Additionally, something is definitely wrong with irq9
  1406.  * on PIIX4 boards.
  1407.  */
  1408. #define PIC_IRQS (1<<2)
  1409. void __init setup_IO_APIC(void)
  1410. {
  1411. enable_IO_APIC();
  1412. io_apic_irqs = ~PIC_IRQS;
  1413. printk("ENABLING IO-APIC IRQsn");
  1414. /*
  1415.  * Set up the IO-APIC IRQ routing table by parsing the MP-BIOS
  1416.  * mptable:
  1417.  */
  1418. setup_ioapic_ids_from_mpc();
  1419. sync_Arb_IDs();
  1420. setup_IO_APIC_irqs();
  1421. init_IO_APIC_traps();
  1422. check_timer();
  1423. print_IO_APIC();
  1424. }