io_apic_32.c 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838
  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/mc146818rtc.h>
  28. #include <linux/compiler.h>
  29. #include <linux/acpi.h>
  30. #include <linux/module.h>
  31. #include <linux/sysdev.h>
  32. #include <linux/pci.h>
  33. #include <linux/msi.h>
  34. #include <linux/htirq.h>
  35. #include <linux/freezer.h>
  36. #include <linux/kthread.h>
  37. #include <linux/jiffies.h> /* time_after() */
  38. #include <asm/io.h>
  39. #include <asm/smp.h>
  40. #include <asm/desc.h>
  41. #include <asm/timer.h>
  42. #include <asm/i8259.h>
  43. #include <asm/nmi.h>
  44. #include <asm/msidef.h>
  45. #include <asm/hypertransport.h>
  46. #include <mach_apic.h>
  47. #include <mach_apicdef.h>
  48. int (*ioapic_renumber_irq)(int ioapic, int irq);
  49. atomic_t irq_mis_count;
  50. /* Where if anywhere is the i8259 connect in external int mode */
  51. static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
  52. static DEFINE_SPINLOCK(ioapic_lock);
  53. static DEFINE_SPINLOCK(vector_lock);
  54. int timer_over_8254 __initdata = 1;
  55. /*
  56. * Is the SiS APIC rmw bug present ?
  57. * -1 = don't know, 0 = no, 1 = yes
  58. */
  59. int sis_apic_bug = -1;
  60. /*
  61. * # of IRQ routing registers
  62. */
  63. int nr_ioapic_registers[MAX_IO_APICS];
  64. /* I/O APIC entries */
  65. struct mpc_config_ioapic mp_ioapics[MAX_IO_APICS];
  66. int nr_ioapics;
  67. /* MP IRQ source entries */
  68. struct mpc_config_intsrc mp_irqs[MAX_IRQ_SOURCES];
  69. /* # of MP IRQ source entries */
  70. int mp_irq_entries;
  71. static int disable_timer_pin_1 __initdata;
  72. /*
  73. * Rough estimation of how many shared IRQs there are, can
  74. * be changed anytime.
  75. */
  76. #define MAX_PLUS_SHARED_IRQS NR_IRQS
  77. #define PIN_MAP_SIZE (MAX_PLUS_SHARED_IRQS + NR_IRQS)
  78. /*
  79. * This is performance-critical, we want to do it O(1)
  80. *
  81. * the indexing order of this array favors 1:1 mappings
  82. * between pins and IRQs.
  83. */
  84. static struct irq_pin_list {
  85. int apic, pin, next;
  86. } irq_2_pin[PIN_MAP_SIZE];
  87. struct io_apic {
  88. unsigned int index;
  89. unsigned int unused[3];
  90. unsigned int data;
  91. };
  92. static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
  93. {
  94. return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
  95. + (mp_ioapics[idx].mpc_apicaddr & ~PAGE_MASK);
  96. }
  97. static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
  98. {
  99. struct io_apic __iomem *io_apic = io_apic_base(apic);
  100. writel(reg, &io_apic->index);
  101. return readl(&io_apic->data);
  102. }
  103. static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
  104. {
  105. struct io_apic __iomem *io_apic = io_apic_base(apic);
  106. writel(reg, &io_apic->index);
  107. writel(value, &io_apic->data);
  108. }
  109. /*
  110. * Re-write a value: to be used for read-modify-write
  111. * cycles where the read already set up the index register.
  112. *
  113. * Older SiS APIC requires we rewrite the index register
  114. */
  115. static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
  116. {
  117. volatile struct io_apic __iomem *io_apic = io_apic_base(apic);
  118. if (sis_apic_bug)
  119. writel(reg, &io_apic->index);
  120. writel(value, &io_apic->data);
  121. }
  122. union entry_union {
  123. struct { u32 w1, w2; };
  124. struct IO_APIC_route_entry entry;
  125. };
  126. static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
  127. {
  128. union entry_union eu;
  129. unsigned long flags;
  130. spin_lock_irqsave(&ioapic_lock, flags);
  131. eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
  132. eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
  133. spin_unlock_irqrestore(&ioapic_lock, flags);
  134. return eu.entry;
  135. }
  136. /*
  137. * When we write a new IO APIC routing entry, we need to write the high
  138. * word first! If the mask bit in the low word is clear, we will enable
  139. * the interrupt, and we need to make sure the entry is fully populated
  140. * before that happens.
  141. */
  142. static void
  143. __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
  144. {
  145. union entry_union eu;
  146. eu.entry = e;
  147. io_apic_write(apic, 0x11 + 2*pin, eu.w2);
  148. io_apic_write(apic, 0x10 + 2*pin, eu.w1);
  149. }
  150. static void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
  151. {
  152. unsigned long flags;
  153. spin_lock_irqsave(&ioapic_lock, flags);
  154. __ioapic_write_entry(apic, pin, e);
  155. spin_unlock_irqrestore(&ioapic_lock, flags);
  156. }
  157. /*
  158. * When we mask an IO APIC routing entry, we need to write the low
  159. * word first, in order to set the mask bit before we change the
  160. * high bits!
  161. */
  162. static void ioapic_mask_entry(int apic, int pin)
  163. {
  164. unsigned long flags;
  165. union entry_union eu = { .entry.mask = 1 };
  166. spin_lock_irqsave(&ioapic_lock, flags);
  167. io_apic_write(apic, 0x10 + 2*pin, eu.w1);
  168. io_apic_write(apic, 0x11 + 2*pin, eu.w2);
  169. spin_unlock_irqrestore(&ioapic_lock, flags);
  170. }
  171. /*
  172. * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
  173. * shared ISA-space IRQs, so we have to support them. We are super
  174. * fast in the common case, and fast for shared ISA-space IRQs.
  175. */
  176. static void add_pin_to_irq(unsigned int irq, int apic, int pin)
  177. {
  178. static int first_free_entry = NR_IRQS;
  179. struct irq_pin_list *entry = irq_2_pin + irq;
  180. while (entry->next)
  181. entry = irq_2_pin + entry->next;
  182. if (entry->pin != -1) {
  183. entry->next = first_free_entry;
  184. entry = irq_2_pin + entry->next;
  185. if (++first_free_entry >= PIN_MAP_SIZE)
  186. panic("io_apic.c: whoops");
  187. }
  188. entry->apic = apic;
  189. entry->pin = pin;
  190. }
  191. /*
  192. * Reroute an IRQ to a different pin.
  193. */
  194. static void __init replace_pin_at_irq(unsigned int irq,
  195. int oldapic, int oldpin,
  196. int newapic, int newpin)
  197. {
  198. struct irq_pin_list *entry = irq_2_pin + irq;
  199. while (1) {
  200. if (entry->apic == oldapic && entry->pin == oldpin) {
  201. entry->apic = newapic;
  202. entry->pin = newpin;
  203. }
  204. if (!entry->next)
  205. break;
  206. entry = irq_2_pin + entry->next;
  207. }
  208. }
  209. static void __modify_IO_APIC_irq (unsigned int irq, unsigned long enable, unsigned long disable)
  210. {
  211. struct irq_pin_list *entry = irq_2_pin + irq;
  212. unsigned int pin, reg;
  213. for (;;) {
  214. pin = entry->pin;
  215. if (pin == -1)
  216. break;
  217. reg = io_apic_read(entry->apic, 0x10 + pin*2);
  218. reg &= ~disable;
  219. reg |= enable;
  220. io_apic_modify(entry->apic, 0x10 + pin*2, reg);
  221. if (!entry->next)
  222. break;
  223. entry = irq_2_pin + entry->next;
  224. }
  225. }
  226. /* mask = 1 */
  227. static void __mask_IO_APIC_irq (unsigned int irq)
  228. {
  229. __modify_IO_APIC_irq(irq, 0x00010000, 0);
  230. }
  231. /* mask = 0 */
  232. static void __unmask_IO_APIC_irq (unsigned int irq)
  233. {
  234. __modify_IO_APIC_irq(irq, 0, 0x00010000);
  235. }
  236. /* mask = 1, trigger = 0 */
  237. static void __mask_and_edge_IO_APIC_irq (unsigned int irq)
  238. {
  239. __modify_IO_APIC_irq(irq, 0x00010000, 0x00008000);
  240. }
  241. /* mask = 0, trigger = 1 */
  242. static void __unmask_and_level_IO_APIC_irq (unsigned int irq)
  243. {
  244. __modify_IO_APIC_irq(irq, 0x00008000, 0x00010000);
  245. }
  246. static void mask_IO_APIC_irq (unsigned int irq)
  247. {
  248. unsigned long flags;
  249. spin_lock_irqsave(&ioapic_lock, flags);
  250. __mask_IO_APIC_irq(irq);
  251. spin_unlock_irqrestore(&ioapic_lock, flags);
  252. }
  253. static void unmask_IO_APIC_irq (unsigned int irq)
  254. {
  255. unsigned long flags;
  256. spin_lock_irqsave(&ioapic_lock, flags);
  257. __unmask_IO_APIC_irq(irq);
  258. spin_unlock_irqrestore(&ioapic_lock, flags);
  259. }
  260. static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
  261. {
  262. struct IO_APIC_route_entry entry;
  263. /* Check delivery_mode to be sure we're not clearing an SMI pin */
  264. entry = ioapic_read_entry(apic, pin);
  265. if (entry.delivery_mode == dest_SMI)
  266. return;
  267. /*
  268. * Disable it in the IO-APIC irq-routing table:
  269. */
  270. ioapic_mask_entry(apic, pin);
  271. }
  272. static void clear_IO_APIC (void)
  273. {
  274. int apic, pin;
  275. for (apic = 0; apic < nr_ioapics; apic++)
  276. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
  277. clear_IO_APIC_pin(apic, pin);
  278. }
  279. #ifdef CONFIG_SMP
  280. static void set_ioapic_affinity_irq(unsigned int irq, cpumask_t cpumask)
  281. {
  282. unsigned long flags;
  283. int pin;
  284. struct irq_pin_list *entry = irq_2_pin + irq;
  285. unsigned int apicid_value;
  286. cpumask_t tmp;
  287. cpus_and(tmp, cpumask, cpu_online_map);
  288. if (cpus_empty(tmp))
  289. tmp = TARGET_CPUS;
  290. cpus_and(cpumask, tmp, CPU_MASK_ALL);
  291. apicid_value = cpu_mask_to_apicid(cpumask);
  292. /* Prepare to do the io_apic_write */
  293. apicid_value = apicid_value << 24;
  294. spin_lock_irqsave(&ioapic_lock, flags);
  295. for (;;) {
  296. pin = entry->pin;
  297. if (pin == -1)
  298. break;
  299. io_apic_write(entry->apic, 0x10 + 1 + pin*2, apicid_value);
  300. if (!entry->next)
  301. break;
  302. entry = irq_2_pin + entry->next;
  303. }
  304. irq_desc[irq].affinity = cpumask;
  305. spin_unlock_irqrestore(&ioapic_lock, flags);
  306. }
  307. #if defined(CONFIG_IRQBALANCE)
  308. # include <asm/processor.h> /* kernel_thread() */
  309. # include <linux/kernel_stat.h> /* kstat */
  310. # include <linux/slab.h> /* kmalloc() */
  311. # include <linux/timer.h>
  312. #define IRQBALANCE_CHECK_ARCH -999
  313. #define MAX_BALANCED_IRQ_INTERVAL (5*HZ)
  314. #define MIN_BALANCED_IRQ_INTERVAL (HZ/2)
  315. #define BALANCED_IRQ_MORE_DELTA (HZ/10)
  316. #define BALANCED_IRQ_LESS_DELTA (HZ)
  317. static int irqbalance_disabled __read_mostly = IRQBALANCE_CHECK_ARCH;
  318. static int physical_balance __read_mostly;
  319. static long balanced_irq_interval __read_mostly = MAX_BALANCED_IRQ_INTERVAL;
  320. static struct irq_cpu_info {
  321. unsigned long * last_irq;
  322. unsigned long * irq_delta;
  323. unsigned long irq;
  324. } irq_cpu_data[NR_CPUS];
  325. #define CPU_IRQ(cpu) (irq_cpu_data[cpu].irq)
  326. #define LAST_CPU_IRQ(cpu,irq) (irq_cpu_data[cpu].last_irq[irq])
  327. #define IRQ_DELTA(cpu,irq) (irq_cpu_data[cpu].irq_delta[irq])
  328. #define IDLE_ENOUGH(cpu,now) \
  329. (idle_cpu(cpu) && ((now) - per_cpu(irq_stat, (cpu)).idle_timestamp > 1))
  330. #define IRQ_ALLOWED(cpu, allowed_mask) cpu_isset(cpu, allowed_mask)
  331. #define CPU_TO_PACKAGEINDEX(i) (first_cpu(per_cpu(cpu_sibling_map, i)))
  332. static cpumask_t balance_irq_affinity[NR_IRQS] = {
  333. [0 ... NR_IRQS-1] = CPU_MASK_ALL
  334. };
  335. void set_balance_irq_affinity(unsigned int irq, cpumask_t mask)
  336. {
  337. balance_irq_affinity[irq] = mask;
  338. }
  339. static unsigned long move(int curr_cpu, cpumask_t allowed_mask,
  340. unsigned long now, int direction)
  341. {
  342. int search_idle = 1;
  343. int cpu = curr_cpu;
  344. goto inside;
  345. do {
  346. if (unlikely(cpu == curr_cpu))
  347. search_idle = 0;
  348. inside:
  349. if (direction == 1) {
  350. cpu++;
  351. if (cpu >= NR_CPUS)
  352. cpu = 0;
  353. } else {
  354. cpu--;
  355. if (cpu == -1)
  356. cpu = NR_CPUS-1;
  357. }
  358. } while (!cpu_online(cpu) || !IRQ_ALLOWED(cpu,allowed_mask) ||
  359. (search_idle && !IDLE_ENOUGH(cpu,now)));
  360. return cpu;
  361. }
  362. static inline void balance_irq(int cpu, int irq)
  363. {
  364. unsigned long now = jiffies;
  365. cpumask_t allowed_mask;
  366. unsigned int new_cpu;
  367. if (irqbalance_disabled)
  368. return;
  369. cpus_and(allowed_mask, cpu_online_map, balance_irq_affinity[irq]);
  370. new_cpu = move(cpu, allowed_mask, now, 1);
  371. if (cpu != new_cpu) {
  372. set_pending_irq(irq, cpumask_of_cpu(new_cpu));
  373. }
  374. }
  375. static inline void rotate_irqs_among_cpus(unsigned long useful_load_threshold)
  376. {
  377. int i, j;
  378. for_each_online_cpu(i) {
  379. for (j = 0; j < NR_IRQS; j++) {
  380. if (!irq_desc[j].action)
  381. continue;
  382. /* Is it a significant load ? */
  383. if (IRQ_DELTA(CPU_TO_PACKAGEINDEX(i),j) <
  384. useful_load_threshold)
  385. continue;
  386. balance_irq(i, j);
  387. }
  388. }
  389. balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
  390. balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
  391. return;
  392. }
  393. static void do_irq_balance(void)
  394. {
  395. int i, j;
  396. unsigned long max_cpu_irq = 0, min_cpu_irq = (~0);
  397. unsigned long move_this_load = 0;
  398. int max_loaded = 0, min_loaded = 0;
  399. int load;
  400. unsigned long useful_load_threshold = balanced_irq_interval + 10;
  401. int selected_irq;
  402. int tmp_loaded, first_attempt = 1;
  403. unsigned long tmp_cpu_irq;
  404. unsigned long imbalance = 0;
  405. cpumask_t allowed_mask, target_cpu_mask, tmp;
  406. for_each_possible_cpu(i) {
  407. int package_index;
  408. CPU_IRQ(i) = 0;
  409. if (!cpu_online(i))
  410. continue;
  411. package_index = CPU_TO_PACKAGEINDEX(i);
  412. for (j = 0; j < NR_IRQS; j++) {
  413. unsigned long value_now, delta;
  414. /* Is this an active IRQ or balancing disabled ? */
  415. if (!irq_desc[j].action || irq_balancing_disabled(j))
  416. continue;
  417. if ( package_index == i )
  418. IRQ_DELTA(package_index,j) = 0;
  419. /* Determine the total count per processor per IRQ */
  420. value_now = (unsigned long) kstat_cpu(i).irqs[j];
  421. /* Determine the activity per processor per IRQ */
  422. delta = value_now - LAST_CPU_IRQ(i,j);
  423. /* Update last_cpu_irq[][] for the next time */
  424. LAST_CPU_IRQ(i,j) = value_now;
  425. /* Ignore IRQs whose rate is less than the clock */
  426. if (delta < useful_load_threshold)
  427. continue;
  428. /* update the load for the processor or package total */
  429. IRQ_DELTA(package_index,j) += delta;
  430. /* Keep track of the higher numbered sibling as well */
  431. if (i != package_index)
  432. CPU_IRQ(i) += delta;
  433. /*
  434. * We have sibling A and sibling B in the package
  435. *
  436. * cpu_irq[A] = load for cpu A + load for cpu B
  437. * cpu_irq[B] = load for cpu B
  438. */
  439. CPU_IRQ(package_index) += delta;
  440. }
  441. }
  442. /* Find the least loaded processor package */
  443. for_each_online_cpu(i) {
  444. if (i != CPU_TO_PACKAGEINDEX(i))
  445. continue;
  446. if (min_cpu_irq > CPU_IRQ(i)) {
  447. min_cpu_irq = CPU_IRQ(i);
  448. min_loaded = i;
  449. }
  450. }
  451. max_cpu_irq = ULONG_MAX;
  452. tryanothercpu:
  453. /* Look for heaviest loaded processor.
  454. * We may come back to get the next heaviest loaded processor.
  455. * Skip processors with trivial loads.
  456. */
  457. tmp_cpu_irq = 0;
  458. tmp_loaded = -1;
  459. for_each_online_cpu(i) {
  460. if (i != CPU_TO_PACKAGEINDEX(i))
  461. continue;
  462. if (max_cpu_irq <= CPU_IRQ(i))
  463. continue;
  464. if (tmp_cpu_irq < CPU_IRQ(i)) {
  465. tmp_cpu_irq = CPU_IRQ(i);
  466. tmp_loaded = i;
  467. }
  468. }
  469. if (tmp_loaded == -1) {
  470. /* In the case of small number of heavy interrupt sources,
  471. * loading some of the cpus too much. We use Ingo's original
  472. * approach to rotate them around.
  473. */
  474. if (!first_attempt && imbalance >= useful_load_threshold) {
  475. rotate_irqs_among_cpus(useful_load_threshold);
  476. return;
  477. }
  478. goto not_worth_the_effort;
  479. }
  480. first_attempt = 0; /* heaviest search */
  481. max_cpu_irq = tmp_cpu_irq; /* load */
  482. max_loaded = tmp_loaded; /* processor */
  483. imbalance = (max_cpu_irq - min_cpu_irq) / 2;
  484. /* if imbalance is less than approx 10% of max load, then
  485. * observe diminishing returns action. - quit
  486. */
  487. if (imbalance < (max_cpu_irq >> 3))
  488. goto not_worth_the_effort;
  489. tryanotherirq:
  490. /* if we select an IRQ to move that can't go where we want, then
  491. * see if there is another one to try.
  492. */
  493. move_this_load = 0;
  494. selected_irq = -1;
  495. for (j = 0; j < NR_IRQS; j++) {
  496. /* Is this an active IRQ? */
  497. if (!irq_desc[j].action)
  498. continue;
  499. if (imbalance <= IRQ_DELTA(max_loaded,j))
  500. continue;
  501. /* Try to find the IRQ that is closest to the imbalance
  502. * without going over.
  503. */
  504. if (move_this_load < IRQ_DELTA(max_loaded,j)) {
  505. move_this_load = IRQ_DELTA(max_loaded,j);
  506. selected_irq = j;
  507. }
  508. }
  509. if (selected_irq == -1) {
  510. goto tryanothercpu;
  511. }
  512. imbalance = move_this_load;
  513. /* For physical_balance case, we accumulated both load
  514. * values in the one of the siblings cpu_irq[],
  515. * to use the same code for physical and logical processors
  516. * as much as possible.
  517. *
  518. * NOTE: the cpu_irq[] array holds the sum of the load for
  519. * sibling A and sibling B in the slot for the lowest numbered
  520. * sibling (A), _AND_ the load for sibling B in the slot for
  521. * the higher numbered sibling.
  522. *
  523. * We seek the least loaded sibling by making the comparison
  524. * (A+B)/2 vs B
  525. */
  526. load = CPU_IRQ(min_loaded) >> 1;
  527. for_each_cpu_mask(j, per_cpu(cpu_sibling_map, min_loaded)) {
  528. if (load > CPU_IRQ(j)) {
  529. /* This won't change cpu_sibling_map[min_loaded] */
  530. load = CPU_IRQ(j);
  531. min_loaded = j;
  532. }
  533. }
  534. cpus_and(allowed_mask,
  535. cpu_online_map,
  536. balance_irq_affinity[selected_irq]);
  537. target_cpu_mask = cpumask_of_cpu(min_loaded);
  538. cpus_and(tmp, target_cpu_mask, allowed_mask);
  539. if (!cpus_empty(tmp)) {
  540. /* mark for change destination */
  541. set_pending_irq(selected_irq, cpumask_of_cpu(min_loaded));
  542. /* Since we made a change, come back sooner to
  543. * check for more variation.
  544. */
  545. balanced_irq_interval = max((long)MIN_BALANCED_IRQ_INTERVAL,
  546. balanced_irq_interval - BALANCED_IRQ_LESS_DELTA);
  547. return;
  548. }
  549. goto tryanotherirq;
  550. not_worth_the_effort:
  551. /*
  552. * if we did not find an IRQ to move, then adjust the time interval
  553. * upward
  554. */
  555. balanced_irq_interval = min((long)MAX_BALANCED_IRQ_INTERVAL,
  556. balanced_irq_interval + BALANCED_IRQ_MORE_DELTA);
  557. return;
  558. }
  559. static int balanced_irq(void *unused)
  560. {
  561. int i;
  562. unsigned long prev_balance_time = jiffies;
  563. long time_remaining = balanced_irq_interval;
  564. /* push everything to CPU 0 to give us a starting point. */
  565. for (i = 0 ; i < NR_IRQS ; i++) {
  566. irq_desc[i].pending_mask = cpumask_of_cpu(0);
  567. set_pending_irq(i, cpumask_of_cpu(0));
  568. }
  569. set_freezable();
  570. for ( ; ; ) {
  571. time_remaining = schedule_timeout_interruptible(time_remaining);
  572. try_to_freeze();
  573. if (time_after(jiffies,
  574. prev_balance_time+balanced_irq_interval)) {
  575. preempt_disable();
  576. do_irq_balance();
  577. prev_balance_time = jiffies;
  578. time_remaining = balanced_irq_interval;
  579. preempt_enable();
  580. }
  581. }
  582. return 0;
  583. }
  584. static int __init balanced_irq_init(void)
  585. {
  586. int i;
  587. struct cpuinfo_x86 *c;
  588. cpumask_t tmp;
  589. cpus_shift_right(tmp, cpu_online_map, 2);
  590. c = &boot_cpu_data;
  591. /* When not overwritten by the command line ask subarchitecture. */
  592. if (irqbalance_disabled == IRQBALANCE_CHECK_ARCH)
  593. irqbalance_disabled = NO_BALANCE_IRQ;
  594. if (irqbalance_disabled)
  595. return 0;
  596. /* disable irqbalance completely if there is only one processor online */
  597. if (num_online_cpus() < 2) {
  598. irqbalance_disabled = 1;
  599. return 0;
  600. }
  601. /*
  602. * Enable physical balance only if more than 1 physical processor
  603. * is present
  604. */
  605. if (smp_num_siblings > 1 && !cpus_empty(tmp))
  606. physical_balance = 1;
  607. for_each_online_cpu(i) {
  608. irq_cpu_data[i].irq_delta = kmalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
  609. irq_cpu_data[i].last_irq = kmalloc(sizeof(unsigned long) * NR_IRQS, GFP_KERNEL);
  610. if (irq_cpu_data[i].irq_delta == NULL || irq_cpu_data[i].last_irq == NULL) {
  611. printk(KERN_ERR "balanced_irq_init: out of memory");
  612. goto failed;
  613. }
  614. memset(irq_cpu_data[i].irq_delta,0,sizeof(unsigned long) * NR_IRQS);
  615. memset(irq_cpu_data[i].last_irq,0,sizeof(unsigned long) * NR_IRQS);
  616. }
  617. printk(KERN_INFO "Starting balanced_irq\n");
  618. if (!IS_ERR(kthread_run(balanced_irq, NULL, "kirqd")))
  619. return 0;
  620. printk(KERN_ERR "balanced_irq_init: failed to spawn balanced_irq");
  621. failed:
  622. for_each_possible_cpu(i) {
  623. kfree(irq_cpu_data[i].irq_delta);
  624. irq_cpu_data[i].irq_delta = NULL;
  625. kfree(irq_cpu_data[i].last_irq);
  626. irq_cpu_data[i].last_irq = NULL;
  627. }
  628. return 0;
  629. }
  630. int __devinit irqbalance_disable(char *str)
  631. {
  632. irqbalance_disabled = 1;
  633. return 1;
  634. }
  635. __setup("noirqbalance", irqbalance_disable);
  636. late_initcall(balanced_irq_init);
  637. #endif /* CONFIG_IRQBALANCE */
  638. #endif /* CONFIG_SMP */
  639. #ifndef CONFIG_SMP
  640. void send_IPI_self(int vector)
  641. {
  642. unsigned int cfg;
  643. /*
  644. * Wait for idle.
  645. */
  646. apic_wait_icr_idle();
  647. cfg = APIC_DM_FIXED | APIC_DEST_SELF | vector | APIC_DEST_LOGICAL;
  648. /*
  649. * Send the IPI. The write to APIC_ICR fires this off.
  650. */
  651. apic_write_around(APIC_ICR, cfg);
  652. }
  653. #endif /* !CONFIG_SMP */
  654. /*
  655. * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
  656. * specific CPU-side IRQs.
  657. */
  658. #define MAX_PIRQS 8
  659. static int pirq_entries [MAX_PIRQS];
  660. static int pirqs_enabled;
  661. int skip_ioapic_setup;
  662. static int __init ioapic_pirq_setup(char *str)
  663. {
  664. int i, max;
  665. int ints[MAX_PIRQS+1];
  666. get_options(str, ARRAY_SIZE(ints), ints);
  667. for (i = 0; i < MAX_PIRQS; i++)
  668. pirq_entries[i] = -1;
  669. pirqs_enabled = 1;
  670. apic_printk(APIC_VERBOSE, KERN_INFO
  671. "PIRQ redirection, working around broken MP-BIOS.\n");
  672. max = MAX_PIRQS;
  673. if (ints[0] < MAX_PIRQS)
  674. max = ints[0];
  675. for (i = 0; i < max; i++) {
  676. apic_printk(APIC_VERBOSE, KERN_DEBUG
  677. "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
  678. /*
  679. * PIRQs are mapped upside down, usually.
  680. */
  681. pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
  682. }
  683. return 1;
  684. }
  685. __setup("pirq=", ioapic_pirq_setup);
  686. /*
  687. * Find the IRQ entry number of a certain pin.
  688. */
  689. static int find_irq_entry(int apic, int pin, int type)
  690. {
  691. int i;
  692. for (i = 0; i < mp_irq_entries; i++)
  693. if (mp_irqs[i].mpc_irqtype == type &&
  694. (mp_irqs[i].mpc_dstapic == mp_ioapics[apic].mpc_apicid ||
  695. mp_irqs[i].mpc_dstapic == MP_APIC_ALL) &&
  696. mp_irqs[i].mpc_dstirq == pin)
  697. return i;
  698. return -1;
  699. }
  700. /*
  701. * Find the pin to which IRQ[irq] (ISA) is connected
  702. */
  703. static int __init find_isa_irq_pin(int irq, int type)
  704. {
  705. int i;
  706. for (i = 0; i < mp_irq_entries; i++) {
  707. int lbus = mp_irqs[i].mpc_srcbus;
  708. if (test_bit(lbus, mp_bus_not_pci) &&
  709. (mp_irqs[i].mpc_irqtype == type) &&
  710. (mp_irqs[i].mpc_srcbusirq == irq))
  711. return mp_irqs[i].mpc_dstirq;
  712. }
  713. return -1;
  714. }
  715. static int __init find_isa_irq_apic(int irq, int type)
  716. {
  717. int i;
  718. for (i = 0; i < mp_irq_entries; i++) {
  719. int lbus = mp_irqs[i].mpc_srcbus;
  720. if (test_bit(lbus, mp_bus_not_pci) &&
  721. (mp_irqs[i].mpc_irqtype == type) &&
  722. (mp_irqs[i].mpc_srcbusirq == irq))
  723. break;
  724. }
  725. if (i < mp_irq_entries) {
  726. int apic;
  727. for(apic = 0; apic < nr_ioapics; apic++) {
  728. if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic)
  729. return apic;
  730. }
  731. }
  732. return -1;
  733. }
  734. /*
  735. * Find a specific PCI IRQ entry.
  736. * Not an __init, possibly needed by modules
  737. */
  738. static int pin_2_irq(int idx, int apic, int pin);
  739. int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin)
  740. {
  741. int apic, i, best_guess = -1;
  742. apic_printk(APIC_DEBUG, "querying PCI -> IRQ mapping bus:%d, "
  743. "slot:%d, pin:%d.\n", bus, slot, pin);
  744. if (mp_bus_id_to_pci_bus[bus] == -1) {
  745. printk(KERN_WARNING "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
  746. return -1;
  747. }
  748. for (i = 0; i < mp_irq_entries; i++) {
  749. int lbus = mp_irqs[i].mpc_srcbus;
  750. for (apic = 0; apic < nr_ioapics; apic++)
  751. if (mp_ioapics[apic].mpc_apicid == mp_irqs[i].mpc_dstapic ||
  752. mp_irqs[i].mpc_dstapic == MP_APIC_ALL)
  753. break;
  754. if (!test_bit(lbus, mp_bus_not_pci) &&
  755. !mp_irqs[i].mpc_irqtype &&
  756. (bus == lbus) &&
  757. (slot == ((mp_irqs[i].mpc_srcbusirq >> 2) & 0x1f))) {
  758. int irq = pin_2_irq(i,apic,mp_irqs[i].mpc_dstirq);
  759. if (!(apic || IO_APIC_IRQ(irq)))
  760. continue;
  761. if (pin == (mp_irqs[i].mpc_srcbusirq & 3))
  762. return irq;
  763. /*
  764. * Use the first all-but-pin matching entry as a
  765. * best-guess fuzzy result for broken mptables.
  766. */
  767. if (best_guess < 0)
  768. best_guess = irq;
  769. }
  770. }
  771. return best_guess;
  772. }
  773. EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
  774. /*
  775. * This function currently is only a helper for the i386 smp boot process where
  776. * we need to reprogram the ioredtbls to cater for the cpus which have come online
  777. * so mask in all cases should simply be TARGET_CPUS
  778. */
  779. #ifdef CONFIG_SMP
  780. void __init setup_ioapic_dest(void)
  781. {
  782. int pin, ioapic, irq, irq_entry;
  783. if (skip_ioapic_setup == 1)
  784. return;
  785. for (ioapic = 0; ioapic < nr_ioapics; ioapic++) {
  786. for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
  787. irq_entry = find_irq_entry(ioapic, pin, mp_INT);
  788. if (irq_entry == -1)
  789. continue;
  790. irq = pin_2_irq(irq_entry, ioapic, pin);
  791. set_ioapic_affinity_irq(irq, TARGET_CPUS);
  792. }
  793. }
  794. }
  795. #endif
  796. #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
  797. /*
  798. * EISA Edge/Level control register, ELCR
  799. */
  800. static int EISA_ELCR(unsigned int irq)
  801. {
  802. if (irq < 16) {
  803. unsigned int port = 0x4d0 + (irq >> 3);
  804. return (inb(port) >> (irq & 7)) & 1;
  805. }
  806. apic_printk(APIC_VERBOSE, KERN_INFO
  807. "Broken MPtable reports ISA irq %d\n", irq);
  808. return 0;
  809. }
  810. #endif
  811. /* ISA interrupts are always polarity zero edge triggered,
  812. * when listed as conforming in the MP table. */
  813. #define default_ISA_trigger(idx) (0)
  814. #define default_ISA_polarity(idx) (0)
  815. /* EISA interrupts are always polarity zero and can be edge or level
  816. * trigger depending on the ELCR value. If an interrupt is listed as
  817. * EISA conforming in the MP table, that means its trigger type must
  818. * be read in from the ELCR */
  819. #define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].mpc_srcbusirq))
  820. #define default_EISA_polarity(idx) default_ISA_polarity(idx)
  821. /* PCI interrupts are always polarity one level triggered,
  822. * when listed as conforming in the MP table. */
  823. #define default_PCI_trigger(idx) (1)
  824. #define default_PCI_polarity(idx) (1)
  825. /* MCA interrupts are always polarity zero level triggered,
  826. * when listed as conforming in the MP table. */
  827. #define default_MCA_trigger(idx) (1)
  828. #define default_MCA_polarity(idx) default_ISA_polarity(idx)
  829. static int MPBIOS_polarity(int idx)
  830. {
  831. int bus = mp_irqs[idx].mpc_srcbus;
  832. int polarity;
  833. /*
  834. * Determine IRQ line polarity (high active or low active):
  835. */
  836. switch (mp_irqs[idx].mpc_irqflag & 3)
  837. {
  838. case 0: /* conforms, ie. bus-type dependent polarity */
  839. {
  840. polarity = test_bit(bus, mp_bus_not_pci)?
  841. default_ISA_polarity(idx):
  842. default_PCI_polarity(idx);
  843. break;
  844. }
  845. case 1: /* high active */
  846. {
  847. polarity = 0;
  848. break;
  849. }
  850. case 2: /* reserved */
  851. {
  852. printk(KERN_WARNING "broken BIOS!!\n");
  853. polarity = 1;
  854. break;
  855. }
  856. case 3: /* low active */
  857. {
  858. polarity = 1;
  859. break;
  860. }
  861. default: /* invalid */
  862. {
  863. printk(KERN_WARNING "broken BIOS!!\n");
  864. polarity = 1;
  865. break;
  866. }
  867. }
  868. return polarity;
  869. }
  870. static int MPBIOS_trigger(int idx)
  871. {
  872. int bus = mp_irqs[idx].mpc_srcbus;
  873. int trigger;
  874. /*
  875. * Determine IRQ trigger mode (edge or level sensitive):
  876. */
  877. switch ((mp_irqs[idx].mpc_irqflag>>2) & 3)
  878. {
  879. case 0: /* conforms, ie. bus-type dependent */
  880. {
  881. trigger = test_bit(bus, mp_bus_not_pci)?
  882. default_ISA_trigger(idx):
  883. default_PCI_trigger(idx);
  884. #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
  885. switch (mp_bus_id_to_type[bus])
  886. {
  887. case MP_BUS_ISA: /* ISA pin */
  888. {
  889. /* set before the switch */
  890. break;
  891. }
  892. case MP_BUS_EISA: /* EISA pin */
  893. {
  894. trigger = default_EISA_trigger(idx);
  895. break;
  896. }
  897. case MP_BUS_PCI: /* PCI pin */
  898. {
  899. /* set before the switch */
  900. break;
  901. }
  902. case MP_BUS_MCA: /* MCA pin */
  903. {
  904. trigger = default_MCA_trigger(idx);
  905. break;
  906. }
  907. default:
  908. {
  909. printk(KERN_WARNING "broken BIOS!!\n");
  910. trigger = 1;
  911. break;
  912. }
  913. }
  914. #endif
  915. break;
  916. }
  917. case 1: /* edge */
  918. {
  919. trigger = 0;
  920. break;
  921. }
  922. case 2: /* reserved */
  923. {
  924. printk(KERN_WARNING "broken BIOS!!\n");
  925. trigger = 1;
  926. break;
  927. }
  928. case 3: /* level */
  929. {
  930. trigger = 1;
  931. break;
  932. }
  933. default: /* invalid */
  934. {
  935. printk(KERN_WARNING "broken BIOS!!\n");
  936. trigger = 0;
  937. break;
  938. }
  939. }
  940. return trigger;
  941. }
  942. static inline int irq_polarity(int idx)
  943. {
  944. return MPBIOS_polarity(idx);
  945. }
  946. static inline int irq_trigger(int idx)
  947. {
  948. return MPBIOS_trigger(idx);
  949. }
  950. static int pin_2_irq(int idx, int apic, int pin)
  951. {
  952. int irq, i;
  953. int bus = mp_irqs[idx].mpc_srcbus;
  954. /*
  955. * Debugging check, we are in big trouble if this message pops up!
  956. */
  957. if (mp_irqs[idx].mpc_dstirq != pin)
  958. printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
  959. if (test_bit(bus, mp_bus_not_pci))
  960. irq = mp_irqs[idx].mpc_srcbusirq;
  961. else {
  962. /*
  963. * PCI IRQs are mapped in order
  964. */
  965. i = irq = 0;
  966. while (i < apic)
  967. irq += nr_ioapic_registers[i++];
  968. irq += pin;
  969. /*
  970. * For MPS mode, so far only needed by ES7000 platform
  971. */
  972. if (ioapic_renumber_irq)
  973. irq = ioapic_renumber_irq(apic, irq);
  974. }
  975. /*
  976. * PCI IRQ command line redirection. Yes, limits are hardcoded.
  977. */
  978. if ((pin >= 16) && (pin <= 23)) {
  979. if (pirq_entries[pin-16] != -1) {
  980. if (!pirq_entries[pin-16]) {
  981. apic_printk(APIC_VERBOSE, KERN_DEBUG
  982. "disabling PIRQ%d\n", pin-16);
  983. } else {
  984. irq = pirq_entries[pin-16];
  985. apic_printk(APIC_VERBOSE, KERN_DEBUG
  986. "using PIRQ%d -> IRQ %d\n",
  987. pin-16, irq);
  988. }
  989. }
  990. }
  991. return irq;
  992. }
  993. static inline int IO_APIC_irq_trigger(int irq)
  994. {
  995. int apic, idx, pin;
  996. for (apic = 0; apic < nr_ioapics; apic++) {
  997. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
  998. idx = find_irq_entry(apic,pin,mp_INT);
  999. if ((idx != -1) && (irq == pin_2_irq(idx,apic,pin)))
  1000. return irq_trigger(idx);
  1001. }
  1002. }
  1003. /*
  1004. * nonexistent IRQs are edge default
  1005. */
  1006. return 0;
  1007. }
  1008. /* irq_vectors is indexed by the sum of all RTEs in all I/O APICs. */
  1009. static u8 irq_vector[NR_IRQ_VECTORS] __read_mostly = { FIRST_DEVICE_VECTOR , 0 };
  1010. static int __assign_irq_vector(int irq)
  1011. {
  1012. static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
  1013. int vector, offset;
  1014. BUG_ON((unsigned)irq >= NR_IRQ_VECTORS);
  1015. if (irq_vector[irq] > 0)
  1016. return irq_vector[irq];
  1017. vector = current_vector;
  1018. offset = current_offset;
  1019. next:
  1020. vector += 8;
  1021. if (vector >= FIRST_SYSTEM_VECTOR) {
  1022. offset = (offset + 1) % 8;
  1023. vector = FIRST_DEVICE_VECTOR + offset;
  1024. }
  1025. if (vector == current_vector)
  1026. return -ENOSPC;
  1027. if (test_and_set_bit(vector, used_vectors))
  1028. goto next;
  1029. current_vector = vector;
  1030. current_offset = offset;
  1031. irq_vector[irq] = vector;
  1032. return vector;
  1033. }
  1034. static int assign_irq_vector(int irq)
  1035. {
  1036. unsigned long flags;
  1037. int vector;
  1038. spin_lock_irqsave(&vector_lock, flags);
  1039. vector = __assign_irq_vector(irq);
  1040. spin_unlock_irqrestore(&vector_lock, flags);
  1041. return vector;
  1042. }
  1043. static struct irq_chip ioapic_chip;
  1044. #define IOAPIC_AUTO -1
  1045. #define IOAPIC_EDGE 0
  1046. #define IOAPIC_LEVEL 1
  1047. static void ioapic_register_intr(int irq, int vector, unsigned long trigger)
  1048. {
  1049. if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
  1050. trigger == IOAPIC_LEVEL) {
  1051. irq_desc[irq].status |= IRQ_LEVEL;
  1052. set_irq_chip_and_handler_name(irq, &ioapic_chip,
  1053. handle_fasteoi_irq, "fasteoi");
  1054. } else {
  1055. irq_desc[irq].status &= ~IRQ_LEVEL;
  1056. set_irq_chip_and_handler_name(irq, &ioapic_chip,
  1057. handle_edge_irq, "edge");
  1058. }
  1059. set_intr_gate(vector, interrupt[irq]);
  1060. }
  1061. static void __init setup_IO_APIC_irqs(void)
  1062. {
  1063. struct IO_APIC_route_entry entry;
  1064. int apic, pin, idx, irq, first_notcon = 1, vector;
  1065. apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
  1066. for (apic = 0; apic < nr_ioapics; apic++) {
  1067. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
  1068. /*
  1069. * add it to the IO-APIC irq-routing table:
  1070. */
  1071. memset(&entry,0,sizeof(entry));
  1072. entry.delivery_mode = INT_DELIVERY_MODE;
  1073. entry.dest_mode = INT_DEST_MODE;
  1074. entry.mask = 0; /* enable IRQ */
  1075. entry.dest.logical.logical_dest =
  1076. cpu_mask_to_apicid(TARGET_CPUS);
  1077. idx = find_irq_entry(apic,pin,mp_INT);
  1078. if (idx == -1) {
  1079. if (first_notcon) {
  1080. apic_printk(APIC_VERBOSE, KERN_DEBUG
  1081. " IO-APIC (apicid-pin) %d-%d",
  1082. mp_ioapics[apic].mpc_apicid,
  1083. pin);
  1084. first_notcon = 0;
  1085. } else
  1086. apic_printk(APIC_VERBOSE, ", %d-%d",
  1087. mp_ioapics[apic].mpc_apicid, pin);
  1088. continue;
  1089. }
  1090. if (!first_notcon) {
  1091. apic_printk(APIC_VERBOSE, " not connected.\n");
  1092. first_notcon = 1;
  1093. }
  1094. entry.trigger = irq_trigger(idx);
  1095. entry.polarity = irq_polarity(idx);
  1096. if (irq_trigger(idx)) {
  1097. entry.trigger = 1;
  1098. entry.mask = 1;
  1099. }
  1100. irq = pin_2_irq(idx, apic, pin);
  1101. /*
  1102. * skip adding the timer int on secondary nodes, which causes
  1103. * a small but painful rift in the time-space continuum
  1104. */
  1105. if (multi_timer_check(apic, irq))
  1106. continue;
  1107. else
  1108. add_pin_to_irq(irq, apic, pin);
  1109. if (!apic && !IO_APIC_IRQ(irq))
  1110. continue;
  1111. if (IO_APIC_IRQ(irq)) {
  1112. vector = assign_irq_vector(irq);
  1113. entry.vector = vector;
  1114. ioapic_register_intr(irq, vector, IOAPIC_AUTO);
  1115. if (!apic && (irq < 16))
  1116. disable_8259A_irq(irq);
  1117. }
  1118. ioapic_write_entry(apic, pin, entry);
  1119. }
  1120. }
  1121. if (!first_notcon)
  1122. apic_printk(APIC_VERBOSE, " not connected.\n");
  1123. }
  1124. /*
  1125. * Set up the 8259A-master output pin:
  1126. */
  1127. static void __init setup_ExtINT_IRQ0_pin(unsigned int apic, unsigned int pin, int vector)
  1128. {
  1129. struct IO_APIC_route_entry entry;
  1130. memset(&entry,0,sizeof(entry));
  1131. disable_8259A_irq(0);
  1132. /* mask LVT0 */
  1133. apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
  1134. /*
  1135. * We use logical delivery to get the timer IRQ
  1136. * to the first CPU.
  1137. */
  1138. entry.dest_mode = INT_DEST_MODE;
  1139. entry.mask = 0; /* unmask IRQ now */
  1140. entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
  1141. entry.delivery_mode = INT_DELIVERY_MODE;
  1142. entry.polarity = 0;
  1143. entry.trigger = 0;
  1144. entry.vector = vector;
  1145. /*
  1146. * The timer IRQ doesn't have to know that behind the
  1147. * scene we have a 8259A-master in AEOI mode ...
  1148. */
  1149. irq_desc[0].chip = &ioapic_chip;
  1150. set_irq_handler(0, handle_edge_irq);
  1151. /*
  1152. * Add it to the IO-APIC irq-routing table:
  1153. */
  1154. ioapic_write_entry(apic, pin, entry);
  1155. enable_8259A_irq(0);
  1156. }
  1157. void __init print_IO_APIC(void)
  1158. {
  1159. int apic, i;
  1160. union IO_APIC_reg_00 reg_00;
  1161. union IO_APIC_reg_01 reg_01;
  1162. union IO_APIC_reg_02 reg_02;
  1163. union IO_APIC_reg_03 reg_03;
  1164. unsigned long flags;
  1165. if (apic_verbosity == APIC_QUIET)
  1166. return;
  1167. printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
  1168. for (i = 0; i < nr_ioapics; i++)
  1169. printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
  1170. mp_ioapics[i].mpc_apicid, nr_ioapic_registers[i]);
  1171. /*
  1172. * We are a bit conservative about what we expect. We have to
  1173. * know about every hardware change ASAP.
  1174. */
  1175. printk(KERN_INFO "testing the IO APIC.......................\n");
  1176. for (apic = 0; apic < nr_ioapics; apic++) {
  1177. spin_lock_irqsave(&ioapic_lock, flags);
  1178. reg_00.raw = io_apic_read(apic, 0);
  1179. reg_01.raw = io_apic_read(apic, 1);
  1180. if (reg_01.bits.version >= 0x10)
  1181. reg_02.raw = io_apic_read(apic, 2);
  1182. if (reg_01.bits.version >= 0x20)
  1183. reg_03.raw = io_apic_read(apic, 3);
  1184. spin_unlock_irqrestore(&ioapic_lock, flags);
  1185. printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].mpc_apicid);
  1186. printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
  1187. printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
  1188. printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
  1189. printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
  1190. printk(KERN_DEBUG ".... register #01: %08X\n", reg_01.raw);
  1191. printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
  1192. printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
  1193. printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
  1194. /*
  1195. * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
  1196. * but the value of reg_02 is read as the previous read register
  1197. * value, so ignore it if reg_02 == reg_01.
  1198. */
  1199. if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
  1200. printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
  1201. printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
  1202. }
  1203. /*
  1204. * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
  1205. * or reg_03, but the value of reg_0[23] is read as the previous read
  1206. * register value, so ignore it if reg_03 == reg_0[12].
  1207. */
  1208. if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
  1209. reg_03.raw != reg_01.raw) {
  1210. printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
  1211. printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
  1212. }
  1213. printk(KERN_DEBUG ".... IRQ redirection table:\n");
  1214. printk(KERN_DEBUG " NR Log Phy Mask Trig IRR Pol"
  1215. " Stat Dest Deli Vect: \n");
  1216. for (i = 0; i <= reg_01.bits.entries; i++) {
  1217. struct IO_APIC_route_entry entry;
  1218. entry = ioapic_read_entry(apic, i);
  1219. printk(KERN_DEBUG " %02x %03X %02X ",
  1220. i,
  1221. entry.dest.logical.logical_dest,
  1222. entry.dest.physical.physical_dest
  1223. );
  1224. printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
  1225. entry.mask,
  1226. entry.trigger,
  1227. entry.irr,
  1228. entry.polarity,
  1229. entry.delivery_status,
  1230. entry.dest_mode,
  1231. entry.delivery_mode,
  1232. entry.vector
  1233. );
  1234. }
  1235. }
  1236. printk(KERN_DEBUG "IRQ to pin mappings:\n");
  1237. for (i = 0; i < NR_IRQS; i++) {
  1238. struct irq_pin_list *entry = irq_2_pin + i;
  1239. if (entry->pin < 0)
  1240. continue;
  1241. printk(KERN_DEBUG "IRQ%d ", i);
  1242. for (;;) {
  1243. printk("-> %d:%d", entry->apic, entry->pin);
  1244. if (!entry->next)
  1245. break;
  1246. entry = irq_2_pin + entry->next;
  1247. }
  1248. printk("\n");
  1249. }
  1250. printk(KERN_INFO ".................................... done.\n");
  1251. return;
  1252. }
  1253. #if 0
  1254. static void print_APIC_bitfield (int base)
  1255. {
  1256. unsigned int v;
  1257. int i, j;
  1258. if (apic_verbosity == APIC_QUIET)
  1259. return;
  1260. printk(KERN_DEBUG "0123456789abcdef0123456789abcdef\n" KERN_DEBUG);
  1261. for (i = 0; i < 8; i++) {
  1262. v = apic_read(base + i*0x10);
  1263. for (j = 0; j < 32; j++) {
  1264. if (v & (1<<j))
  1265. printk("1");
  1266. else
  1267. printk("0");
  1268. }
  1269. printk("\n");
  1270. }
  1271. }
  1272. void /*__init*/ print_local_APIC(void * dummy)
  1273. {
  1274. unsigned int v, ver, maxlvt;
  1275. if (apic_verbosity == APIC_QUIET)
  1276. return;
  1277. printk("\n" KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
  1278. smp_processor_id(), hard_smp_processor_id());
  1279. printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v,
  1280. GET_APIC_ID(read_apic_id()));
  1281. v = apic_read(APIC_LVR);
  1282. printk(KERN_INFO "... APIC VERSION: %08x\n", v);
  1283. ver = GET_APIC_VERSION(v);
  1284. maxlvt = lapic_get_maxlvt();
  1285. v = apic_read(APIC_TASKPRI);
  1286. printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
  1287. if (APIC_INTEGRATED(ver)) { /* !82489DX */
  1288. v = apic_read(APIC_ARBPRI);
  1289. printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
  1290. v & APIC_ARBPRI_MASK);
  1291. v = apic_read(APIC_PROCPRI);
  1292. printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
  1293. }
  1294. v = apic_read(APIC_EOI);
  1295. printk(KERN_DEBUG "... APIC EOI: %08x\n", v);
  1296. v = apic_read(APIC_RRR);
  1297. printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
  1298. v = apic_read(APIC_LDR);
  1299. printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
  1300. v = apic_read(APIC_DFR);
  1301. printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
  1302. v = apic_read(APIC_SPIV);
  1303. printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
  1304. printk(KERN_DEBUG "... APIC ISR field:\n");
  1305. print_APIC_bitfield(APIC_ISR);
  1306. printk(KERN_DEBUG "... APIC TMR field:\n");
  1307. print_APIC_bitfield(APIC_TMR);
  1308. printk(KERN_DEBUG "... APIC IRR field:\n");
  1309. print_APIC_bitfield(APIC_IRR);
  1310. if (APIC_INTEGRATED(ver)) { /* !82489DX */
  1311. if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
  1312. apic_write(APIC_ESR, 0);
  1313. v = apic_read(APIC_ESR);
  1314. printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
  1315. }
  1316. v = apic_read(APIC_ICR);
  1317. printk(KERN_DEBUG "... APIC ICR: %08x\n", v);
  1318. v = apic_read(APIC_ICR2);
  1319. printk(KERN_DEBUG "... APIC ICR2: %08x\n", v);
  1320. v = apic_read(APIC_LVTT);
  1321. printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
  1322. if (maxlvt > 3) { /* PC is LVT#4. */
  1323. v = apic_read(APIC_LVTPC);
  1324. printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
  1325. }
  1326. v = apic_read(APIC_LVT0);
  1327. printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
  1328. v = apic_read(APIC_LVT1);
  1329. printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
  1330. if (maxlvt > 2) { /* ERR is LVT#3. */
  1331. v = apic_read(APIC_LVTERR);
  1332. printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
  1333. }
  1334. v = apic_read(APIC_TMICT);
  1335. printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
  1336. v = apic_read(APIC_TMCCT);
  1337. printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
  1338. v = apic_read(APIC_TDCR);
  1339. printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
  1340. printk("\n");
  1341. }
  1342. void print_all_local_APICs (void)
  1343. {
  1344. on_each_cpu(print_local_APIC, NULL, 1, 1);
  1345. }
  1346. void /*__init*/ print_PIC(void)
  1347. {
  1348. unsigned int v;
  1349. unsigned long flags;
  1350. if (apic_verbosity == APIC_QUIET)
  1351. return;
  1352. printk(KERN_DEBUG "\nprinting PIC contents\n");
  1353. spin_lock_irqsave(&i8259A_lock, flags);
  1354. v = inb(0xa1) << 8 | inb(0x21);
  1355. printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
  1356. v = inb(0xa0) << 8 | inb(0x20);
  1357. printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
  1358. outb(0x0b,0xa0);
  1359. outb(0x0b,0x20);
  1360. v = inb(0xa0) << 8 | inb(0x20);
  1361. outb(0x0a,0xa0);
  1362. outb(0x0a,0x20);
  1363. spin_unlock_irqrestore(&i8259A_lock, flags);
  1364. printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
  1365. v = inb(0x4d1) << 8 | inb(0x4d0);
  1366. printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
  1367. }
  1368. #endif /* 0 */
  1369. static void __init enable_IO_APIC(void)
  1370. {
  1371. union IO_APIC_reg_01 reg_01;
  1372. int i8259_apic, i8259_pin;
  1373. int i, apic;
  1374. unsigned long flags;
  1375. for (i = 0; i < PIN_MAP_SIZE; i++) {
  1376. irq_2_pin[i].pin = -1;
  1377. irq_2_pin[i].next = 0;
  1378. }
  1379. if (!pirqs_enabled)
  1380. for (i = 0; i < MAX_PIRQS; i++)
  1381. pirq_entries[i] = -1;
  1382. /*
  1383. * The number of IO-APIC IRQ registers (== #pins):
  1384. */
  1385. for (apic = 0; apic < nr_ioapics; apic++) {
  1386. spin_lock_irqsave(&ioapic_lock, flags);
  1387. reg_01.raw = io_apic_read(apic, 1);
  1388. spin_unlock_irqrestore(&ioapic_lock, flags);
  1389. nr_ioapic_registers[apic] = reg_01.bits.entries+1;
  1390. }
  1391. for(apic = 0; apic < nr_ioapics; apic++) {
  1392. int pin;
  1393. /* See if any of the pins is in ExtINT mode */
  1394. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
  1395. struct IO_APIC_route_entry entry;
  1396. entry = ioapic_read_entry(apic, pin);
  1397. /* If the interrupt line is enabled and in ExtInt mode
  1398. * I have found the pin where the i8259 is connected.
  1399. */
  1400. if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
  1401. ioapic_i8259.apic = apic;
  1402. ioapic_i8259.pin = pin;
  1403. goto found_i8259;
  1404. }
  1405. }
  1406. }
  1407. found_i8259:
  1408. /* Look to see what if the MP table has reported the ExtINT */
  1409. /* If we could not find the appropriate pin by looking at the ioapic
  1410. * the i8259 probably is not connected the ioapic but give the
  1411. * mptable a chance anyway.
  1412. */
  1413. i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
  1414. i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
  1415. /* Trust the MP table if nothing is setup in the hardware */
  1416. if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
  1417. printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
  1418. ioapic_i8259.pin = i8259_pin;
  1419. ioapic_i8259.apic = i8259_apic;
  1420. }
  1421. /* Complain if the MP table and the hardware disagree */
  1422. if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
  1423. (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
  1424. {
  1425. printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
  1426. }
  1427. /*
  1428. * Do not trust the IO-APIC being empty at bootup
  1429. */
  1430. clear_IO_APIC();
  1431. }
  1432. /*
  1433. * Not an __init, needed by the reboot code
  1434. */
  1435. void disable_IO_APIC(void)
  1436. {
  1437. /*
  1438. * Clear the IO-APIC before rebooting:
  1439. */
  1440. clear_IO_APIC();
  1441. /*
  1442. * If the i8259 is routed through an IOAPIC
  1443. * Put that IOAPIC in virtual wire mode
  1444. * so legacy interrupts can be delivered.
  1445. */
  1446. if (ioapic_i8259.pin != -1) {
  1447. struct IO_APIC_route_entry entry;
  1448. memset(&entry, 0, sizeof(entry));
  1449. entry.mask = 0; /* Enabled */
  1450. entry.trigger = 0; /* Edge */
  1451. entry.irr = 0;
  1452. entry.polarity = 0; /* High */
  1453. entry.delivery_status = 0;
  1454. entry.dest_mode = 0; /* Physical */
  1455. entry.delivery_mode = dest_ExtINT; /* ExtInt */
  1456. entry.vector = 0;
  1457. entry.dest.physical.physical_dest =
  1458. GET_APIC_ID(read_apic_id());
  1459. /*
  1460. * Add it to the IO-APIC irq-routing table:
  1461. */
  1462. ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
  1463. }
  1464. disconnect_bsp_APIC(ioapic_i8259.pin != -1);
  1465. }
  1466. /*
  1467. * function to set the IO-APIC physical IDs based on the
  1468. * values stored in the MPC table.
  1469. *
  1470. * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
  1471. */
  1472. #ifndef CONFIG_X86_NUMAQ
  1473. static void __init setup_ioapic_ids_from_mpc(void)
  1474. {
  1475. union IO_APIC_reg_00 reg_00;
  1476. physid_mask_t phys_id_present_map;
  1477. int apic;
  1478. int i;
  1479. unsigned char old_id;
  1480. unsigned long flags;
  1481. /*
  1482. * Don't check I/O APIC IDs for xAPIC systems. They have
  1483. * no meaning without the serial APIC bus.
  1484. */
  1485. if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
  1486. || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
  1487. return;
  1488. /*
  1489. * This is broken; anything with a real cpu count has to
  1490. * circumvent this idiocy regardless.
  1491. */
  1492. phys_id_present_map = ioapic_phys_id_map(phys_cpu_present_map);
  1493. /*
  1494. * Set the IOAPIC ID to the value stored in the MPC table.
  1495. */
  1496. for (apic = 0; apic < nr_ioapics; apic++) {
  1497. /* Read the register 0 value */
  1498. spin_lock_irqsave(&ioapic_lock, flags);
  1499. reg_00.raw = io_apic_read(apic, 0);
  1500. spin_unlock_irqrestore(&ioapic_lock, flags);
  1501. old_id = mp_ioapics[apic].mpc_apicid;
  1502. if (mp_ioapics[apic].mpc_apicid >= get_physical_broadcast()) {
  1503. printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
  1504. apic, mp_ioapics[apic].mpc_apicid);
  1505. printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
  1506. reg_00.bits.ID);
  1507. mp_ioapics[apic].mpc_apicid = reg_00.bits.ID;
  1508. }
  1509. /*
  1510. * Sanity check, is the ID really free? Every APIC in a
  1511. * system must have a unique ID or we get lots of nice
  1512. * 'stuck on smp_invalidate_needed IPI wait' messages.
  1513. */
  1514. if (check_apicid_used(phys_id_present_map,
  1515. mp_ioapics[apic].mpc_apicid)) {
  1516. printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
  1517. apic, mp_ioapics[apic].mpc_apicid);
  1518. for (i = 0; i < get_physical_broadcast(); i++)
  1519. if (!physid_isset(i, phys_id_present_map))
  1520. break;
  1521. if (i >= get_physical_broadcast())
  1522. panic("Max APIC ID exceeded!\n");
  1523. printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
  1524. i);
  1525. physid_set(i, phys_id_present_map);
  1526. mp_ioapics[apic].mpc_apicid = i;
  1527. } else {
  1528. physid_mask_t tmp;
  1529. tmp = apicid_to_cpu_present(mp_ioapics[apic].mpc_apicid);
  1530. apic_printk(APIC_VERBOSE, "Setting %d in the "
  1531. "phys_id_present_map\n",
  1532. mp_ioapics[apic].mpc_apicid);
  1533. physids_or(phys_id_present_map, phys_id_present_map, tmp);
  1534. }
  1535. /*
  1536. * We need to adjust the IRQ routing table
  1537. * if the ID changed.
  1538. */
  1539. if (old_id != mp_ioapics[apic].mpc_apicid)
  1540. for (i = 0; i < mp_irq_entries; i++)
  1541. if (mp_irqs[i].mpc_dstapic == old_id)
  1542. mp_irqs[i].mpc_dstapic
  1543. = mp_ioapics[apic].mpc_apicid;
  1544. /*
  1545. * Read the right value from the MPC table and
  1546. * write it into the ID register.
  1547. */
  1548. apic_printk(APIC_VERBOSE, KERN_INFO
  1549. "...changing IO-APIC physical APIC ID to %d ...",
  1550. mp_ioapics[apic].mpc_apicid);
  1551. reg_00.bits.ID = mp_ioapics[apic].mpc_apicid;
  1552. spin_lock_irqsave(&ioapic_lock, flags);
  1553. io_apic_write(apic, 0, reg_00.raw);
  1554. spin_unlock_irqrestore(&ioapic_lock, flags);
  1555. /*
  1556. * Sanity check
  1557. */
  1558. spin_lock_irqsave(&ioapic_lock, flags);
  1559. reg_00.raw = io_apic_read(apic, 0);
  1560. spin_unlock_irqrestore(&ioapic_lock, flags);
  1561. if (reg_00.bits.ID != mp_ioapics[apic].mpc_apicid)
  1562. printk("could not set ID!\n");
  1563. else
  1564. apic_printk(APIC_VERBOSE, " ok.\n");
  1565. }
  1566. }
  1567. #else
  1568. static void __init setup_ioapic_ids_from_mpc(void) { }
  1569. #endif
  1570. int no_timer_check __initdata;
  1571. static int __init notimercheck(char *s)
  1572. {
  1573. no_timer_check = 1;
  1574. return 1;
  1575. }
  1576. __setup("no_timer_check", notimercheck);
  1577. /*
  1578. * There is a nasty bug in some older SMP boards, their mptable lies
  1579. * about the timer IRQ. We do the following to work around the situation:
  1580. *
  1581. * - timer IRQ defaults to IO-APIC IRQ
  1582. * - if this function detects that timer IRQs are defunct, then we fall
  1583. * back to ISA timer IRQs
  1584. */
  1585. static int __init timer_irq_works(void)
  1586. {
  1587. unsigned long t1 = jiffies;
  1588. unsigned long flags;
  1589. if (no_timer_check)
  1590. return 1;
  1591. local_save_flags(flags);
  1592. local_irq_enable();
  1593. /* Let ten ticks pass... */
  1594. mdelay((10 * 1000) / HZ);
  1595. local_irq_restore(flags);
  1596. /*
  1597. * Expect a few ticks at least, to be sure some possible
  1598. * glue logic does not lock up after one or two first
  1599. * ticks in a non-ExtINT mode. Also the local APIC
  1600. * might have cached one ExtINT interrupt. Finally, at
  1601. * least one tick may be lost due to delays.
  1602. */
  1603. if (time_after(jiffies, t1 + 4))
  1604. return 1;
  1605. return 0;
  1606. }
  1607. /*
  1608. * In the SMP+IOAPIC case it might happen that there are an unspecified
  1609. * number of pending IRQ events unhandled. These cases are very rare,
  1610. * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
  1611. * better to do it this way as thus we do not have to be aware of
  1612. * 'pending' interrupts in the IRQ path, except at this point.
  1613. */
  1614. /*
  1615. * Edge triggered needs to resend any interrupt
  1616. * that was delayed but this is now handled in the device
  1617. * independent code.
  1618. */
  1619. /*
  1620. * Startup quirk:
  1621. *
  1622. * Starting up a edge-triggered IO-APIC interrupt is
  1623. * nasty - we need to make sure that we get the edge.
  1624. * If it is already asserted for some reason, we need
  1625. * return 1 to indicate that is was pending.
  1626. *
  1627. * This is not complete - we should be able to fake
  1628. * an edge even if it isn't on the 8259A...
  1629. *
  1630. * (We do this for level-triggered IRQs too - it cannot hurt.)
  1631. */
  1632. static unsigned int startup_ioapic_irq(unsigned int irq)
  1633. {
  1634. int was_pending = 0;
  1635. unsigned long flags;
  1636. spin_lock_irqsave(&ioapic_lock, flags);
  1637. if (irq < 16) {
  1638. disable_8259A_irq(irq);
  1639. if (i8259A_irq_pending(irq))
  1640. was_pending = 1;
  1641. }
  1642. __unmask_IO_APIC_irq(irq);
  1643. spin_unlock_irqrestore(&ioapic_lock, flags);
  1644. return was_pending;
  1645. }
  1646. static void ack_ioapic_irq(unsigned int irq)
  1647. {
  1648. move_native_irq(irq);
  1649. ack_APIC_irq();
  1650. }
  1651. static void ack_ioapic_quirk_irq(unsigned int irq)
  1652. {
  1653. unsigned long v;
  1654. int i;
  1655. move_native_irq(irq);
  1656. /*
  1657. * It appears there is an erratum which affects at least version 0x11
  1658. * of I/O APIC (that's the 82093AA and cores integrated into various
  1659. * chipsets). Under certain conditions a level-triggered interrupt is
  1660. * erroneously delivered as edge-triggered one but the respective IRR
  1661. * bit gets set nevertheless. As a result the I/O unit expects an EOI
  1662. * message but it will never arrive and further interrupts are blocked
  1663. * from the source. The exact reason is so far unknown, but the
  1664. * phenomenon was observed when two consecutive interrupt requests
  1665. * from a given source get delivered to the same CPU and the source is
  1666. * temporarily disabled in between.
  1667. *
  1668. * A workaround is to simulate an EOI message manually. We achieve it
  1669. * by setting the trigger mode to edge and then to level when the edge
  1670. * trigger mode gets detected in the TMR of a local APIC for a
  1671. * level-triggered interrupt. We mask the source for the time of the
  1672. * operation to prevent an edge-triggered interrupt escaping meanwhile.
  1673. * The idea is from Manfred Spraul. --macro
  1674. */
  1675. i = irq_vector[irq];
  1676. v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
  1677. ack_APIC_irq();
  1678. if (!(v & (1 << (i & 0x1f)))) {
  1679. atomic_inc(&irq_mis_count);
  1680. spin_lock(&ioapic_lock);
  1681. __mask_and_edge_IO_APIC_irq(irq);
  1682. __unmask_and_level_IO_APIC_irq(irq);
  1683. spin_unlock(&ioapic_lock);
  1684. }
  1685. }
  1686. static int ioapic_retrigger_irq(unsigned int irq)
  1687. {
  1688. send_IPI_self(irq_vector[irq]);
  1689. return 1;
  1690. }
  1691. static struct irq_chip ioapic_chip __read_mostly = {
  1692. .name = "IO-APIC",
  1693. .startup = startup_ioapic_irq,
  1694. .mask = mask_IO_APIC_irq,
  1695. .unmask = unmask_IO_APIC_irq,
  1696. .ack = ack_ioapic_irq,
  1697. .eoi = ack_ioapic_quirk_irq,
  1698. #ifdef CONFIG_SMP
  1699. .set_affinity = set_ioapic_affinity_irq,
  1700. #endif
  1701. .retrigger = ioapic_retrigger_irq,
  1702. };
  1703. static inline void init_IO_APIC_traps(void)
  1704. {
  1705. int irq;
  1706. /*
  1707. * NOTE! The local APIC isn't very good at handling
  1708. * multiple interrupts at the same interrupt level.
  1709. * As the interrupt level is determined by taking the
  1710. * vector number and shifting that right by 4, we
  1711. * want to spread these out a bit so that they don't
  1712. * all fall in the same interrupt level.
  1713. *
  1714. * Also, we've got to be careful not to trash gate
  1715. * 0x80, because int 0x80 is hm, kind of importantish. ;)
  1716. */
  1717. for (irq = 0; irq < NR_IRQS ; irq++) {
  1718. if (IO_APIC_IRQ(irq) && !irq_vector[irq]) {
  1719. /*
  1720. * Hmm.. We don't have an entry for this,
  1721. * so default to an old-fashioned 8259
  1722. * interrupt if we can..
  1723. */
  1724. if (irq < 16)
  1725. make_8259A_irq(irq);
  1726. else
  1727. /* Strange. Oh, well.. */
  1728. irq_desc[irq].chip = &no_irq_chip;
  1729. }
  1730. }
  1731. }
  1732. /*
  1733. * The local APIC irq-chip implementation:
  1734. */
  1735. static void ack_apic(unsigned int irq)
  1736. {
  1737. ack_APIC_irq();
  1738. }
  1739. static void mask_lapic_irq (unsigned int irq)
  1740. {
  1741. unsigned long v;
  1742. v = apic_read(APIC_LVT0);
  1743. apic_write_around(APIC_LVT0, v | APIC_LVT_MASKED);
  1744. }
  1745. static void unmask_lapic_irq (unsigned int irq)
  1746. {
  1747. unsigned long v;
  1748. v = apic_read(APIC_LVT0);
  1749. apic_write_around(APIC_LVT0, v & ~APIC_LVT_MASKED);
  1750. }
  1751. static struct irq_chip lapic_chip __read_mostly = {
  1752. .name = "local-APIC-edge",
  1753. .mask = mask_lapic_irq,
  1754. .unmask = unmask_lapic_irq,
  1755. .eoi = ack_apic,
  1756. };
  1757. static void __init setup_nmi(void)
  1758. {
  1759. /*
  1760. * Dirty trick to enable the NMI watchdog ...
  1761. * We put the 8259A master into AEOI mode and
  1762. * unmask on all local APICs LVT0 as NMI.
  1763. *
  1764. * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
  1765. * is from Maciej W. Rozycki - so we do not have to EOI from
  1766. * the NMI handler or the timer interrupt.
  1767. */
  1768. apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
  1769. enable_NMI_through_LVT0();
  1770. apic_printk(APIC_VERBOSE, " done.\n");
  1771. }
  1772. /*
  1773. * This looks a bit hackish but it's about the only one way of sending
  1774. * a few INTA cycles to 8259As and any associated glue logic. ICR does
  1775. * not support the ExtINT mode, unfortunately. We need to send these
  1776. * cycles as some i82489DX-based boards have glue logic that keeps the
  1777. * 8259A interrupt line asserted until INTA. --macro
  1778. */
  1779. static inline void __init unlock_ExtINT_logic(void)
  1780. {
  1781. int apic, pin, i;
  1782. struct IO_APIC_route_entry entry0, entry1;
  1783. unsigned char save_control, save_freq_select;
  1784. pin = find_isa_irq_pin(8, mp_INT);
  1785. if (pin == -1) {
  1786. WARN_ON_ONCE(1);
  1787. return;
  1788. }
  1789. apic = find_isa_irq_apic(8, mp_INT);
  1790. if (apic == -1) {
  1791. WARN_ON_ONCE(1);
  1792. return;
  1793. }
  1794. entry0 = ioapic_read_entry(apic, pin);
  1795. clear_IO_APIC_pin(apic, pin);
  1796. memset(&entry1, 0, sizeof(entry1));
  1797. entry1.dest_mode = 0; /* physical delivery */
  1798. entry1.mask = 0; /* unmask IRQ now */
  1799. entry1.dest.physical.physical_dest = hard_smp_processor_id();
  1800. entry1.delivery_mode = dest_ExtINT;
  1801. entry1.polarity = entry0.polarity;
  1802. entry1.trigger = 0;
  1803. entry1.vector = 0;
  1804. ioapic_write_entry(apic, pin, entry1);
  1805. save_control = CMOS_READ(RTC_CONTROL);
  1806. save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
  1807. CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
  1808. RTC_FREQ_SELECT);
  1809. CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
  1810. i = 100;
  1811. while (i-- > 0) {
  1812. mdelay(10);
  1813. if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
  1814. i -= 10;
  1815. }
  1816. CMOS_WRITE(save_control, RTC_CONTROL);
  1817. CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
  1818. clear_IO_APIC_pin(apic, pin);
  1819. ioapic_write_entry(apic, pin, entry0);
  1820. }
  1821. /*
  1822. * This code may look a bit paranoid, but it's supposed to cooperate with
  1823. * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
  1824. * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
  1825. * fanatically on his truly buggy board.
  1826. */
  1827. static inline void __init check_timer(void)
  1828. {
  1829. int apic1, pin1, apic2, pin2;
  1830. int vector;
  1831. unsigned long flags;
  1832. local_irq_save(flags);
  1833. /*
  1834. * get/set the timer IRQ vector:
  1835. */
  1836. disable_8259A_irq(0);
  1837. vector = assign_irq_vector(0);
  1838. set_intr_gate(vector, interrupt[0]);
  1839. /*
  1840. * Subtle, code in do_timer_interrupt() expects an AEOI
  1841. * mode for the 8259A whenever interrupts are routed
  1842. * through I/O APICs. Also IRQ0 has to be enabled in
  1843. * the 8259A which implies the virtual wire has to be
  1844. * disabled in the local APIC.
  1845. */
  1846. apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
  1847. init_8259A(1);
  1848. timer_ack = 1;
  1849. if (timer_over_8254 > 0)
  1850. enable_8259A_irq(0);
  1851. pin1 = find_isa_irq_pin(0, mp_INT);
  1852. apic1 = find_isa_irq_apic(0, mp_INT);
  1853. pin2 = ioapic_i8259.pin;
  1854. apic2 = ioapic_i8259.apic;
  1855. printk(KERN_INFO "..TIMER: vector=0x%02X apic1=%d pin1=%d apic2=%d pin2=%d\n",
  1856. vector, apic1, pin1, apic2, pin2);
  1857. if (pin1 != -1) {
  1858. /*
  1859. * Ok, does IRQ0 through the IOAPIC work?
  1860. */
  1861. unmask_IO_APIC_irq(0);
  1862. if (timer_irq_works()) {
  1863. if (nmi_watchdog == NMI_IO_APIC) {
  1864. disable_8259A_irq(0);
  1865. setup_nmi();
  1866. enable_8259A_irq(0);
  1867. }
  1868. if (disable_timer_pin_1 > 0)
  1869. clear_IO_APIC_pin(0, pin1);
  1870. goto out;
  1871. }
  1872. clear_IO_APIC_pin(apic1, pin1);
  1873. printk(KERN_ERR "..MP-BIOS bug: 8254 timer not connected to "
  1874. "IO-APIC\n");
  1875. }
  1876. printk(KERN_INFO "...trying to set up timer (IRQ0) through the 8259A ... ");
  1877. if (pin2 != -1) {
  1878. printk("\n..... (found pin %d) ...", pin2);
  1879. /*
  1880. * legacy devices should be connected to IO APIC #0
  1881. */
  1882. setup_ExtINT_IRQ0_pin(apic2, pin2, vector);
  1883. if (timer_irq_works()) {
  1884. printk("works.\n");
  1885. if (pin1 != -1)
  1886. replace_pin_at_irq(0, apic1, pin1, apic2, pin2);
  1887. else
  1888. add_pin_to_irq(0, apic2, pin2);
  1889. if (nmi_watchdog == NMI_IO_APIC) {
  1890. setup_nmi();
  1891. }
  1892. goto out;
  1893. }
  1894. /*
  1895. * Cleanup, just in case ...
  1896. */
  1897. clear_IO_APIC_pin(apic2, pin2);
  1898. }
  1899. printk(" failed.\n");
  1900. if (nmi_watchdog == NMI_IO_APIC) {
  1901. printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
  1902. nmi_watchdog = 0;
  1903. }
  1904. printk(KERN_INFO "...trying to set up timer as Virtual Wire IRQ...");
  1905. disable_8259A_irq(0);
  1906. set_irq_chip_and_handler_name(0, &lapic_chip, handle_fasteoi_irq,
  1907. "fasteoi");
  1908. apic_write_around(APIC_LVT0, APIC_DM_FIXED | vector); /* Fixed mode */
  1909. enable_8259A_irq(0);
  1910. if (timer_irq_works()) {
  1911. printk(" works.\n");
  1912. goto out;
  1913. }
  1914. apic_write_around(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | vector);
  1915. printk(" failed.\n");
  1916. printk(KERN_INFO "...trying to set up timer as ExtINT IRQ...");
  1917. timer_ack = 0;
  1918. init_8259A(0);
  1919. make_8259A_irq(0);
  1920. apic_write_around(APIC_LVT0, APIC_DM_EXTINT);
  1921. unlock_ExtINT_logic();
  1922. if (timer_irq_works()) {
  1923. printk(" works.\n");
  1924. goto out;
  1925. }
  1926. printk(" failed :(.\n");
  1927. panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
  1928. "report. Then try booting with the 'noapic' option");
  1929. out:
  1930. local_irq_restore(flags);
  1931. }
  1932. /*
  1933. *
  1934. * IRQ's that are handled by the PIC in the MPS IOAPIC case.
  1935. * - IRQ2 is the cascade IRQ, and cannot be a io-apic IRQ.
  1936. * Linux doesn't really care, as it's not actually used
  1937. * for any interrupt handling anyway.
  1938. */
  1939. #define PIC_IRQS (1 << PIC_CASCADE_IR)
  1940. void __init setup_IO_APIC(void)
  1941. {
  1942. int i;
  1943. /* Reserve all the system vectors. */
  1944. for (i = FIRST_SYSTEM_VECTOR; i < NR_VECTORS; i++)
  1945. set_bit(i, used_vectors);
  1946. enable_IO_APIC();
  1947. if (acpi_ioapic)
  1948. io_apic_irqs = ~0; /* all IRQs go through IOAPIC */
  1949. else
  1950. io_apic_irqs = ~PIC_IRQS;
  1951. printk("ENABLING IO-APIC IRQs\n");
  1952. /*
  1953. * Set up IO-APIC IRQ routing.
  1954. */
  1955. if (!acpi_ioapic)
  1956. setup_ioapic_ids_from_mpc();
  1957. sync_Arb_IDs();
  1958. setup_IO_APIC_irqs();
  1959. init_IO_APIC_traps();
  1960. check_timer();
  1961. if (!acpi_ioapic)
  1962. print_IO_APIC();
  1963. }
  1964. static int __init setup_disable_8254_timer(char *s)
  1965. {
  1966. timer_over_8254 = -1;
  1967. return 1;
  1968. }
  1969. static int __init setup_enable_8254_timer(char *s)
  1970. {
  1971. timer_over_8254 = 2;
  1972. return 1;
  1973. }
  1974. __setup("disable_8254_timer", setup_disable_8254_timer);
  1975. __setup("enable_8254_timer", setup_enable_8254_timer);
  1976. /*
  1977. * Called after all the initialization is done. If we didnt find any
  1978. * APIC bugs then we can allow the modify fast path
  1979. */
  1980. static int __init io_apic_bug_finalize(void)
  1981. {
  1982. if(sis_apic_bug == -1)
  1983. sis_apic_bug = 0;
  1984. return 0;
  1985. }
  1986. late_initcall(io_apic_bug_finalize);
  1987. struct sysfs_ioapic_data {
  1988. struct sys_device dev;
  1989. struct IO_APIC_route_entry entry[0];
  1990. };
  1991. static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
  1992. static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
  1993. {
  1994. struct IO_APIC_route_entry *entry;
  1995. struct sysfs_ioapic_data *data;
  1996. int i;
  1997. data = container_of(dev, struct sysfs_ioapic_data, dev);
  1998. entry = data->entry;
  1999. for (i = 0; i < nr_ioapic_registers[dev->id]; i ++)
  2000. entry[i] = ioapic_read_entry(dev->id, i);
  2001. return 0;
  2002. }
  2003. static int ioapic_resume(struct sys_device *dev)
  2004. {
  2005. struct IO_APIC_route_entry *entry;
  2006. struct sysfs_ioapic_data *data;
  2007. unsigned long flags;
  2008. union IO_APIC_reg_00 reg_00;
  2009. int i;
  2010. data = container_of(dev, struct sysfs_ioapic_data, dev);
  2011. entry = data->entry;
  2012. spin_lock_irqsave(&ioapic_lock, flags);
  2013. reg_00.raw = io_apic_read(dev->id, 0);
  2014. if (reg_00.bits.ID != mp_ioapics[dev->id].mpc_apicid) {
  2015. reg_00.bits.ID = mp_ioapics[dev->id].mpc_apicid;
  2016. io_apic_write(dev->id, 0, reg_00.raw);
  2017. }
  2018. spin_unlock_irqrestore(&ioapic_lock, flags);
  2019. for (i = 0; i < nr_ioapic_registers[dev->id]; i ++)
  2020. ioapic_write_entry(dev->id, i, entry[i]);
  2021. return 0;
  2022. }
  2023. static struct sysdev_class ioapic_sysdev_class = {
  2024. .name = "ioapic",
  2025. .suspend = ioapic_suspend,
  2026. .resume = ioapic_resume,
  2027. };
  2028. static int __init ioapic_init_sysfs(void)
  2029. {
  2030. struct sys_device * dev;
  2031. int i, size, error = 0;
  2032. error = sysdev_class_register(&ioapic_sysdev_class);
  2033. if (error)
  2034. return error;
  2035. for (i = 0; i < nr_ioapics; i++ ) {
  2036. size = sizeof(struct sys_device) + nr_ioapic_registers[i]
  2037. * sizeof(struct IO_APIC_route_entry);
  2038. mp_ioapic_data[i] = kmalloc(size, GFP_KERNEL);
  2039. if (!mp_ioapic_data[i]) {
  2040. printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
  2041. continue;
  2042. }
  2043. memset(mp_ioapic_data[i], 0, size);
  2044. dev = &mp_ioapic_data[i]->dev;
  2045. dev->id = i;
  2046. dev->cls = &ioapic_sysdev_class;
  2047. error = sysdev_register(dev);
  2048. if (error) {
  2049. kfree(mp_ioapic_data[i]);
  2050. mp_ioapic_data[i] = NULL;
  2051. printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
  2052. continue;
  2053. }
  2054. }
  2055. return 0;
  2056. }
  2057. device_initcall(ioapic_init_sysfs);
  2058. /*
  2059. * Dynamic irq allocate and deallocation
  2060. */
  2061. int create_irq(void)
  2062. {
  2063. /* Allocate an unused irq */
  2064. int irq, new, vector = 0;
  2065. unsigned long flags;
  2066. irq = -ENOSPC;
  2067. spin_lock_irqsave(&vector_lock, flags);
  2068. for (new = (NR_IRQS - 1); new >= 0; new--) {
  2069. if (platform_legacy_irq(new))
  2070. continue;
  2071. if (irq_vector[new] != 0)
  2072. continue;
  2073. vector = __assign_irq_vector(new);
  2074. if (likely(vector > 0))
  2075. irq = new;
  2076. break;
  2077. }
  2078. spin_unlock_irqrestore(&vector_lock, flags);
  2079. if (irq >= 0) {
  2080. set_intr_gate(vector, interrupt[irq]);
  2081. dynamic_irq_init(irq);
  2082. }
  2083. return irq;
  2084. }
  2085. void destroy_irq(unsigned int irq)
  2086. {
  2087. unsigned long flags;
  2088. dynamic_irq_cleanup(irq);
  2089. spin_lock_irqsave(&vector_lock, flags);
  2090. clear_bit(irq_vector[irq], used_vectors);
  2091. irq_vector[irq] = 0;
  2092. spin_unlock_irqrestore(&vector_lock, flags);
  2093. }
  2094. /*
  2095. * MSI message composition
  2096. */
  2097. #ifdef CONFIG_PCI_MSI
  2098. static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq, struct msi_msg *msg)
  2099. {
  2100. int vector;
  2101. unsigned dest;
  2102. vector = assign_irq_vector(irq);
  2103. if (vector >= 0) {
  2104. dest = cpu_mask_to_apicid(TARGET_CPUS);
  2105. msg->address_hi = MSI_ADDR_BASE_HI;
  2106. msg->address_lo =
  2107. MSI_ADDR_BASE_LO |
  2108. ((INT_DEST_MODE == 0) ?
  2109. MSI_ADDR_DEST_MODE_PHYSICAL:
  2110. MSI_ADDR_DEST_MODE_LOGICAL) |
  2111. ((INT_DELIVERY_MODE != dest_LowestPrio) ?
  2112. MSI_ADDR_REDIRECTION_CPU:
  2113. MSI_ADDR_REDIRECTION_LOWPRI) |
  2114. MSI_ADDR_DEST_ID(dest);
  2115. msg->data =
  2116. MSI_DATA_TRIGGER_EDGE |
  2117. MSI_DATA_LEVEL_ASSERT |
  2118. ((INT_DELIVERY_MODE != dest_LowestPrio) ?
  2119. MSI_DATA_DELIVERY_FIXED:
  2120. MSI_DATA_DELIVERY_LOWPRI) |
  2121. MSI_DATA_VECTOR(vector);
  2122. }
  2123. return vector;
  2124. }
  2125. #ifdef CONFIG_SMP
  2126. static void set_msi_irq_affinity(unsigned int irq, cpumask_t mask)
  2127. {
  2128. struct msi_msg msg;
  2129. unsigned int dest;
  2130. cpumask_t tmp;
  2131. int vector;
  2132. cpus_and(tmp, mask, cpu_online_map);
  2133. if (cpus_empty(tmp))
  2134. tmp = TARGET_CPUS;
  2135. vector = assign_irq_vector(irq);
  2136. if (vector < 0)
  2137. return;
  2138. dest = cpu_mask_to_apicid(mask);
  2139. read_msi_msg(irq, &msg);
  2140. msg.data &= ~MSI_DATA_VECTOR_MASK;
  2141. msg.data |= MSI_DATA_VECTOR(vector);
  2142. msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
  2143. msg.address_lo |= MSI_ADDR_DEST_ID(dest);
  2144. write_msi_msg(irq, &msg);
  2145. irq_desc[irq].affinity = mask;
  2146. }
  2147. #endif /* CONFIG_SMP */
  2148. /*
  2149. * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
  2150. * which implement the MSI or MSI-X Capability Structure.
  2151. */
  2152. static struct irq_chip msi_chip = {
  2153. .name = "PCI-MSI",
  2154. .unmask = unmask_msi_irq,
  2155. .mask = mask_msi_irq,
  2156. .ack = ack_ioapic_irq,
  2157. #ifdef CONFIG_SMP
  2158. .set_affinity = set_msi_irq_affinity,
  2159. #endif
  2160. .retrigger = ioapic_retrigger_irq,
  2161. };
  2162. int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
  2163. {
  2164. struct msi_msg msg;
  2165. int irq, ret;
  2166. irq = create_irq();
  2167. if (irq < 0)
  2168. return irq;
  2169. ret = msi_compose_msg(dev, irq, &msg);
  2170. if (ret < 0) {
  2171. destroy_irq(irq);
  2172. return ret;
  2173. }
  2174. set_irq_msi(irq, desc);
  2175. write_msi_msg(irq, &msg);
  2176. set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq,
  2177. "edge");
  2178. return 0;
  2179. }
  2180. void arch_teardown_msi_irq(unsigned int irq)
  2181. {
  2182. destroy_irq(irq);
  2183. }
  2184. #endif /* CONFIG_PCI_MSI */
  2185. /*
  2186. * Hypertransport interrupt support
  2187. */
  2188. #ifdef CONFIG_HT_IRQ
  2189. #ifdef CONFIG_SMP
  2190. static void target_ht_irq(unsigned int irq, unsigned int dest)
  2191. {
  2192. struct ht_irq_msg msg;
  2193. fetch_ht_irq_msg(irq, &msg);
  2194. msg.address_lo &= ~(HT_IRQ_LOW_DEST_ID_MASK);
  2195. msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
  2196. msg.address_lo |= HT_IRQ_LOW_DEST_ID(dest);
  2197. msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
  2198. write_ht_irq_msg(irq, &msg);
  2199. }
  2200. static void set_ht_irq_affinity(unsigned int irq, cpumask_t mask)
  2201. {
  2202. unsigned int dest;
  2203. cpumask_t tmp;
  2204. cpus_and(tmp, mask, cpu_online_map);
  2205. if (cpus_empty(tmp))
  2206. tmp = TARGET_CPUS;
  2207. cpus_and(mask, tmp, CPU_MASK_ALL);
  2208. dest = cpu_mask_to_apicid(mask);
  2209. target_ht_irq(irq, dest);
  2210. irq_desc[irq].affinity = mask;
  2211. }
  2212. #endif
  2213. static struct irq_chip ht_irq_chip = {
  2214. .name = "PCI-HT",
  2215. .mask = mask_ht_irq,
  2216. .unmask = unmask_ht_irq,
  2217. .ack = ack_ioapic_irq,
  2218. #ifdef CONFIG_SMP
  2219. .set_affinity = set_ht_irq_affinity,
  2220. #endif
  2221. .retrigger = ioapic_retrigger_irq,
  2222. };
  2223. int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
  2224. {
  2225. int vector;
  2226. vector = assign_irq_vector(irq);
  2227. if (vector >= 0) {
  2228. struct ht_irq_msg msg;
  2229. unsigned dest;
  2230. cpumask_t tmp;
  2231. cpus_clear(tmp);
  2232. cpu_set(vector >> 8, tmp);
  2233. dest = cpu_mask_to_apicid(tmp);
  2234. msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
  2235. msg.address_lo =
  2236. HT_IRQ_LOW_BASE |
  2237. HT_IRQ_LOW_DEST_ID(dest) |
  2238. HT_IRQ_LOW_VECTOR(vector) |
  2239. ((INT_DEST_MODE == 0) ?
  2240. HT_IRQ_LOW_DM_PHYSICAL :
  2241. HT_IRQ_LOW_DM_LOGICAL) |
  2242. HT_IRQ_LOW_RQEOI_EDGE |
  2243. ((INT_DELIVERY_MODE != dest_LowestPrio) ?
  2244. HT_IRQ_LOW_MT_FIXED :
  2245. HT_IRQ_LOW_MT_ARBITRATED) |
  2246. HT_IRQ_LOW_IRQ_MASKED;
  2247. write_ht_irq_msg(irq, &msg);
  2248. set_irq_chip_and_handler_name(irq, &ht_irq_chip,
  2249. handle_edge_irq, "edge");
  2250. }
  2251. return vector;
  2252. }
  2253. #endif /* CONFIG_HT_IRQ */
  2254. /* --------------------------------------------------------------------------
  2255. ACPI-based IOAPIC Configuration
  2256. -------------------------------------------------------------------------- */
  2257. #ifdef CONFIG_ACPI
  2258. int __init io_apic_get_unique_id (int ioapic, int apic_id)
  2259. {
  2260. union IO_APIC_reg_00 reg_00;
  2261. static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
  2262. physid_mask_t tmp;
  2263. unsigned long flags;
  2264. int i = 0;
  2265. /*
  2266. * The P4 platform supports up to 256 APIC IDs on two separate APIC
  2267. * buses (one for LAPICs, one for IOAPICs), where predecessors only
  2268. * supports up to 16 on one shared APIC bus.
  2269. *
  2270. * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
  2271. * advantage of new APIC bus architecture.
  2272. */
  2273. if (physids_empty(apic_id_map))
  2274. apic_id_map = ioapic_phys_id_map(phys_cpu_present_map);
  2275. spin_lock_irqsave(&ioapic_lock, flags);
  2276. reg_00.raw = io_apic_read(ioapic, 0);
  2277. spin_unlock_irqrestore(&ioapic_lock, flags);
  2278. if (apic_id >= get_physical_broadcast()) {
  2279. printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
  2280. "%d\n", ioapic, apic_id, reg_00.bits.ID);
  2281. apic_id = reg_00.bits.ID;
  2282. }
  2283. /*
  2284. * Every APIC in a system must have a unique ID or we get lots of nice
  2285. * 'stuck on smp_invalidate_needed IPI wait' messages.
  2286. */
  2287. if (check_apicid_used(apic_id_map, apic_id)) {
  2288. for (i = 0; i < get_physical_broadcast(); i++) {
  2289. if (!check_apicid_used(apic_id_map, i))
  2290. break;
  2291. }
  2292. if (i == get_physical_broadcast())
  2293. panic("Max apic_id exceeded!\n");
  2294. printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
  2295. "trying %d\n", ioapic, apic_id, i);
  2296. apic_id = i;
  2297. }
  2298. tmp = apicid_to_cpu_present(apic_id);
  2299. physids_or(apic_id_map, apic_id_map, tmp);
  2300. if (reg_00.bits.ID != apic_id) {
  2301. reg_00.bits.ID = apic_id;
  2302. spin_lock_irqsave(&ioapic_lock, flags);
  2303. io_apic_write(ioapic, 0, reg_00.raw);
  2304. reg_00.raw = io_apic_read(ioapic, 0);
  2305. spin_unlock_irqrestore(&ioapic_lock, flags);
  2306. /* Sanity check */
  2307. if (reg_00.bits.ID != apic_id) {
  2308. printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
  2309. return -1;
  2310. }
  2311. }
  2312. apic_printk(APIC_VERBOSE, KERN_INFO
  2313. "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
  2314. return apic_id;
  2315. }
  2316. int __init io_apic_get_version (int ioapic)
  2317. {
  2318. union IO_APIC_reg_01 reg_01;
  2319. unsigned long flags;
  2320. spin_lock_irqsave(&ioapic_lock, flags);
  2321. reg_01.raw = io_apic_read(ioapic, 1);
  2322. spin_unlock_irqrestore(&ioapic_lock, flags);
  2323. return reg_01.bits.version;
  2324. }
  2325. int __init io_apic_get_redir_entries (int ioapic)
  2326. {
  2327. union IO_APIC_reg_01 reg_01;
  2328. unsigned long flags;
  2329. spin_lock_irqsave(&ioapic_lock, flags);
  2330. reg_01.raw = io_apic_read(ioapic, 1);
  2331. spin_unlock_irqrestore(&ioapic_lock, flags);
  2332. return reg_01.bits.entries;
  2333. }
  2334. int io_apic_set_pci_routing (int ioapic, int pin, int irq, int edge_level, int active_high_low)
  2335. {
  2336. struct IO_APIC_route_entry entry;
  2337. if (!IO_APIC_IRQ(irq)) {
  2338. printk(KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
  2339. ioapic);
  2340. return -EINVAL;
  2341. }
  2342. /*
  2343. * Generate a PCI IRQ routing entry and program the IOAPIC accordingly.
  2344. * Note that we mask (disable) IRQs now -- these get enabled when the
  2345. * corresponding device driver registers for this IRQ.
  2346. */
  2347. memset(&entry,0,sizeof(entry));
  2348. entry.delivery_mode = INT_DELIVERY_MODE;
  2349. entry.dest_mode = INT_DEST_MODE;
  2350. entry.dest.logical.logical_dest = cpu_mask_to_apicid(TARGET_CPUS);
  2351. entry.trigger = edge_level;
  2352. entry.polarity = active_high_low;
  2353. entry.mask = 1;
  2354. /*
  2355. * IRQs < 16 are already in the irq_2_pin[] map
  2356. */
  2357. if (irq >= 16)
  2358. add_pin_to_irq(irq, ioapic, pin);
  2359. entry.vector = assign_irq_vector(irq);
  2360. apic_printk(APIC_DEBUG, KERN_DEBUG "IOAPIC[%d]: Set PCI routing entry "
  2361. "(%d-%d -> 0x%x -> IRQ %d Mode:%i Active:%i)\n", ioapic,
  2362. mp_ioapics[ioapic].mpc_apicid, pin, entry.vector, irq,
  2363. edge_level, active_high_low);
  2364. ioapic_register_intr(irq, entry.vector, edge_level);
  2365. if (!ioapic && (irq < 16))
  2366. disable_8259A_irq(irq);
  2367. ioapic_write_entry(ioapic, pin, entry);
  2368. return 0;
  2369. }
  2370. int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
  2371. {
  2372. int i;
  2373. if (skip_ioapic_setup)
  2374. return -1;
  2375. for (i = 0; i < mp_irq_entries; i++)
  2376. if (mp_irqs[i].mpc_irqtype == mp_INT &&
  2377. mp_irqs[i].mpc_srcbusirq == bus_irq)
  2378. break;
  2379. if (i >= mp_irq_entries)
  2380. return -1;
  2381. *trigger = irq_trigger(i);
  2382. *polarity = irq_polarity(i);
  2383. return 0;
  2384. }
  2385. #endif /* CONFIG_ACPI */
  2386. static int __init parse_disable_timer_pin_1(char *arg)
  2387. {
  2388. disable_timer_pin_1 = 1;
  2389. return 0;
  2390. }
  2391. early_param("disable_timer_pin_1", parse_disable_timer_pin_1);
  2392. static int __init parse_enable_timer_pin_1(char *arg)
  2393. {
  2394. disable_timer_pin_1 = -1;
  2395. return 0;
  2396. }
  2397. early_param("enable_timer_pin_1", parse_enable_timer_pin_1);
  2398. static int __init parse_noapic(char *arg)
  2399. {
  2400. /* disable IO-APIC */
  2401. disable_ioapic_setup();
  2402. return 0;
  2403. }
  2404. early_param("noapic", parse_noapic);