io_apic_64.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382
  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. * Paul Diefenbaugh : Added full ACPI support
  21. */
  22. #include <linux/mm.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/init.h>
  25. #include <linux/delay.h>
  26. #include <linux/sched.h>
  27. #include <linux/pci.h>
  28. #include <linux/mc146818rtc.h>
  29. #include <linux/acpi.h>
  30. #include <linux/sysdev.h>
  31. #include <linux/msi.h>
  32. #include <linux/htirq.h>
  33. #include <linux/dmar.h>
  34. #include <linux/jiffies.h>
  35. #ifdef CONFIG_ACPI
  36. #include <acpi/acpi_bus.h>
  37. #endif
  38. #include <linux/bootmem.h>
  39. #include <asm/idle.h>
  40. #include <asm/io.h>
  41. #include <asm/smp.h>
  42. #include <asm/desc.h>
  43. #include <asm/proto.h>
  44. #include <asm/acpi.h>
  45. #include <asm/dma.h>
  46. #include <asm/nmi.h>
  47. #include <asm/msidef.h>
  48. #include <asm/hypertransport.h>
  49. #include <mach_ipi.h>
  50. #include <mach_apic.h>
  51. struct irq_cfg {
  52. cpumask_t domain;
  53. cpumask_t old_domain;
  54. unsigned move_cleanup_count;
  55. u8 vector;
  56. u8 move_in_progress : 1;
  57. };
  58. /* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
  59. static struct irq_cfg irq_cfg[NR_IRQS] __read_mostly = {
  60. [0] = { .domain = CPU_MASK_ALL, .vector = IRQ0_VECTOR, },
  61. [1] = { .domain = CPU_MASK_ALL, .vector = IRQ1_VECTOR, },
  62. [2] = { .domain = CPU_MASK_ALL, .vector = IRQ2_VECTOR, },
  63. [3] = { .domain = CPU_MASK_ALL, .vector = IRQ3_VECTOR, },
  64. [4] = { .domain = CPU_MASK_ALL, .vector = IRQ4_VECTOR, },
  65. [5] = { .domain = CPU_MASK_ALL, .vector = IRQ5_VECTOR, },
  66. [6] = { .domain = CPU_MASK_ALL, .vector = IRQ6_VECTOR, },
  67. [7] = { .domain = CPU_MASK_ALL, .vector = IRQ7_VECTOR, },
  68. [8] = { .domain = CPU_MASK_ALL, .vector = IRQ8_VECTOR, },
  69. [9] = { .domain = CPU_MASK_ALL, .vector = IRQ9_VECTOR, },
  70. [10] = { .domain = CPU_MASK_ALL, .vector = IRQ10_VECTOR, },
  71. [11] = { .domain = CPU_MASK_ALL, .vector = IRQ11_VECTOR, },
  72. [12] = { .domain = CPU_MASK_ALL, .vector = IRQ12_VECTOR, },
  73. [13] = { .domain = CPU_MASK_ALL, .vector = IRQ13_VECTOR, },
  74. [14] = { .domain = CPU_MASK_ALL, .vector = IRQ14_VECTOR, },
  75. [15] = { .domain = CPU_MASK_ALL, .vector = IRQ15_VECTOR, },
  76. };
  77. static int assign_irq_vector(int irq, cpumask_t mask);
  78. #define __apicdebuginit __init
  79. int sis_apic_bug; /* not actually supported, dummy for compile */
  80. static int no_timer_check;
  81. static int disable_timer_pin_1 __initdata;
  82. int timer_through_8259 __initdata;
  83. /* Where if anywhere is the i8259 connect in external int mode */
  84. static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
  85. static DEFINE_SPINLOCK(ioapic_lock);
  86. DEFINE_SPINLOCK(vector_lock);
  87. /*
  88. * # of IRQ routing registers
  89. */
  90. int nr_ioapic_registers[MAX_IO_APICS];
  91. /* I/O APIC entries */
  92. struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
  93. int nr_ioapics;
  94. /* MP IRQ source entries */
  95. struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
  96. /* # of MP IRQ source entries */
  97. int mp_irq_entries;
  98. /*
  99. * Rough estimation of how many shared IRQs there are, can
  100. * be changed anytime.
  101. */
  102. #define MAX_PLUS_SHARED_IRQS NR_IRQS
  103. #define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
  104. /*
  105. * This is performance-critical, we want to do it O(1)
  106. *
  107. * the indexing order of this array favors 1:1 mappings
  108. * between pins and IRQs.
  109. */
  110. static struct irq_pin_list {
  111. short apic, pin, next;
  112. } irq_2_pin[PIN_MAP_SIZE];
  113. struct io_apic {
  114. unsigned int index;
  115. unsigned int unused[3];
  116. unsigned int data;
  117. };
  118. static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
  119. {
  120. return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
  121. + (mp_ioapics[idx].mpc_apicaddr & ~PAGE_MASK);
  122. }
  123. static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
  124. {
  125. struct io_apic __iomem *io_apic = io_apic_base(apic);
  126. writel(reg, &io_apic->index);
  127. return readl(&io_apic->data);
  128. }
  129. static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
  130. {
  131. struct io_apic __iomem *io_apic = io_apic_base(apic);
  132. writel(reg, &io_apic->index);
  133. writel(value, &io_apic->data);
  134. }
  135. /*
  136. * Re-write a value: to be used for read-modify-write
  137. * cycles where the read already set up the index register.
  138. */
  139. static inline void io_apic_modify(unsigned int apic, unsigned int value)
  140. {
  141. struct io_apic __iomem *io_apic = io_apic_base(apic);
  142. writel(value, &io_apic->data);
  143. }
  144. static bool io_apic_level_ack_pending(unsigned int irq)
  145. {
  146. struct irq_pin_list *entry;
  147. unsigned long flags;
  148. spin_lock_irqsave(&ioapic_lock, flags);
  149. entry = irq_2_pin + irq;
  150. for (;;) {
  151. unsigned int reg;
  152. int pin;
  153. pin = entry->pin;
  154. if (pin == -1)
  155. break;
  156. reg = io_apic_read(entry->apic, 0x10 + pin*2);
  157. /* Is the remote IRR bit set? */
  158. if ((reg >> 14) & 1) {
  159. spin_unlock_irqrestore(&ioapic_lock, flags);
  160. return true;
  161. }
  162. if (!entry->next)
  163. break;
  164. entry = irq_2_pin + entry->next;
  165. }
  166. spin_unlock_irqrestore(&ioapic_lock, flags);
  167. return false;
  168. }
  169. /*
  170. * Synchronize the IO-APIC and the CPU by doing
  171. * a dummy read from the IO-APIC
  172. */
  173. static inline void io_apic_sync(unsigned int apic)
  174. {
  175. struct io_apic __iomem *io_apic = io_apic_base(apic);
  176. readl(&io_apic->data);
  177. }
  178. #define __DO_ACTION(R, ACTION, FINAL) \
  179. \
  180. { \
  181. int pin; \
  182. struct irq_pin_list *entry = irq_2_pin + irq; \
  183. \
  184. BUG_ON(irq >= NR_IRQS); \
  185. for (;;) { \
  186. unsigned int reg; \
  187. pin = entry->pin; \
  188. if (pin == -1) \
  189. break; \
  190. reg = io_apic_read(entry->apic, 0x10 + R + pin*2); \
  191. reg ACTION; \
  192. io_apic_modify(entry->apic, reg); \
  193. FINAL; \
  194. if (!entry->next) \
  195. break; \
  196. entry = irq_2_pin + entry->next; \
  197. } \
  198. }
  199. union entry_union {
  200. struct { u32 w1, w2; };
  201. struct IO_APIC_route_entry entry;
  202. };
  203. static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
  204. {
  205. union entry_union eu;
  206. unsigned long flags;
  207. spin_lock_irqsave(&ioapic_lock, flags);
  208. eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
  209. eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
  210. spin_unlock_irqrestore(&ioapic_lock, flags);
  211. return eu.entry;
  212. }
  213. /*
  214. * When we write a new IO APIC routing entry, we need to write the high
  215. * word first! If the mask bit in the low word is clear, we will enable
  216. * the interrupt, and we need to make sure the entry is fully populated
  217. * before that happens.
  218. */
  219. static void
  220. __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
  221. {
  222. union entry_union eu;
  223. eu.entry = e;
  224. io_apic_write(apic, 0x11 + 2*pin, eu.w2);
  225. io_apic_write(apic, 0x10 + 2*pin, eu.w1);
  226. }
  227. static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
  228. {
  229. unsigned long flags;
  230. spin_lock_irqsave(&ioapic_lock, flags);
  231. __ioapic_write_entry(apic, pin, e);
  232. spin_unlock_irqrestore(&ioapic_lock, flags);
  233. }
  234. /*
  235. * When we mask an IO APIC routing entry, we need to write the low
  236. * word first, in order to set the mask bit before we change the
  237. * high bits!
  238. */
  239. static void ioapic_mask_entry(int apic, int pin)
  240. {
  241. unsigned long flags;
  242. union entry_union eu = { .entry.mask = 1 };
  243. spin_lock_irqsave(&ioapic_lock, flags);
  244. io_apic_write(apic, 0x10 + 2*pin, eu.w1);
  245. io_apic_write(apic, 0x11 + 2*pin, eu.w2);
  246. spin_unlock_irqrestore(&ioapic_lock, flags);
  247. }
  248. #ifdef CONFIG_SMP
  249. static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, u8 vector)
  250. {
  251. int apic, pin;
  252. struct irq_pin_list *entry = irq_2_pin + irq;
  253. BUG_ON(irq >= NR_IRQS);
  254. for (;;) {
  255. unsigned int reg;
  256. apic = entry->apic;
  257. pin = entry->pin;
  258. if (pin == -1)
  259. break;
  260. io_apic_write(apic, 0x11 + pin*2, dest);
  261. reg = io_apic_read(apic, 0x10 + pin*2);
  262. reg &= ~0x000000ff;
  263. reg |= vector;
  264. io_apic_modify(apic, reg);
  265. if (!entry->next)
  266. break;
  267. entry = irq_2_pin + entry->next;
  268. }
  269. }
  270. static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t mask)
  271. {
  272. struct irq_cfg *cfg = irq_cfg + irq;
  273. unsigned long flags;
  274. unsigned int dest;
  275. cpumask_t tmp;
  276. cpus_and(tmp, mask, cpu_online_map);
  277. if (cpus_empty(tmp))
  278. return;
  279. if (assign_irq_vector(irq, mask))
  280. return;
  281. cpus_and(tmp, cfg->domain, mask);
  282. dest = cpu_mask_to_apicid(tmp);
  283. /*
  284. * Only the high 8 bits are valid.
  285. */
  286. dest = SET_APIC_LOGICAL_ID(dest);
  287. spin_lock_irqsave(&ioapic_lock, flags);
  288. __target_IO_APIC_irq(irq, dest, cfg->vector);
  289. irq_desc[irq].affinity = mask;
  290. spin_unlock_irqrestore(&ioapic_lock, flags);
  291. }
  292. #endif
  293. /*
  294. * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
  295. * shared ISA-space IRQs, so we have to support them. We are super
  296. * fast in the common case, and fast for shared ISA-space IRQs.
  297. */
  298. static void add_pin_to_irq(unsigned int irq, int apic, int pin)
  299. {
  300. static int first_free_entry = NR_IRQS;
  301. struct irq_pin_list *entry = irq_2_pin + irq;
  302. BUG_ON(irq >= NR_IRQS);
  303. while (entry->next)
  304. entry = irq_2_pin + entry->next;
  305. if (entry->pin != -1) {
  306. entry->next = first_free_entry;
  307. entry = irq_2_pin + entry->next;
  308. if (++first_free_entry >= PIN_MAP_SIZE)
  309. panic("io_apic.c: ran out of irq_2_pin entries!");
  310. }
  311. entry->apic = apic;
  312. entry->pin = pin;
  313. }
  314. #define DO_ACTION(name,R,ACTION, FINAL) \
  315. \
  316. static void name##_IO_APIC_irq (unsigned int irq) \
  317. __DO_ACTION(R, ACTION, FINAL)
  318. DO_ACTION( __mask, 0, |= 0x00010000, io_apic_sync(entry->apic) )
  319. /* mask = 1 */
  320. DO_ACTION( __unmask, 0, &= 0xfffeffff, )
  321. /* mask = 0 */
  322. static void mask_IO_APIC_irq (unsigned int irq)
  323. {
  324. unsigned long flags;
  325. spin_lock_irqsave(&ioapic_lock, flags);
  326. __mask_IO_APIC_irq(irq);
  327. spin_unlock_irqrestore(&ioapic_lock, flags);
  328. }
  329. static void unmask_IO_APIC_irq (unsigned int irq)
  330. {
  331. unsigned long flags;
  332. spin_lock_irqsave(&ioapic_lock, flags);
  333. __unmask_IO_APIC_irq(irq);
  334. spin_unlock_irqrestore(&ioapic_lock, flags);
  335. }
  336. static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
  337. {
  338. struct IO_APIC_route_entry entry;
  339. /* Check delivery_mode to be sure we're not clearing an SMI pin */
  340. entry = ioapic_read_entry(apic, pin);
  341. if (entry.delivery_mode == dest_SMI)
  342. return;
  343. /*
  344. * Disable it in the IO-APIC irq-routing table:
  345. */
  346. ioapic_mask_entry(apic, pin);
  347. }
  348. static void clear_IO_APIC (void)
  349. {
  350. int apic, pin;
  351. for (apic = 0; apic < nr_ioapics; apic++)
  352. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
  353. clear_IO_APIC_pin(apic, pin);
  354. }
  355. int skip_ioapic_setup;
  356. int ioapic_force;
  357. static int __init parse_noapic(char *str)
  358. {
  359. disable_ioapic_setup();
  360. return 0;
  361. }
  362. early_param("noapic", parse_noapic);
  363. /* Actually the next is obsolete, but keep it for paranoid reasons -AK */
  364. static int __init disable_timer_pin_setup(char *arg)
  365. {
  366. disable_timer_pin_1 = 1;
  367. return 1;
  368. }
  369. __setup("disable_timer_pin_1", disable_timer_pin_setup);
  370. /*
  371. * Find the IRQ entry number of a certain pin.
  372. */
  373. static int find_irq_entry(int apic, int pin, int type)
  374. {
  375. int i;
  376. for (i = 0; i < mp_irq_entries; i++)
  377. if (mp_irqs[i].mpc_irqtype == type &&
  378. (mp_irqs[i].mpc_dstapic == mp_ioapics[apic].mpc_apicid ||
  379. mp_irqs[i].mpc_dstapic == MP_APIC_ALL) &&
  380. mp_irqs[i].mpc_dstirq == pin)
  381. return i;
  382. return -1;
  383. }
  384. /*
  385. * Find the pin to which IRQ[irq] (ISA) is connected
  386. */
  387. static int __init find_isa_irq_pin(int irq, int type)
  388. {
  389. int i;
  390. for (i = 0; i < mp_irq_entries; i++) {
  391. int lbus = mp_irqs[i].mpc_srcbus;
  392. if (test_bit(lbus, mp_bus_not_pci) &&
  393. (mp_irqs[i].mpc_irqtype == type) &&
  394. (mp_irqs[i].mpc_srcbusirq == irq))
  395. return mp_irqs[i].mpc_dstirq;
  396. }
  397. return -1;
  398. }
  399. static int __init find_isa_irq_apic(int irq, int type)
  400. {
  401. int i;
  402. for (i = 0; i < mp_irq_entries; i++) {
  403. int lbus = mp_irqs[i].mpc_srcbus;
  404. if (test_bit(lbus, mp_bus_not_pci) &&
  405. (mp_irqs[i].mpc_irqtype == type) &&
  406. (mp_irqs[i].mpc_srcbusirq == irq))
  407. break;
  408. }
  409. if (i < mp_irq_entries) {
  410. int apic;
  411. for(apic = 0; apic < nr_ioapics; apic++) {
  412. if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic)
  413. return apic;
  414. }
  415. }
  416. return -1;
  417. }
  418. /*
  419. * Find a specific PCI IRQ entry.
  420. * Not an __init, possibly needed by modules
  421. */
  422. static int pin_2_irq(int idx, int apic, int pin);
  423. int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
  424. {
  425. int apic, i, best_guess = -1;
  426. apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
  427. bus, slot, pin);
  428. if (mp_bus_id_to_pci_bus[bus] == -1) {
  429. apic_printk(APIC_VERBOSE, "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
  430. return -1;
  431. }
  432. for (i = 0; i < mp_irq_entries; i++) {
  433. int lbus = mp_irqs[i].mpc_srcbus;
  434. for (apic = 0; apic < nr_ioapics; apic++)
  435. if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic ||
  436. mp_irqs[i].mpc_dstapic == MP_APIC_ALL)
  437. break;
  438. if (!test_bit(lbus, mp_bus_not_pci) &&
  439. !mp_irqs[i].mpc_irqtype &&
  440. (bus == lbus) &&
  441. (slot == ((mp_irqs[i].mpc_srcbusirq >> 2) & 0x1f))) {
  442. int irq = pin_2_irq(i,apic,mp_irqs[i].mpc_dstirq);
  443. if (!(apic || IO_APIC_IRQ(irq)))
  444. continue;
  445. if (pin == (mp_irqs[i].mpc_srcbusirq & 3))
  446. return irq;
  447. /*
  448. * Use the first all-but-pin matching entry as a
  449. * best-guess fuzzy result for broken mptables.
  450. */
  451. if (best_guess < 0)
  452. best_guess = irq;
  453. }
  454. }
  455. BUG_ON(best_guess >= NR_IRQS);
  456. return best_guess;
  457. }
  458. /* ISA interrupts are always polarity zero edge triggered,
  459. * when listed as conforming in the MP table. */
  460. #define default_ISA_trigger(idx) (0)
  461. #define default_ISA_polarity(idx) (0)
  462. /* PCI interrupts are always polarity one level triggered,
  463. * when listed as conforming in the MP table. */
  464. #define default_PCI_trigger(idx) (1)
  465. #define default_PCI_polarity(idx) (1)
  466. static int MPBIOS_polarity(int idx)
  467. {
  468. int bus = mp_irqs[idx].mpc_srcbus;
  469. int polarity;
  470. /*
  471. * Determine IRQ line polarity (high active or low active):
  472. */
  473. switch (mp_irqs[idx].mpc_irqflag & 3)
  474. {
  475. case 0: /* conforms, ie. bus-type dependent polarity */
  476. if (test_bit(bus, mp_bus_not_pci))
  477. polarity = default_ISA_polarity(idx);
  478. else
  479. polarity = default_PCI_polarity(idx);
  480. break;
  481. case 1: /* high active */
  482. {
  483. polarity = 0;
  484. break;
  485. }
  486. case 2: /* reserved */
  487. {
  488. printk(KERN_WARNING "broken BIOS!!\n");
  489. polarity = 1;
  490. break;
  491. }
  492. case 3: /* low active */
  493. {
  494. polarity = 1;
  495. break;
  496. }
  497. default: /* invalid */
  498. {
  499. printk(KERN_WARNING "broken BIOS!!\n");
  500. polarity = 1;
  501. break;
  502. }
  503. }
  504. return polarity;
  505. }
  506. static int MPBIOS_trigger(int idx)
  507. {
  508. int bus = mp_irqs[idx].mpc_srcbus;
  509. int trigger;
  510. /*
  511. * Determine IRQ trigger mode (edge or level sensitive):
  512. */
  513. switch ((mp_irqs[idx].mpc_irqflag>>2) & 3)
  514. {
  515. case 0: /* conforms, ie. bus-type dependent */
  516. if (test_bit(bus, mp_bus_not_pci))
  517. trigger = default_ISA_trigger(idx);
  518. else
  519. trigger = default_PCI_trigger(idx);
  520. break;
  521. case 1: /* edge */
  522. {
  523. trigger = 0;
  524. break;
  525. }
  526. case 2: /* reserved */
  527. {
  528. printk(KERN_WARNING "broken BIOS!!\n");
  529. trigger = 1;
  530. break;
  531. }
  532. case 3: /* level */
  533. {
  534. trigger = 1;
  535. break;
  536. }
  537. default: /* invalid */
  538. {
  539. printk(KERN_WARNING "broken BIOS!!\n");
  540. trigger = 0;
  541. break;
  542. }
  543. }
  544. return trigger;
  545. }
  546. static inline int irq_polarity(int idx)
  547. {
  548. return MPBIOS_polarity(idx);
  549. }
  550. static inline int irq_trigger(int idx)
  551. {
  552. return MPBIOS_trigger(idx);
  553. }
  554. static int pin_2_irq(int idx, int apic, int pin)
  555. {
  556. int irq, i;
  557. int bus = mp_irqs[idx].mpc_srcbus;
  558. /*
  559. * Debugging check, we are in big trouble if this message pops up!
  560. */
  561. if (mp_irqs[idx].mpc_dstirq != pin)
  562. printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
  563. if (test_bit(bus, mp_bus_not_pci)) {
  564. irq = mp_irqs[idx].mpc_srcbusirq;
  565. } else {
  566. /*
  567. * PCI IRQs are mapped in order
  568. */
  569. i = irq = 0;
  570. while (i < apic)
  571. irq += nr_ioapic_registers[i++];
  572. irq += pin;
  573. }
  574. BUG_ON(irq >= NR_IRQS);
  575. return irq;
  576. }
  577. static int __assign_irq_vector(int irq, cpumask_t mask)
  578. {
  579. /*
  580. * NOTE! The local APIC isn't very good at handling
  581. * multiple interrupts at the same interrupt level.
  582. * As the interrupt level is determined by taking the
  583. * vector number and shifting that right by 4, we
  584. * want to spread these out a bit so that they don't
  585. * all fall in the same interrupt level.
  586. *
  587. * Also, we've got to be careful not to trash gate
  588. * 0x80, because int 0x80 is hm, kind of importantish. ;)
  589. */
  590. static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
  591. unsigned int old_vector;
  592. int cpu;
  593. struct irq_cfg *cfg;
  594. BUG_ON((unsigned)irq >= NR_IRQS);
  595. cfg = &irq_cfg[irq];
  596. /* Only try and allocate irqs on cpus that are present */
  597. cpus_and(mask, mask, cpu_online_map);
  598. if ((cfg->move_in_progress) || cfg->move_cleanup_count)
  599. return -EBUSY;
  600. old_vector = cfg->vector;
  601. if (old_vector) {
  602. cpumask_t tmp;
  603. cpus_and(tmp, cfg->domain, mask);
  604. if (!cpus_empty(tmp))
  605. return 0;
  606. }
  607. for_each_cpu_mask(cpu, mask) {
  608. cpumask_t domain, new_mask;
  609. int new_cpu;
  610. int vector, offset;
  611. domain = vector_allocation_domain(cpu);
  612. cpus_and(new_mask, domain, cpu_online_map);
  613. vector = current_vector;
  614. offset = current_offset;
  615. next:
  616. vector += 8;
  617. if (vector >= FIRST_SYSTEM_VECTOR) {
  618. /* If we run out of vectors on large boxen, must share them. */
  619. offset = (offset + 1) % 8;
  620. vector = FIRST_DEVICE_VECTOR + offset;
  621. }
  622. if (unlikely(current_vector == vector))
  623. continue;
  624. if (vector == IA32_SYSCALL_VECTOR)
  625. goto next;
  626. for_each_cpu_mask(new_cpu, new_mask)
  627. if (per_cpu(vector_irq, new_cpu)[vector] != -1)
  628. goto next;
  629. /* Found one! */
  630. current_vector = vector;
  631. current_offset = offset;
  632. if (old_vector) {
  633. cfg->move_in_progress = 1;
  634. cfg->old_domain = cfg->domain;
  635. }
  636. for_each_cpu_mask(new_cpu, new_mask)
  637. per_cpu(vector_irq, new_cpu)[vector] = irq;
  638. cfg->vector = vector;
  639. cfg->domain = domain;
  640. return 0;
  641. }
  642. return -ENOSPC;
  643. }
  644. static int assign_irq_vector(int irq, cpumask_t mask)
  645. {
  646. int err;
  647. unsigned long flags;
  648. spin_lock_irqsave(&vector_lock, flags);
  649. err = __assign_irq_vector(irq, mask);
  650. spin_unlock_irqrestore(&vector_lock, flags);
  651. return err;
  652. }
  653. static void __clear_irq_vector(int irq)
  654. {
  655. struct irq_cfg *cfg;
  656. cpumask_t mask;
  657. int cpu, vector;
  658. BUG_ON((unsigned)irq >= NR_IRQS);
  659. cfg = &irq_cfg[irq];
  660. BUG_ON(!cfg->vector);
  661. vector = cfg->vector;
  662. cpus_and(mask, cfg->domain, cpu_online_map);
  663. for_each_cpu_mask(cpu, mask)
  664. per_cpu(vector_irq, cpu)[vector] = -1;
  665. cfg->vector = 0;
  666. cpus_clear(cfg->domain);
  667. }
  668. void __setup_vector_irq(int cpu)
  669. {
  670. /* Initialize vector_irq on a new cpu */
  671. /* This function must be called with vector_lock held */
  672. int irq, vector;
  673. /* Mark the inuse vectors */
  674. for (irq = 0; irq < NR_IRQS; ++irq) {
  675. if (!cpu_isset(cpu, irq_cfg[irq].domain))
  676. continue;
  677. vector = irq_cfg[irq].vector;
  678. per_cpu(vector_irq, cpu)[vector] = irq;
  679. }
  680. /* Mark the free vectors */
  681. for (vector = 0; vector < NR_VECTORS; ++vector) {
  682. irq = per_cpu(vector_irq, cpu)[vector];
  683. if (irq < 0)
  684. continue;
  685. if (!cpu_isset(cpu, irq_cfg[irq].domain))
  686. per_cpu(vector_irq, cpu)[vector] = -1;
  687. }
  688. }
  689. static struct irq_chip ioapic_chip;
  690. static void ioapic_register_intr(int irq, unsigned long trigger)
  691. {
  692. if (trigger) {
  693. irq_desc[irq].status |= IRQ_LEVEL;
  694. set_irq_chip_and_handler_name(irq, &ioapic_chip,
  695. handle_fasteoi_irq, "fasteoi");
  696. } else {
  697. irq_desc[irq].status &= ~IRQ_LEVEL;
  698. set_irq_chip_and_handler_name(irq, &ioapic_chip,
  699. handle_edge_irq, "edge");
  700. }
  701. }
  702. static void setup_IO_APIC_irq(int apic, int pin, unsigned int irq,
  703. int trigger, int polarity)
  704. {
  705. struct irq_cfg *cfg = irq_cfg + irq;
  706. struct IO_APIC_route_entry entry;
  707. cpumask_t mask;
  708. if (!IO_APIC_IRQ(irq))
  709. return;
  710. mask = TARGET_CPUS;
  711. if (assign_irq_vector(irq, mask))
  712. return;
  713. cpus_and(mask, cfg->domain, mask);
  714. apic_printk(APIC_VERBOSE,KERN_DEBUG
  715. "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
  716. "IRQ %d Mode:%i Active:%i)\n",
  717. apic, mp_ioapics[apic].mpc_apicid, pin, cfg->vector,
  718. irq, trigger, polarity);
  719. /*
  720. * add it to the IO-APIC irq-routing table:
  721. */
  722. memset(&entry,0,sizeof(entry));
  723. entry.delivery_mode = INT_DELIVERY_MODE;
  724. entry.dest_mode = INT_DEST_MODE;
  725. entry.dest = cpu_mask_to_apicid(mask);
  726. entry.mask = 0; /* enable IRQ */
  727. entry.trigger = trigger;
  728. entry.polarity = polarity;
  729. entry.vector = cfg->vector;
  730. /* Mask level triggered irqs.
  731. * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
  732. */
  733. if (trigger)
  734. entry.mask = 1;
  735. ioapic_register_intr(irq, trigger);
  736. if (irq < 16)
  737. disable_8259A_irq(irq);
  738. ioapic_write_entry(apic, pin, entry);
  739. }
  740. static void __init setup_IO_APIC_irqs(void)
  741. {
  742. int apic, pin, idx, irq, first_notcon = 1;
  743. apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
  744. for (apic = 0; apic < nr_ioapics; apic++) {
  745. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
  746. idx = find_irq_entry(apic,pin,mp_INT);
  747. if (idx == -1) {
  748. if (first_notcon) {
  749. apic_printk(APIC_VERBOSE, KERN_DEBUG " IO-APIC (apicid-pin) %d-%d", mp_ioapics[apic].mpc_apicid, pin);
  750. first_notcon = 0;
  751. } else
  752. apic_printk(APIC_VERBOSE, ", %d-%d", mp_ioapics[apic].mpc_apicid, pin);
  753. continue;
  754. }
  755. if (!first_notcon) {
  756. apic_printk(APIC_VERBOSE, " not connected.\n");
  757. first_notcon = 1;
  758. }
  759. irq = pin_2_irq(idx, apic, pin);
  760. add_pin_to_irq(irq, apic, pin);
  761. setup_IO_APIC_irq(apic, pin, irq,
  762. irq_trigger(idx), irq_polarity(idx));
  763. }
  764. }
  765. if (!first_notcon)
  766. apic_printk(APIC_VERBOSE, " not connected.\n");
  767. }
  768. /*
  769. * Set up the timer pin, possibly with the 8259A-master behind.
  770. */
  771. static void __init setup_timer_IRQ0_pin(unsigned int apic, unsigned int pin,
  772. int vector)
  773. {
  774. struct IO_APIC_route_entry entry;
  775. memset(&entry, 0, sizeof(entry));
  776. /*
  777. * We use logical delivery to get the timer IRQ
  778. * to the first CPU.
  779. */
  780. entry.dest_mode = INT_DEST_MODE;
  781. entry.mask = 1; /* mask IRQ now */
  782. entry.dest = cpu_mask_to_apicid(TARGET_CPUS);
  783. entry.delivery_mode = INT_DELIVERY_MODE;
  784. entry.polarity = 0;
  785. entry.trigger = 0;
  786. entry.vector = vector;
  787. /*
  788. * The timer IRQ doesn't have to know that behind the
  789. * scene we may have a 8259A-master in AEOI mode ...
  790. */
  791. set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
  792. /*
  793. * Add it to the IO-APIC irq-routing table:
  794. */
  795. ioapic_write_entry(apic, pin, entry);
  796. }
  797. void __apicdebuginit print_IO_APIC(void)
  798. {
  799. int apic, i;
  800. union IO_APIC_reg_00 reg_00;
  801. union IO_APIC_reg_01 reg_01;
  802. union IO_APIC_reg_02 reg_02;
  803. unsigned long flags;
  804. if (apic_verbosity == APIC_QUIET)
  805. return;
  806. printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
  807. for (i = 0; i < nr_ioapics; i++)
  808. printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
  809. mp_ioapics[i].mpc_apicid, nr_ioapic_registers[i]);
  810. /*
  811. * We are a bit conservative about what we expect. We have to
  812. * know about every hardware change ASAP.
  813. */
  814. printk(KERN_INFO "testing the IO APIC.......................\n");
  815. for (apic = 0; apic < nr_ioapics; apic++) {
  816. spin_lock_irqsave(&ioapic_lock, flags);
  817. reg_00.raw = io_apic_read(apic, 0);
  818. reg_01.raw = io_apic_read(apic, 1);
  819. if (reg_01.bits.version >= 0x10)
  820. reg_02.raw = io_apic_read(apic, 2);
  821. spin_unlock_irqrestore(&ioapic_lock, flags);
  822. printk("\n");
  823. printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mpc_apicid);
  824. printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
  825. printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
  826. printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
  827. printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
  828. printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
  829. printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
  830. if (reg_01.bits.version >= 0x10) {
  831. printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
  832. printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
  833. }
  834. printk(KERN_DEBUG ".... IRQ redirection table:\n");
  835. printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
  836. " Stat Dmod Deli Vect: \n");
  837. for (i = 0; i <= reg_01.bits.entries; i++) {
  838. struct IO_APIC_route_entry entry;
  839. entry = ioapic_read_entry(apic, i);
  840. printk(KERN_DEBUG " %02x %03X ",
  841. i,
  842. entry.dest
  843. );
  844. printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
  845. entry.mask,
  846. entry.trigger,
  847. entry.irr,
  848. entry.polarity,
  849. entry.delivery_status,
  850. entry.dest_mode,
  851. entry.delivery_mode,
  852. entry.vector
  853. );
  854. }
  855. }
  856. printk(KERN_DEBUG "IRQ to pin mappings:\n");
  857. for (i = 0; i < NR_IRQS; i++) {
  858. struct irq_pin_list *entry = irq_2_pin + i;
  859. if (entry->pin < 0)
  860. continue;
  861. printk(KERN_DEBUG "IRQ%d ", i);
  862. for (;;) {
  863. printk("-> %d:%d", entry->apic, entry->pin);
  864. if (!entry->next)
  865. break;
  866. entry = irq_2_pin + entry->next;
  867. }
  868. printk("\n");
  869. }
  870. printk(KERN_INFO ".................................... done.\n");
  871. return;
  872. }
  873. #if 0
  874. static __apicdebuginit void print_APIC_bitfield (int base)
  875. {
  876. unsigned int v;
  877. int i, j;
  878. if (apic_verbosity == APIC_QUIET)
  879. return;
  880. printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
  881. for (i = 0; i < 8; i++) {
  882. v = apic_read(base + i*0x10);
  883. for (j = 0; j < 32; j++) {
  884. if (v & (1<<j))
  885. printk("1");
  886. else
  887. printk("0");
  888. }
  889. printk("\n");
  890. }
  891. }
  892. void __apicdebuginit print_local_APIC(void * dummy)
  893. {
  894. unsigned int v, ver, maxlvt;
  895. if (apic_verbosity == APIC_QUIET)
  896. return;
  897. printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
  898. smp_processor_id(), hard_smp_processor_id());
  899. printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, GET_APIC_ID(read_apic_id()));
  900. v = apic_read(APIC_LVR);
  901. printk(KERN_INFO "... APIC VERSION: %08x\n", v);
  902. ver = GET_APIC_VERSION(v);
  903. maxlvt = lapic_get_maxlvt();
  904. v = apic_read(APIC_TASKPRI);
  905. printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
  906. v = apic_read(APIC_ARBPRI);
  907. printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
  908. v & APIC_ARBPRI_MASK);
  909. v = apic_read(APIC_PROCPRI);
  910. printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
  911. v = apic_read(APIC_EOI);
  912. printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
  913. v = apic_read(APIC_RRR);
  914. printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
  915. v = apic_read(APIC_LDR);
  916. printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
  917. v = apic_read(APIC_DFR);
  918. printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
  919. v = apic_read(APIC_SPIV);
  920. printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
  921. printk(KERN_DEBUG "... APIC ISR field:\n");
  922. print_APIC_bitfield(APIC_ISR);
  923. printk(KERN_DEBUG "... APIC TMR field:\n");
  924. print_APIC_bitfield(APIC_TMR);
  925. printk(KERN_DEBUG "... APIC IRR field:\n");
  926. print_APIC_bitfield(APIC_IRR);
  927. v = apic_read(APIC_ESR);
  928. printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
  929. v = apic_read(APIC_ICR);
  930. printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
  931. v = apic_read(APIC_ICR2);
  932. printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
  933. v = apic_read(APIC_LVTT);
  934. printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
  935. if (maxlvt > 3) { /* PC is LVT#4. */
  936. v = apic_read(APIC_LVTPC);
  937. printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
  938. }
  939. v = apic_read(APIC_LVT0);
  940. printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
  941. v = apic_read(APIC_LVT1);
  942. printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
  943. if (maxlvt > 2) { /* ERR is LVT#3. */
  944. v = apic_read(APIC_LVTERR);
  945. printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
  946. }
  947. v = apic_read(APIC_TMICT);
  948. printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
  949. v = apic_read(APIC_TMCCT);
  950. printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
  951. v = apic_read(APIC_TDCR);
  952. printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
  953. printk("\n");
  954. }
  955. void print_all_local_APICs (void)
  956. {
  957. on_each_cpu(print_local_APIC, NULL, 1, 1);
  958. }
  959. void __apicdebuginit print_PIC(void)
  960. {
  961. unsigned int v;
  962. unsigned long flags;
  963. if (apic_verbosity == APIC_QUIET)
  964. return;
  965. printk(KERN_DEBUG "\nprinting PIC contents\n");
  966. spin_lock_irqsave(&i8259A_lock, flags);
  967. v = inb(0xa1) << 8 | inb(0x21);
  968. printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
  969. v = inb(0xa0) << 8 | inb(0x20);
  970. printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
  971. outb(0x0b,0xa0);
  972. outb(0x0b,0x20);
  973. v = inb(0xa0) << 8 | inb(0x20);
  974. outb(0x0a,0xa0);
  975. outb(0x0a,0x20);
  976. spin_unlock_irqrestore(&i8259A_lock, flags);
  977. printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
  978. v = inb(0x4d1) << 8 | inb(0x4d0);
  979. printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
  980. }
  981. #endif /* 0 */
  982. void __init enable_IO_APIC(void)
  983. {
  984. union IO_APIC_reg_01 reg_01;
  985. int i8259_apic, i8259_pin;
  986. int i, apic;
  987. unsigned long flags;
  988. for (i = 0; i < PIN_MAP_SIZE; i++) {
  989. irq_2_pin[i].pin = -1;
  990. irq_2_pin[i].next = 0;
  991. }
  992. /*
  993. * The number of IO-APIC IRQ registers (== #pins):
  994. */
  995. for (apic = 0; apic < nr_ioapics; apic++) {
  996. spin_lock_irqsave(&ioapic_lock, flags);
  997. reg_01.raw = io_apic_read(apic, 1);
  998. spin_unlock_irqrestore(&ioapic_lock, flags);
  999. nr_ioapic_registers[apic] = reg_01.bits.entries+1;
  1000. }
  1001. for(apic = 0; apic < nr_ioapics; apic++) {
  1002. int pin;
  1003. /* See if any of the pins is in ExtINT mode */
  1004. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
  1005. struct IO_APIC_route_entry entry;
  1006. entry = ioapic_read_entry(apic, pin);
  1007. /* If the interrupt line is enabled and in ExtInt mode
  1008. * I have found the pin where the i8259 is connected.
  1009. */
  1010. if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
  1011. ioapic_i8259.apic = apic;
  1012. ioapic_i8259.pin = pin;
  1013. goto found_i8259;
  1014. }
  1015. }
  1016. }
  1017. found_i8259:
  1018. /* Look to see what if the MP table has reported the ExtINT */
  1019. i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
  1020. i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
  1021. /* Trust the MP table if nothing is setup in the hardware */
  1022. if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
  1023. printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
  1024. ioapic_i8259.pin = i8259_pin;
  1025. ioapic_i8259.apic = i8259_apic;
  1026. }
  1027. /* Complain if the MP table and the hardware disagree */
  1028. if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
  1029. (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
  1030. {
  1031. printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
  1032. }
  1033. /*
  1034. * Do not trust the IO-APIC being empty at bootup
  1035. */
  1036. clear_IO_APIC();
  1037. }
  1038. /*
  1039. * Not an __init, needed by the reboot code
  1040. */
  1041. void disable_IO_APIC(void)
  1042. {
  1043. /*
  1044. * Clear the IO-APIC before rebooting:
  1045. */
  1046. clear_IO_APIC();
  1047. /*
  1048. * If the i8259 is routed through an IOAPIC
  1049. * Put that IOAPIC in virtual wire mode
  1050. * so legacy interrupts can be delivered.
  1051. */
  1052. if (ioapic_i8259.pin != -1) {
  1053. struct IO_APIC_route_entry entry;
  1054. memset(&entry, 0, sizeof(entry));
  1055. entry.mask = 0; /* Enabled */
  1056. entry.trigger = 0; /* Edge */
  1057. entry.irr = 0;
  1058. entry.polarity = 0; /* High */
  1059. entry.delivery_status = 0;
  1060. entry.dest_mode = 0; /* Physical */
  1061. entry.delivery_mode = dest_ExtINT; /* ExtInt */
  1062. entry.vector = 0;
  1063. entry.dest = GET_APIC_ID(read_apic_id());
  1064. /*
  1065. * Add it to the IO-APIC irq-routing table:
  1066. */
  1067. ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
  1068. }
  1069. disconnect_bsp_APIC(ioapic_i8259.pin != -1);
  1070. }
  1071. /*
  1072. * There is a nasty bug in some older SMP boards, their mptable lies
  1073. * about the timer IRQ. We do the following to work around the situation:
  1074. *
  1075. * - timer IRQ defaults to IO-APIC IRQ
  1076. * - if this function detects that timer IRQs are defunct, then we fall
  1077. * back to ISA timer IRQs
  1078. */
  1079. static int __init timer_irq_works(void)
  1080. {
  1081. unsigned long t1 = jiffies;
  1082. unsigned long flags;
  1083. local_save_flags(flags);
  1084. local_irq_enable();
  1085. /* Let ten ticks pass... */
  1086. mdelay((10 * 1000) / HZ);
  1087. local_irq_restore(flags);
  1088. /*
  1089. * Expect a few ticks at least, to be sure some possible
  1090. * glue logic does not lock up after one or two first
  1091. * ticks in a non-ExtINT mode. Also the local APIC
  1092. * might have cached one ExtINT interrupt. Finally, at
  1093. * least one tick may be lost due to delays.
  1094. */
  1095. /* jiffies wrap? */
  1096. if (time_after(jiffies, t1 + 4))
  1097. return 1;
  1098. return 0;
  1099. }
  1100. /*
  1101. * In the SMP+IOAPIC case it might happen that there are an unspecified
  1102. * number of pending IRQ events unhandled. These cases are very rare,
  1103. * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
  1104. * better to do it this way as thus we do not have to be aware of
  1105. * 'pending' interrupts in the IRQ path, except at this point.
  1106. */
  1107. /*
  1108. * Edge triggered needs to resend any interrupt
  1109. * that was delayed but this is now handled in the device
  1110. * independent code.
  1111. */
  1112. /*
  1113. * Starting up a edge-triggered IO-APIC interrupt is
  1114. * nasty - we need to make sure that we get the edge.
  1115. * If it is already asserted for some reason, we need
  1116. * return 1 to indicate that is was pending.
  1117. *
  1118. * This is not complete - we should be able to fake
  1119. * an edge even if it isn't on the 8259A...
  1120. */
  1121. static unsigned int startup_ioapic_irq(unsigned int irq)
  1122. {
  1123. int was_pending = 0;
  1124. unsigned long flags;
  1125. spin_lock_irqsave(&ioapic_lock, flags);
  1126. if (irq < 16) {
  1127. disable_8259A_irq(irq);
  1128. if (i8259A_irq_pending(irq))
  1129. was_pending = 1;
  1130. }
  1131. __unmask_IO_APIC_irq(irq);
  1132. spin_unlock_irqrestore(&ioapic_lock, flags);
  1133. return was_pending;
  1134. }
  1135. static int ioapic_retrigger_irq(unsigned int irq)
  1136. {
  1137. struct irq_cfg *cfg = &irq_cfg[irq];
  1138. cpumask_t mask;
  1139. unsigned long flags;
  1140. spin_lock_irqsave(&vector_lock, flags);
  1141. mask = cpumask_of_cpu(first_cpu(cfg->domain));
  1142. send_IPI_mask(mask, cfg->vector);
  1143. spin_unlock_irqrestore(&vector_lock, flags);
  1144. return 1;
  1145. }
  1146. /*
  1147. * Level and edge triggered IO-APIC interrupts need different handling,
  1148. * so we use two separate IRQ descriptors. Edge triggered IRQs can be
  1149. * handled with the level-triggered descriptor, but that one has slightly
  1150. * more overhead. Level-triggered interrupts cannot be handled with the
  1151. * edge-triggered handler, without risking IRQ storms and other ugly
  1152. * races.
  1153. */
  1154. #ifdef CONFIG_SMP
  1155. asmlinkage void smp_irq_move_cleanup_interrupt(void)
  1156. {
  1157. unsigned vector, me;
  1158. ack_APIC_irq();
  1159. exit_idle();
  1160. irq_enter();
  1161. me = smp_processor_id();
  1162. for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
  1163. unsigned int irq;
  1164. struct irq_desc *desc;
  1165. struct irq_cfg *cfg;
  1166. irq = __get_cpu_var(vector_irq)[vector];
  1167. if (irq >= NR_IRQS)
  1168. continue;
  1169. desc = irq_desc + irq;
  1170. cfg = irq_cfg + irq;
  1171. spin_lock(&desc->lock);
  1172. if (!cfg->move_cleanup_count)
  1173. goto unlock;
  1174. if ((vector == cfg->vector) && cpu_isset(me, cfg->domain))
  1175. goto unlock;
  1176. __get_cpu_var(vector_irq)[vector] = -1;
  1177. cfg->move_cleanup_count--;
  1178. unlock:
  1179. spin_unlock(&desc->lock);
  1180. }
  1181. irq_exit();
  1182. }
  1183. static void irq_complete_move(unsigned int irq)
  1184. {
  1185. struct irq_cfg *cfg = irq_cfg + irq;
  1186. unsigned vector, me;
  1187. if (likely(!cfg->move_in_progress))
  1188. return;
  1189. vector = ~get_irq_regs()->orig_ax;
  1190. me = smp_processor_id();
  1191. if ((vector == cfg->vector) && cpu_isset(me, cfg->domain)) {
  1192. cpumask_t cleanup_mask;
  1193. cpus_and(cleanup_mask, cfg->old_domain, cpu_online_map);
  1194. cfg->move_cleanup_count = cpus_weight(cleanup_mask);
  1195. send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
  1196. cfg->move_in_progress = 0;
  1197. }
  1198. }
  1199. #else
  1200. static inline void irq_complete_move(unsigned int irq) {}
  1201. #endif
  1202. static void ack_apic_edge(unsigned int irq)
  1203. {
  1204. irq_complete_move(irq);
  1205. move_native_irq(irq);
  1206. ack_APIC_irq();
  1207. }
  1208. static void ack_apic_level(unsigned int irq)
  1209. {
  1210. int do_unmask_irq = 0;
  1211. irq_complete_move(irq);
  1212. #ifdef CONFIG_GENERIC_PENDING_IRQ
  1213. /* If we are moving the irq we need to mask it */
  1214. if (unlikely(irq_desc[irq].status & IRQ_MOVE_PENDING)) {
  1215. do_unmask_irq = 1;
  1216. mask_IO_APIC_irq(irq);
  1217. }
  1218. #endif
  1219. /*
  1220. * We must acknowledge the irq before we move it or the acknowledge will
  1221. * not propagate properly.
  1222. */
  1223. ack_APIC_irq();
  1224. /* Now we can move and renable the irq */
  1225. if (unlikely(do_unmask_irq)) {
  1226. /* Only migrate the irq if the ack has been received.
  1227. *
  1228. * On rare occasions the broadcast level triggered ack gets
  1229. * delayed going to ioapics, and if we reprogram the
  1230. * vector while Remote IRR is still set the irq will never
  1231. * fire again.
  1232. *
  1233. * To prevent this scenario we read the Remote IRR bit
  1234. * of the ioapic. This has two effects.
  1235. * - On any sane system the read of the ioapic will
  1236. * flush writes (and acks) going to the ioapic from
  1237. * this cpu.
  1238. * - We get to see if the ACK has actually been delivered.
  1239. *
  1240. * Based on failed experiments of reprogramming the
  1241. * ioapic entry from outside of irq context starting
  1242. * with masking the ioapic entry and then polling until
  1243. * Remote IRR was clear before reprogramming the
  1244. * ioapic I don't trust the Remote IRR bit to be
  1245. * completey accurate.
  1246. *
  1247. * However there appears to be no other way to plug
  1248. * this race, so if the Remote IRR bit is not
  1249. * accurate and is causing problems then it is a hardware bug
  1250. * and you can go talk to the chipset vendor about it.
  1251. */
  1252. if (!io_apic_level_ack_pending(irq))
  1253. move_masked_irq(irq);
  1254. unmask_IO_APIC_irq(irq);
  1255. }
  1256. }
  1257. static struct irq_chip ioapic_chip __read_mostly = {
  1258. .name = "IO-APIC",
  1259. .startup = startup_ioapic_irq,
  1260. .mask = mask_IO_APIC_irq,
  1261. .unmask = unmask_IO_APIC_irq,
  1262. .ack = ack_apic_edge,
  1263. .eoi = ack_apic_level,
  1264. #ifdef CONFIG_SMP
  1265. .set_affinity = set_ioapic_affinity_irq,
  1266. #endif
  1267. .retrigger = ioapic_retrigger_irq,
  1268. };
  1269. static inline void init_IO_APIC_traps(void)
  1270. {
  1271. int irq;
  1272. /*
  1273. * NOTE! The local APIC isn't very good at handling
  1274. * multiple interrupts at the same interrupt level.
  1275. * As the interrupt level is determined by taking the
  1276. * vector number and shifting that right by 4, we
  1277. * want to spread these out a bit so that they don't
  1278. * all fall in the same interrupt level.
  1279. *
  1280. * Also, we've got to be careful not to trash gate
  1281. * 0x80, because int 0x80 is hm, kind of importantish. ;)
  1282. */
  1283. for (irq = 0; irq < NR_IRQS ; irq++) {
  1284. if (IO_APIC_IRQ(irq) && !irq_cfg[irq].vector) {
  1285. /*
  1286. * Hmm.. We don't have an entry for this,
  1287. * so default to an old-fashioned 8259
  1288. * interrupt if we can..
  1289. */
  1290. if (irq < 16)
  1291. make_8259A_irq(irq);
  1292. else
  1293. /* Strange. Oh, well.. */
  1294. irq_desc[irq].chip = &no_irq_chip;
  1295. }
  1296. }
  1297. }
  1298. static void enable_lapic_irq (unsigned int irq)
  1299. {
  1300. unsigned long v;
  1301. v = apic_read(APIC_LVT0);
  1302. apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
  1303. }
  1304. static void disable_lapic_irq (unsigned int irq)
  1305. {
  1306. unsigned long v;
  1307. v = apic_read(APIC_LVT0);
  1308. apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
  1309. }
  1310. static void ack_lapic_irq (unsigned int irq)
  1311. {
  1312. ack_APIC_irq();
  1313. }
  1314. static void end_lapic_irq (unsigned int i) { /* nothing */ }
  1315. static struct hw_interrupt_type lapic_irq_type __read_mostly = {
  1316. .name = "local-APIC",
  1317. .typename = "local-APIC-edge",
  1318. .startup = NULL, /* startup_irq() not used for IRQ0 */
  1319. .shutdown = NULL, /* shutdown_irq() not used for IRQ0 */
  1320. .enable = enable_lapic_irq,
  1321. .disable = disable_lapic_irq,
  1322. .ack = ack_lapic_irq,
  1323. .end = end_lapic_irq,
  1324. };
  1325. static void __init setup_nmi(void)
  1326. {
  1327. /*
  1328. * Dirty trick to enable the NMI watchdog ...
  1329. * We put the 8259A master into AEOI mode and
  1330. * unmask on all local APICs LVT0 as NMI.
  1331. *
  1332. * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
  1333. * is from Maciej W. Rozycki - so we do not have to EOI from
  1334. * the NMI handler or the timer interrupt.
  1335. */
  1336. printk(KERN_INFO "activating NMI Watchdog ...");
  1337. enable_NMI_through_LVT0();
  1338. printk(" done.\n");
  1339. }
  1340. /*
  1341. * This looks a bit hackish but it's about the only one way of sending
  1342. * a few INTA cycles to 8259As and any associated glue logic. ICR does
  1343. * not support the ExtINT mode, unfortunately. We need to send these
  1344. * cycles as some i82489DX-based boards have glue logic that keeps the
  1345. * 8259A interrupt line asserted until INTA. --macro
  1346. */
  1347. static inline void __init unlock_ExtINT_logic(void)
  1348. {
  1349. int apic, pin, i;
  1350. struct IO_APIC_route_entry entry0, entry1;
  1351. unsigned char save_control, save_freq_select;
  1352. pin = find_isa_irq_pin(8, mp_INT);
  1353. apic = find_isa_irq_apic(8, mp_INT);
  1354. if (pin == -1)
  1355. return;
  1356. entry0 = ioapic_read_entry(apic, pin);
  1357. clear_IO_APIC_pin(apic, pin);
  1358. memset(&entry1, 0, sizeof(entry1));
  1359. entry1.dest_mode = 0; /* physical delivery */
  1360. entry1.mask = 0; /* unmask IRQ now */
  1361. entry1.dest = hard_smp_processor_id();
  1362. entry1.delivery_mode = dest_ExtINT;
  1363. entry1.polarity = entry0.polarity;
  1364. entry1.trigger = 0;
  1365. entry1.vector = 0;
  1366. ioapic_write_entry(apic, pin, entry1);
  1367. save_control = CMOS_READ(RTC_CONTROL);
  1368. save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
  1369. CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
  1370. RTC_FREQ_SELECT);
  1371. CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
  1372. i = 100;
  1373. while (i-- > 0) {
  1374. mdelay(10);
  1375. if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
  1376. i -= 10;
  1377. }
  1378. CMOS_WRITE(save_control, RTC_CONTROL);
  1379. CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
  1380. clear_IO_APIC_pin(apic, pin);
  1381. ioapic_write_entry(apic, pin, entry0);
  1382. }
  1383. /*
  1384. * This code may look a bit paranoid, but it's supposed to cooperate with
  1385. * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
  1386. * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
  1387. * fanatically on his truly buggy board.
  1388. *
  1389. * FIXME: really need to revamp this for modern platforms only.
  1390. */
  1391. static inline void __init check_timer(void)
  1392. {
  1393. struct irq_cfg *cfg = irq_cfg + 0;
  1394. int apic1, pin1, apic2, pin2;
  1395. unsigned long flags;
  1396. int no_pin1 = 0;
  1397. local_irq_save(flags);
  1398. /*
  1399. * get/set the timer IRQ vector:
  1400. */
  1401. disable_8259A_irq(0);
  1402. assign_irq_vector(0, TARGET_CPUS);
  1403. /*
  1404. * As IRQ0 is to be enabled in the 8259A, the virtual
  1405. * wire has to be disabled in the local APIC.
  1406. */
  1407. apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
  1408. init_8259A(1);
  1409. pin1 = find_isa_irq_pin(0, mp_INT);
  1410. apic1 = find_isa_irq_apic(0, mp_INT);
  1411. pin2 = ioapic_i8259.pin;
  1412. apic2 = ioapic_i8259.apic;
  1413. apic_printk(APIC_VERBOSE,KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
  1414. cfg->vector, apic1, pin1, apic2, pin2);
  1415. /*
  1416. * Some BIOS writers are clueless and report the ExtINTA
  1417. * I/O APIC input from the cascaded 8259A as the timer
  1418. * interrupt input. So just in case, if only one pin
  1419. * was found above, try it both directly and through the
  1420. * 8259A.
  1421. */
  1422. if (pin1 == -1) {
  1423. pin1 = pin2;
  1424. apic1 = apic2;
  1425. no_pin1 = 1;
  1426. } else if (pin2 == -1) {
  1427. pin2 = pin1;
  1428. apic2 = apic1;
  1429. }
  1430. if (pin1 != -1) {
  1431. /*
  1432. * Ok, does IRQ0 through the IOAPIC work?
  1433. */
  1434. if (no_pin1) {
  1435. add_pin_to_irq(0, apic1, pin1);
  1436. setup_timer_IRQ0_pin(apic1, pin1, vector);
  1437. }
  1438. unmask_IO_APIC_irq(0);
  1439. if (!no_timer_check && timer_irq_works()) {
  1440. nmi_watchdog_default();
  1441. if (nmi_watchdog == NMI_IO_APIC) {
  1442. setup_nmi();
  1443. enable_8259A_irq(0);
  1444. }
  1445. if (disable_timer_pin_1 > 0)
  1446. clear_IO_APIC_pin(0, pin1);
  1447. goto out;
  1448. }
  1449. clear_IO_APIC_pin(apic1, pin1);
  1450. if (!no_pin1)
  1451. apic_printk(APIC_QUIET,KERN_ERR "..MP-BIOS bug: "
  1452. "8254 timer not connected to IO-APIC\n");
  1453. apic_printk(APIC_VERBOSE,KERN_INFO
  1454. "...trying to set up timer (IRQ0) "
  1455. "through the 8259A ... ");
  1456. apic_printk(APIC_VERBOSE,"\n..... (found apic %d pin %d) ...",
  1457. apic2, pin2);
  1458. /*
  1459. * legacy devices should be connected to IO APIC #0
  1460. */
  1461. /* replace_pin_at_irq(0, apic1, pin1, apic2, pin2); */
  1462. setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
  1463. unmask_IO_APIC_irq(0);
  1464. enable_8259A_irq(0);
  1465. if (timer_irq_works()) {
  1466. apic_printk(APIC_VERBOSE," works.\n");
  1467. timer_through_8259 = 1;
  1468. nmi_watchdog_default();
  1469. if (nmi_watchdog == NMI_IO_APIC) {
  1470. disable_8259A_irq(0);
  1471. setup_nmi();
  1472. enable_8259A_irq(0);
  1473. }
  1474. goto out;
  1475. }
  1476. /*
  1477. * Cleanup, just in case ...
  1478. */
  1479. disable_8259A_irq(0);
  1480. clear_IO_APIC_pin(apic2, pin2);
  1481. apic_printk(APIC_VERBOSE," failed.\n");
  1482. }
  1483. if (nmi_watchdog == NMI_IO_APIC) {
  1484. printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
  1485. nmi_watchdog = 0;
  1486. }
  1487. apic_printk(APIC_VERBOSE, KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
  1488. irq_desc[0].chip = &lapic_irq_type;
  1489. apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
  1490. enable_8259A_irq(0);
  1491. if (timer_irq_works()) {
  1492. apic_printk(APIC_VERBOSE," works.\n");
  1493. goto out;
  1494. }
  1495. disable_8259A_irq(0);
  1496. apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
  1497. apic_printk(APIC_VERBOSE," failed.\n");
  1498. apic_printk(APIC_VERBOSE, KERN_INFO "...trying to set up timer as ExtINT IRQ...");
  1499. init_8259A(0);
  1500. make_8259A_irq(0);
  1501. apic_write(APIC_LVT0, APIC_DM_EXTINT);
  1502. unlock_ExtINT_logic();
  1503. if (timer_irq_works()) {
  1504. apic_printk(APIC_VERBOSE," works.\n");
  1505. goto out;
  1506. }
  1507. apic_printk(APIC_VERBOSE," failed :(.\n");
  1508. panic("IO-APIC + timer doesn't work! Try using the 'noapic' kernel parameter\n");
  1509. out:
  1510. local_irq_restore(flags);
  1511. }
  1512. static int __init notimercheck(char *s)
  1513. {
  1514. no_timer_check = 1;
  1515. return 1;
  1516. }
  1517. __setup("no_timer_check", notimercheck);
  1518. /*
  1519. *
  1520. * IRQs that are handled by the PIC in the MPS IOAPIC case.
  1521. * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
  1522. * Linux doesn't really care, as it's not actually used
  1523. * for any interrupt handling anyway.
  1524. */
  1525. #define PIC_IRQS (1<<2)
  1526. void __init setup_IO_APIC(void)
  1527. {
  1528. /*
  1529. * calling enable_IO_APIC() is moved to setup_local_APIC for BP
  1530. */
  1531. if (acpi_ioapic)
  1532. io_apic_irqs = ~0; /* all IRQs go through IOAPIC */
  1533. else
  1534. io_apic_irqs = ~PIC_IRQS;
  1535. apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
  1536. sync_Arb_IDs();
  1537. setup_IO_APIC_irqs();
  1538. init_IO_APIC_traps();
  1539. check_timer();
  1540. if (!acpi_ioapic)
  1541. print_IO_APIC();
  1542. }
  1543. struct sysfs_ioapic_data {
  1544. struct sys_device dev;
  1545. struct IO_APIC_route_entry entry[0];
  1546. };
  1547. static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
  1548. static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
  1549. {
  1550. struct IO_APIC_route_entry *entry;
  1551. struct sysfs_ioapic_data *data;
  1552. int i;
  1553. data = container_of(dev, struct sysfs_ioapic_data, dev);
  1554. entry = data->entry;
  1555. for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
  1556. *entry = ioapic_read_entry(dev->id, i);
  1557. return 0;
  1558. }
  1559. static int ioapic_resume(struct sys_device *dev)
  1560. {
  1561. struct IO_APIC_route_entry *entry;
  1562. struct sysfs_ioapic_data *data;
  1563. unsigned long flags;
  1564. union IO_APIC_reg_00 reg_00;
  1565. int i;
  1566. data = container_of(dev, struct sysfs_ioapic_data, dev);
  1567. entry = data->entry;
  1568. spin_lock_irqsave(&ioapic_lock, flags);
  1569. reg_00.raw = io_apic_read(dev->id, 0);
  1570. if (reg_00.bits.ID != mp_ioapics[dev->id].mpc_apicid) {
  1571. reg_00.bits.ID = mp_ioapics[dev->id].mpc_apicid;
  1572. io_apic_write(dev->id, 0, reg_00.raw);
  1573. }
  1574. spin_unlock_irqrestore(&ioapic_lock, flags);
  1575. for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
  1576. ioapic_write_entry(dev->id, i, entry[i]);
  1577. return 0;
  1578. }
  1579. static struct sysdev_class ioapic_sysdev_class = {
  1580. .name = "ioapic",
  1581. .suspend = ioapic_suspend,
  1582. .resume = ioapic_resume,
  1583. };
  1584. static int __init ioapic_init_sysfs(void)
  1585. {
  1586. struct sys_device * dev;
  1587. int i, size, error;
  1588. error = sysdev_class_register(&ioapic_sysdev_class);
  1589. if (error)
  1590. return error;
  1591. for (i = 0; i < nr_ioapics; i++ ) {
  1592. size = sizeof(struct sys_device) + nr_ioapic_registers[i]
  1593. * sizeof(struct IO_APIC_route_entry);
  1594. mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
  1595. if (!mp_ioapic_data[i]) {
  1596. printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
  1597. continue;
  1598. }
  1599. dev = &mp_ioapic_data[i]->dev;
  1600. dev->id = i;
  1601. dev->cls = &ioapic_sysdev_class;
  1602. error = sysdev_register(dev);
  1603. if (error) {
  1604. kfree(mp_ioapic_data[i]);
  1605. mp_ioapic_data[i] = NULL;
  1606. printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
  1607. continue;
  1608. }
  1609. }
  1610. return 0;
  1611. }
  1612. device_initcall(ioapic_init_sysfs);
  1613. /*
  1614. * Dynamic irq allocate and deallocation
  1615. */
  1616. int create_irq(void)
  1617. {
  1618. /* Allocate an unused irq */
  1619. int irq;
  1620. int new;
  1621. unsigned long flags;
  1622. irq = -ENOSPC;
  1623. spin_lock_irqsave(&vector_lock, flags);
  1624. for (new = (NR_IRQS - 1); new >= 0; new--) {
  1625. if (platform_legacy_irq(new))
  1626. continue;
  1627. if (irq_cfg[new].vector != 0)
  1628. continue;
  1629. if (__assign_irq_vector(new, TARGET_CPUS) == 0)
  1630. irq = new;
  1631. break;
  1632. }
  1633. spin_unlock_irqrestore(&vector_lock, flags);
  1634. if (irq >= 0) {
  1635. dynamic_irq_init(irq);
  1636. }
  1637. return irq;
  1638. }
  1639. void destroy_irq(unsigned int irq)
  1640. {
  1641. unsigned long flags;
  1642. dynamic_irq_cleanup(irq);
  1643. spin_lock_irqsave(&vector_lock, flags);
  1644. __clear_irq_vector(irq);
  1645. spin_unlock_irqrestore(&vector_lock, flags);
  1646. }
  1647. /*
  1648. * MSI message composition
  1649. */
  1650. #ifdef CONFIG_PCI_MSI
  1651. static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
  1652. {
  1653. struct irq_cfg *cfg = irq_cfg + irq;
  1654. int err;
  1655. unsigned dest;
  1656. cpumask_t tmp;
  1657. tmp = TARGET_CPUS;
  1658. err = assign_irq_vector(irq, tmp);
  1659. if (!err) {
  1660. cpus_and(tmp, cfg->domain, tmp);
  1661. dest = cpu_mask_to_apicid(tmp);
  1662. msg->address_hi = MSI_ADDR_BASE_HI;
  1663. msg->address_lo =
  1664. MSI_ADDR_BASE_LO |
  1665. ((INT_DEST_MODE == 0) ?
  1666. MSI_ADDR_DEST_MODE_PHYSICAL:
  1667. MSI_ADDR_DEST_MODE_LOGICAL) |
  1668. ((INT_DELIVERY_MODE != dest_LowestPrio) ?
  1669. MSI_ADDR_REDIRECTION_CPU:
  1670. MSI_ADDR_REDIRECTION_LOWPRI) |
  1671. MSI_ADDR_DEST_ID(dest);
  1672. msg->data =
  1673. MSI_DATA_TRIGGER_EDGE |
  1674. MSI_DATA_LEVEL_ASSERT |
  1675. ((INT_DELIVERY_MODE != dest_LowestPrio) ?
  1676. MSI_DATA_DELIVERY_FIXED:
  1677. MSI_DATA_DELIVERY_LOWPRI) |
  1678. MSI_DATA_VECTOR(cfg->vector);
  1679. }
  1680. return err;
  1681. }
  1682. #ifdef CONFIG_SMP
  1683. static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
  1684. {
  1685. struct irq_cfg *cfg = irq_cfg + irq;
  1686. struct msi_msg msg;
  1687. unsigned int dest;
  1688. cpumask_t tmp;
  1689. cpus_and(tmp, mask, cpu_online_map);
  1690. if (cpus_empty(tmp))
  1691. return;
  1692. if (assign_irq_vector(irq, mask))
  1693. return;
  1694. cpus_and(tmp, cfg->domain, mask);
  1695. dest = cpu_mask_to_apicid(tmp);
  1696. read_msi_msg(irq, &msg);
  1697. msg.data &= ~MSI_DATA_VECTOR_MASK;
  1698. msg.data |= MSI_DATA_VECTOR(cfg->vector);
  1699. msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
  1700. msg.address_lo |= MSI_ADDR_DEST_ID(dest);
  1701. write_msi_msg(irq, &msg);
  1702. irq_desc[irq].affinity = mask;
  1703. }
  1704. #endif /* CONFIG_SMP */
  1705. /*
  1706. * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
  1707. * which implement the MSI or MSI-X Capability Structure.
  1708. */
  1709. static struct irq_chip msi_chip = {
  1710. .name = "PCI-MSI",
  1711. .unmask = unmask_msi_irq,
  1712. .mask = mask_msi_irq,
  1713. .ack = ack_apic_edge,
  1714. #ifdef CONFIG_SMP
  1715. .set_affinity = set_msi_irq_affinity,
  1716. #endif
  1717. .retrigger = ioapic_retrigger_irq,
  1718. };
  1719. int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
  1720. {
  1721. struct msi_msg msg;
  1722. int irq, ret;
  1723. irq = create_irq();
  1724. if (irq < 0)
  1725. return irq;
  1726. ret = msi_compose_msg(dev, irq, &msg);
  1727. if (ret < 0) {
  1728. destroy_irq(irq);
  1729. return ret;
  1730. }
  1731. set_irq_msi(irq, desc);
  1732. write_msi_msg(irq, &msg);
  1733. set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
  1734. return 0;
  1735. }
  1736. void arch_teardown_msi_irq(unsigned int irq)
  1737. {
  1738. destroy_irq(irq);
  1739. }
  1740. #ifdef CONFIG_DMAR
  1741. #ifdef CONFIG_SMP
  1742. static void dmar_msi_set_affinity(unsigned int irq, cpumask_t mask)
  1743. {
  1744. struct irq_cfg *cfg = irq_cfg + irq;
  1745. struct msi_msg msg;
  1746. unsigned int dest;
  1747. cpumask_t tmp;
  1748. cpus_and(tmp, mask, cpu_online_map);
  1749. if (cpus_empty(tmp))
  1750. return;
  1751. if (assign_irq_vector(irq, mask))
  1752. return;
  1753. cpus_and(tmp, cfg->domain, mask);
  1754. dest = cpu_mask_to_apicid(tmp);
  1755. dmar_msi_read(irq, &msg);
  1756. msg.data &= ~MSI_DATA_VECTOR_MASK;
  1757. msg.data |= MSI_DATA_VECTOR(cfg->vector);
  1758. msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
  1759. msg.address_lo |= MSI_ADDR_DEST_ID(dest);
  1760. dmar_msi_write(irq, &msg);
  1761. irq_desc[irq].affinity = mask;
  1762. }
  1763. #endif /* CONFIG_SMP */
  1764. struct irq_chip dmar_msi_type = {
  1765. .name = "DMAR_MSI",
  1766. .unmask = dmar_msi_unmask,
  1767. .mask = dmar_msi_mask,
  1768. .ack = ack_apic_edge,
  1769. #ifdef CONFIG_SMP
  1770. .set_affinity = dmar_msi_set_affinity,
  1771. #endif
  1772. .retrigger = ioapic_retrigger_irq,
  1773. };
  1774. int arch_setup_dmar_msi(unsigned int irq)
  1775. {
  1776. int ret;
  1777. struct msi_msg msg;
  1778. ret = msi_compose_msg(NULL, irq, &msg);
  1779. if (ret < 0)
  1780. return ret;
  1781. dmar_msi_write(irq, &msg);
  1782. set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
  1783. "edge");
  1784. return 0;
  1785. }
  1786. #endif
  1787. #endif /* CONFIG_PCI_MSI */
  1788. /*
  1789. * Hypertransport interrupt support
  1790. */
  1791. #ifdef CONFIG_HT_IRQ
  1792. #ifdef CONFIG_SMP
  1793. static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
  1794. {
  1795. struct ht_irq_msg msg;
  1796. fetch_ht_irq_msg(irq, &msg);
  1797. msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
  1798. msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
  1799. msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
  1800. msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
  1801. write_ht_irq_msg(irq, &msg);
  1802. }
  1803. static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
  1804. {
  1805. struct irq_cfg *cfg = irq_cfg + irq;
  1806. unsigned int dest;
  1807. cpumask_t tmp;
  1808. cpus_and(tmp, mask, cpu_online_map);
  1809. if (cpus_empty(tmp))
  1810. return;
  1811. if (assign_irq_vector(irq, mask))
  1812. return;
  1813. cpus_and(tmp, cfg->domain, mask);
  1814. dest = cpu_mask_to_apicid(tmp);
  1815. target_ht_irq(irq, dest, cfg->vector);
  1816. irq_desc[irq].affinity = mask;
  1817. }
  1818. #endif
  1819. static struct irq_chip ht_irq_chip = {
  1820. .name = "PCI-HT",
  1821. .mask = mask_ht_irq,
  1822. .unmask = unmask_ht_irq,
  1823. .ack = ack_apic_edge,
  1824. #ifdef CONFIG_SMP
  1825. .set_affinity = set_ht_irq_affinity,
  1826. #endif
  1827. .retrigger = ioapic_retrigger_irq,
  1828. };
  1829. int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
  1830. {
  1831. struct irq_cfg *cfg = irq_cfg + irq;
  1832. int err;
  1833. cpumask_t tmp;
  1834. tmp = TARGET_CPUS;
  1835. err = assign_irq_vector(irq, tmp);
  1836. if (!err) {
  1837. struct ht_irq_msg msg;
  1838. unsigned dest;
  1839. cpus_and(tmp, cfg->domain, tmp);
  1840. dest = cpu_mask_to_apicid(tmp);
  1841. msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
  1842. msg.address_lo =
  1843. HT_IRQ_LOW_BASE |
  1844. HT_IRQ_LOW_DEST_ID(dest) |
  1845. HT_IRQ_LOW_VECTOR(cfg->vector) |
  1846. ((INT_DEST_MODE == 0) ?
  1847. HT_IRQ_LOW_DM_PHYSICAL :
  1848. HT_IRQ_LOW_DM_LOGICAL) |
  1849. HT_IRQ_LOW_RQEOI_EDGE |
  1850. ((INT_DELIVERY_MODE != dest_LowestPrio) ?
  1851. HT_IRQ_LOW_MT_FIXED :
  1852. HT_IRQ_LOW_MT_ARBITRATED) |
  1853. HT_IRQ_LOW_IRQ_MASKED;
  1854. write_ht_irq_msg(irq, &msg);
  1855. set_irq_chip_and_handler_name(irq, &ht_irq_chip,
  1856. handle_edge_irq, "edge");
  1857. }
  1858. return err;
  1859. }
  1860. #endif /* CONFIG_HT_IRQ */
  1861. /* --------------------------------------------------------------------------
  1862. ACPI-based IOAPIC Configuration
  1863. -------------------------------------------------------------------------- */
  1864. #ifdef CONFIG_ACPI
  1865. #define IO_APIC_MAX_ID 0xFE
  1866. int __init io_apic_get_redir_entries (int ioapic)
  1867. {
  1868. union IO_APIC_reg_01 reg_01;
  1869. unsigned long flags;
  1870. spin_lock_irqsave(&ioapic_lock, flags);
  1871. reg_01.raw = io_apic_read(ioapic, 1);
  1872. spin_unlock_irqrestore(&ioapic_lock, flags);
  1873. return reg_01.bits.entries;
  1874. }
  1875. int io_apic_set_pci_routing (int ioapic, int pin, int irq, int triggering, int polarity)
  1876. {
  1877. if (!IO_APIC_IRQ(irq)) {
  1878. apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
  1879. ioapic);
  1880. return -EINVAL;
  1881. }
  1882. /*
  1883. * IRQs < 16 are already in the irq_2_pin[] map
  1884. */
  1885. if (irq >= 16)
  1886. add_pin_to_irq(irq, ioapic, pin);
  1887. setup_IO_APIC_irq(ioapic, pin, irq, triggering, polarity);
  1888. return 0;
  1889. }
  1890. int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
  1891. {
  1892. int i;
  1893. if (skip_ioapic_setup)
  1894. return -1;
  1895. for (i = 0; i < mp_irq_entries; i++)
  1896. if (mp_irqs[i].mpc_irqtype == mp_INT &&
  1897. mp_irqs[i].mpc_srcbusirq == bus_irq)
  1898. break;
  1899. if (i >= mp_irq_entries)
  1900. return -1;
  1901. *trigger = irq_trigger(i);
  1902. *polarity = irq_polarity(i);
  1903. return 0;
  1904. }
  1905. #endif /* CONFIG_ACPI */
  1906. /*
  1907. * This function currently is only a helper for the i386 smp boot process where
  1908. * we need to reprogram the ioredtbls to cater for the cpus which have come online
  1909. * so mask in all cases should simply be TARGET_CPUS
  1910. */
  1911. #ifdef CONFIG_SMP
  1912. void __init setup_ioapic_dest(void)
  1913. {
  1914. int pin, ioapic, irq, irq_entry;
  1915. if (skip_ioapic_setup == 1)
  1916. return;
  1917. for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
  1918. for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
  1919. irq_entry = find_irq_entry(ioapic, pin, mp_INT);
  1920. if (irq_entry == -1)
  1921. continue;
  1922. irq = pin_2_irq(irq_entry, ioapic, pin);
  1923. /* setup_IO_APIC_irqs could fail to get vector for some device
  1924. * when you have too many devices, because at that time only boot
  1925. * cpu is online.
  1926. */
  1927. if (!irq_cfg[irq].vector)
  1928. setup_IO_APIC_irq(ioapic, pin, irq,
  1929. irq_trigger(irq_entry),
  1930. irq_polarity(irq_entry));
  1931. else
  1932. set_ioapic_affinity_irq(irq, TARGET_CPUS);
  1933. }
  1934. }
  1935. }
  1936. #endif
  1937. #define IOAPIC_RESOURCE_NAME_SIZE 11
  1938. static struct resource *ioapic_resources;
  1939. static struct resource * __init ioapic_setup_resources(void)
  1940. {
  1941. unsigned long n;
  1942. struct resource *res;
  1943. char *mem;
  1944. int i;
  1945. if (nr_ioapics <= 0)
  1946. return NULL;
  1947. n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
  1948. n *= nr_ioapics;
  1949. mem = alloc_bootmem(n);
  1950. res = (void *)mem;
  1951. if (mem != NULL) {
  1952. mem += sizeof(struct resource) * nr_ioapics;
  1953. for (i = 0; i < nr_ioapics; i++) {
  1954. res[i].name = mem;
  1955. res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
  1956. sprintf(mem, "IOAPIC %u", i);
  1957. mem += IOAPIC_RESOURCE_NAME_SIZE;
  1958. }
  1959. }
  1960. ioapic_resources = res;
  1961. return res;
  1962. }
  1963. void __init ioapic_init_mappings(void)
  1964. {
  1965. unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
  1966. struct resource *ioapic_res;
  1967. int i;
  1968. ioapic_res = ioapic_setup_resources();
  1969. for (i = 0; i < nr_ioapics; i++) {
  1970. if (smp_found_config) {
  1971. ioapic_phys = mp_ioapics[i].mpc_apicaddr;
  1972. } else {
  1973. ioapic_phys = (unsigned long)
  1974. alloc_bootmem_pages(PAGE_SIZE);
  1975. ioapic_phys = __pa(ioapic_phys);
  1976. }
  1977. set_fixmap_nocache(idx, ioapic_phys);
  1978. apic_printk(APIC_VERBOSE,
  1979. "mapped IOAPIC to %016lx (%016lx)\n",
  1980. __fix_to_virt(idx), ioapic_phys);
  1981. idx++;
  1982. if (ioapic_res != NULL) {
  1983. ioapic_res->start = ioapic_phys;
  1984. ioapic_res->end = ioapic_phys + (4 * 1024) - 1;
  1985. ioapic_res++;
  1986. }
  1987. }
  1988. }
  1989. static int __init ioapic_insert_resources(void)
  1990. {
  1991. int i;
  1992. struct resource *r = ioapic_resources;
  1993. if (!r) {
  1994. printk(KERN_ERR
  1995. "IO APIC resources could be not be allocated.\n");
  1996. return -1;
  1997. }
  1998. for (i = 0; i < nr_ioapics; i++) {
  1999. insert_resource(&iomem_resource, r);
  2000. r++;
  2001. }
  2002. return 0;
  2003. }
  2004. /* Insert the IO APIC resources after PCI initialization has occured to handle
  2005. * IO APICS that are mapped in on a BAR in PCI space. */
  2006. late_initcall(ioapic_insert_resources);