io_apic.c 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263
  1. /*
  2. * Intel IO-APIC support for multi-Pentium hosts.
  3. *
  4. * Copyright (C) 1997, 1998, 1999, 2000, 2009 Ingo Molnar, Hajnalka Szabo
  5. *
  6. * Many thanks to Stig Venaas for trying out countless experimental
  7. * patches and reporting/debugging problems patiently!
  8. *
  9. * (c) 1999, Multiple IO-APIC support, developed by
  10. * Ken-ichi Yaku <yaku@css1.kbnes.nec.co.jp> and
  11. * Hidemi Kishimoto <kisimoto@css1.kbnes.nec.co.jp>,
  12. * further tested and cleaned up by Zach Brown <zab@redhat.com>
  13. * and Ingo Molnar <mingo@redhat.com>
  14. *
  15. * Fixes
  16. * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
  17. * thanks to Eric Gilmore
  18. * and Rolf G. Tews
  19. * for testing these extensively
  20. * Paul Diefenbaugh : Added full ACPI support
  21. */
  22. #include <linux/mm.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/init.h>
  25. #include <linux/delay.h>
  26. #include <linux/sched.h>
  27. #include <linux/pci.h>
  28. #include <linux/mc146818rtc.h>
  29. #include <linux/compiler.h>
  30. #include <linux/acpi.h>
  31. #include <linux/module.h>
  32. #include <linux/sysdev.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. #ifdef CONFIG_ACPI
  39. #include <acpi/acpi_bus.h>
  40. #endif
  41. #include <linux/bootmem.h>
  42. #include <linux/dmar.h>
  43. #include <linux/hpet.h>
  44. #include <asm/idle.h>
  45. #include <asm/io.h>
  46. #include <asm/smp.h>
  47. #include <asm/cpu.h>
  48. #include <asm/desc.h>
  49. #include <asm/proto.h>
  50. #include <asm/acpi.h>
  51. #include <asm/dma.h>
  52. #include <asm/timer.h>
  53. #include <asm/i8259.h>
  54. #include <asm/nmi.h>
  55. #include <asm/msidef.h>
  56. #include <asm/hypertransport.h>
  57. #include <asm/setup.h>
  58. #include <asm/irq_remapping.h>
  59. #include <asm/hpet.h>
  60. #include <asm/hw_irq.h>
  61. #include <asm/apic.h>
  62. #define __apicdebuginit(type) static type __init
  63. #define for_each_irq_pin(entry, head) \
  64. for (entry = head; entry; entry = entry->next)
  65. /*
  66. * Is the SiS APIC rmw bug present ?
  67. * -1 = don't know, 0 = no, 1 = yes
  68. */
  69. int sis_apic_bug = -1;
  70. static DEFINE_SPINLOCK(ioapic_lock);
  71. static DEFINE_SPINLOCK(vector_lock);
  72. /*
  73. * # of IRQ routing registers
  74. */
  75. int nr_ioapic_registers[MAX_IO_APICS];
  76. /* I/O APIC entries */
  77. struct mpc_ioapic mp_ioapics[MAX_IO_APICS];
  78. int nr_ioapics;
  79. /* IO APIC gsi routing info */
  80. struct mp_ioapic_gsi mp_gsi_routing[MAX_IO_APICS];
  81. /* MP IRQ source entries */
  82. struct mpc_intsrc mp_irqs[MAX_IRQ_SOURCES];
  83. /* # of MP IRQ source entries */
  84. int mp_irq_entries;
  85. /* Number of legacy interrupts */
  86. static int nr_legacy_irqs __read_mostly = NR_IRQS_LEGACY;
  87. /* GSI interrupts */
  88. static int nr_irqs_gsi = NR_IRQS_LEGACY;
  89. #if defined (CONFIG_MCA) || defined (CONFIG_EISA)
  90. int mp_bus_id_to_type[MAX_MP_BUSSES];
  91. #endif
  92. DECLARE_BITMAP(mp_bus_not_pci, MAX_MP_BUSSES);
  93. int skip_ioapic_setup;
  94. void arch_disable_smp_support(void)
  95. {
  96. #ifdef CONFIG_PCI
  97. noioapicquirk = 1;
  98. noioapicreroute = -1;
  99. #endif
  100. skip_ioapic_setup = 1;
  101. }
  102. static int __init parse_noapic(char *str)
  103. {
  104. /* disable IO-APIC */
  105. arch_disable_smp_support();
  106. return 0;
  107. }
  108. early_param("noapic", parse_noapic);
  109. struct irq_pin_list {
  110. int apic, pin;
  111. struct irq_pin_list *next;
  112. };
  113. static struct irq_pin_list *get_one_free_irq_2_pin(int node)
  114. {
  115. struct irq_pin_list *pin;
  116. pin = kzalloc_node(sizeof(*pin), GFP_ATOMIC, node);
  117. return pin;
  118. }
  119. /* irq_cfg is indexed by the sum of all RTEs in all I/O APICs. */
  120. #ifdef CONFIG_SPARSE_IRQ
  121. static struct irq_cfg irq_cfgx[] = {
  122. #else
  123. static struct irq_cfg irq_cfgx[NR_IRQS] = {
  124. #endif
  125. [0] = { .vector = IRQ0_VECTOR, },
  126. [1] = { .vector = IRQ1_VECTOR, },
  127. [2] = { .vector = IRQ2_VECTOR, },
  128. [3] = { .vector = IRQ3_VECTOR, },
  129. [4] = { .vector = IRQ4_VECTOR, },
  130. [5] = { .vector = IRQ5_VECTOR, },
  131. [6] = { .vector = IRQ6_VECTOR, },
  132. [7] = { .vector = IRQ7_VECTOR, },
  133. [8] = { .vector = IRQ8_VECTOR, },
  134. [9] = { .vector = IRQ9_VECTOR, },
  135. [10] = { .vector = IRQ10_VECTOR, },
  136. [11] = { .vector = IRQ11_VECTOR, },
  137. [12] = { .vector = IRQ12_VECTOR, },
  138. [13] = { .vector = IRQ13_VECTOR, },
  139. [14] = { .vector = IRQ14_VECTOR, },
  140. [15] = { .vector = IRQ15_VECTOR, },
  141. };
  142. void __init io_apic_disable_legacy(void)
  143. {
  144. nr_legacy_irqs = 0;
  145. nr_irqs_gsi = 0;
  146. }
  147. int __init arch_early_irq_init(void)
  148. {
  149. struct irq_cfg *cfg;
  150. struct irq_desc *desc;
  151. int count;
  152. int node;
  153. int i;
  154. cfg = irq_cfgx;
  155. count = ARRAY_SIZE(irq_cfgx);
  156. node= cpu_to_node(boot_cpu_id);
  157. for (i = 0; i < count; i++) {
  158. desc = irq_to_desc(i);
  159. desc->chip_data = &cfg[i];
  160. zalloc_cpumask_var_node(&cfg[i].domain, GFP_NOWAIT, node);
  161. zalloc_cpumask_var_node(&cfg[i].old_domain, GFP_NOWAIT, node);
  162. if (i < nr_legacy_irqs)
  163. cpumask_setall(cfg[i].domain);
  164. }
  165. return 0;
  166. }
  167. #ifdef CONFIG_SPARSE_IRQ
  168. struct irq_cfg *irq_cfg(unsigned int irq)
  169. {
  170. struct irq_cfg *cfg = NULL;
  171. struct irq_desc *desc;
  172. desc = irq_to_desc(irq);
  173. if (desc)
  174. cfg = desc->chip_data;
  175. return cfg;
  176. }
  177. static struct irq_cfg *get_one_free_irq_cfg(int node)
  178. {
  179. struct irq_cfg *cfg;
  180. cfg = kzalloc_node(sizeof(*cfg), GFP_ATOMIC, node);
  181. if (cfg) {
  182. if (!zalloc_cpumask_var_node(&cfg->domain, GFP_ATOMIC, node)) {
  183. kfree(cfg);
  184. cfg = NULL;
  185. } else if (!zalloc_cpumask_var_node(&cfg->old_domain,
  186. GFP_ATOMIC, node)) {
  187. free_cpumask_var(cfg->domain);
  188. kfree(cfg);
  189. cfg = NULL;
  190. }
  191. }
  192. return cfg;
  193. }
  194. int arch_init_chip_data(struct irq_desc *desc, int node)
  195. {
  196. struct irq_cfg *cfg;
  197. cfg = desc->chip_data;
  198. if (!cfg) {
  199. desc->chip_data = get_one_free_irq_cfg(node);
  200. if (!desc->chip_data) {
  201. printk(KERN_ERR "can not alloc irq_cfg\n");
  202. BUG_ON(1);
  203. }
  204. }
  205. return 0;
  206. }
  207. /* for move_irq_desc */
  208. static void
  209. init_copy_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg, int node)
  210. {
  211. struct irq_pin_list *old_entry, *head, *tail, *entry;
  212. cfg->irq_2_pin = NULL;
  213. old_entry = old_cfg->irq_2_pin;
  214. if (!old_entry)
  215. return;
  216. entry = get_one_free_irq_2_pin(node);
  217. if (!entry)
  218. return;
  219. entry->apic = old_entry->apic;
  220. entry->pin = old_entry->pin;
  221. head = entry;
  222. tail = entry;
  223. old_entry = old_entry->next;
  224. while (old_entry) {
  225. entry = get_one_free_irq_2_pin(node);
  226. if (!entry) {
  227. entry = head;
  228. while (entry) {
  229. head = entry->next;
  230. kfree(entry);
  231. entry = head;
  232. }
  233. /* still use the old one */
  234. return;
  235. }
  236. entry->apic = old_entry->apic;
  237. entry->pin = old_entry->pin;
  238. tail->next = entry;
  239. tail = entry;
  240. old_entry = old_entry->next;
  241. }
  242. tail->next = NULL;
  243. cfg->irq_2_pin = head;
  244. }
  245. static void free_irq_2_pin(struct irq_cfg *old_cfg, struct irq_cfg *cfg)
  246. {
  247. struct irq_pin_list *entry, *next;
  248. if (old_cfg->irq_2_pin == cfg->irq_2_pin)
  249. return;
  250. entry = old_cfg->irq_2_pin;
  251. while (entry) {
  252. next = entry->next;
  253. kfree(entry);
  254. entry = next;
  255. }
  256. old_cfg->irq_2_pin = NULL;
  257. }
  258. void arch_init_copy_chip_data(struct irq_desc *old_desc,
  259. struct irq_desc *desc, int node)
  260. {
  261. struct irq_cfg *cfg;
  262. struct irq_cfg *old_cfg;
  263. cfg = get_one_free_irq_cfg(node);
  264. if (!cfg)
  265. return;
  266. desc->chip_data = cfg;
  267. old_cfg = old_desc->chip_data;
  268. memcpy(cfg, old_cfg, sizeof(struct irq_cfg));
  269. init_copy_irq_2_pin(old_cfg, cfg, node);
  270. }
  271. static void free_irq_cfg(struct irq_cfg *old_cfg)
  272. {
  273. kfree(old_cfg);
  274. }
  275. void arch_free_chip_data(struct irq_desc *old_desc, struct irq_desc *desc)
  276. {
  277. struct irq_cfg *old_cfg, *cfg;
  278. old_cfg = old_desc->chip_data;
  279. cfg = desc->chip_data;
  280. if (old_cfg == cfg)
  281. return;
  282. if (old_cfg) {
  283. free_irq_2_pin(old_cfg, cfg);
  284. free_irq_cfg(old_cfg);
  285. old_desc->chip_data = NULL;
  286. }
  287. }
  288. /* end for move_irq_desc */
  289. #else
  290. struct irq_cfg *irq_cfg(unsigned int irq)
  291. {
  292. return irq < nr_irqs ? irq_cfgx + irq : NULL;
  293. }
  294. #endif
  295. struct io_apic {
  296. unsigned int index;
  297. unsigned int unused[3];
  298. unsigned int data;
  299. unsigned int unused2[11];
  300. unsigned int eoi;
  301. };
  302. static __attribute_const__ struct io_apic __iomem *io_apic_base(int idx)
  303. {
  304. return (void __iomem *) __fix_to_virt(FIX_IO_APIC_BASE_0 + idx)
  305. + (mp_ioapics[idx].apicaddr & ~PAGE_MASK);
  306. }
  307. static inline void io_apic_eoi(unsigned int apic, unsigned int vector)
  308. {
  309. struct io_apic __iomem *io_apic = io_apic_base(apic);
  310. writel(vector, &io_apic->eoi);
  311. }
  312. static inline unsigned int io_apic_read(unsigned int apic, unsigned int reg)
  313. {
  314. struct io_apic __iomem *io_apic = io_apic_base(apic);
  315. writel(reg, &io_apic->index);
  316. return readl(&io_apic->data);
  317. }
  318. static inline void io_apic_write(unsigned int apic, unsigned int reg, unsigned int value)
  319. {
  320. struct io_apic __iomem *io_apic = io_apic_base(apic);
  321. writel(reg, &io_apic->index);
  322. writel(value, &io_apic->data);
  323. }
  324. /*
  325. * Re-write a value: to be used for read-modify-write
  326. * cycles where the read already set up the index register.
  327. *
  328. * Older SiS APIC requires we rewrite the index register
  329. */
  330. static inline void io_apic_modify(unsigned int apic, unsigned int reg, unsigned int value)
  331. {
  332. struct io_apic __iomem *io_apic = io_apic_base(apic);
  333. if (sis_apic_bug)
  334. writel(reg, &io_apic->index);
  335. writel(value, &io_apic->data);
  336. }
  337. static bool io_apic_level_ack_pending(struct irq_cfg *cfg)
  338. {
  339. struct irq_pin_list *entry;
  340. unsigned long flags;
  341. spin_lock_irqsave(&ioapic_lock, flags);
  342. for_each_irq_pin(entry, cfg->irq_2_pin) {
  343. unsigned int reg;
  344. int pin;
  345. pin = entry->pin;
  346. reg = io_apic_read(entry->apic, 0x10 + pin*2);
  347. /* Is the remote IRR bit set? */
  348. if (reg & IO_APIC_REDIR_REMOTE_IRR) {
  349. spin_unlock_irqrestore(&ioapic_lock, flags);
  350. return true;
  351. }
  352. }
  353. spin_unlock_irqrestore(&ioapic_lock, flags);
  354. return false;
  355. }
  356. union entry_union {
  357. struct { u32 w1, w2; };
  358. struct IO_APIC_route_entry entry;
  359. };
  360. static struct IO_APIC_route_entry ioapic_read_entry(int apic, int pin)
  361. {
  362. union entry_union eu;
  363. unsigned long flags;
  364. spin_lock_irqsave(&ioapic_lock, flags);
  365. eu.w1 = io_apic_read(apic, 0x10 + 2 * pin);
  366. eu.w2 = io_apic_read(apic, 0x11 + 2 * pin);
  367. spin_unlock_irqrestore(&ioapic_lock, flags);
  368. return eu.entry;
  369. }
  370. /*
  371. * When we write a new IO APIC routing entry, we need to write the high
  372. * word first! If the mask bit in the low word is clear, we will enable
  373. * the interrupt, and we need to make sure the entry is fully populated
  374. * before that happens.
  375. */
  376. static void
  377. __ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
  378. {
  379. union entry_union eu = {{0, 0}};
  380. eu.entry = e;
  381. io_apic_write(apic, 0x11 + 2*pin, eu.w2);
  382. io_apic_write(apic, 0x10 + 2*pin, eu.w1);
  383. }
  384. void ioapic_write_entry(int apic, int pin, struct IO_APIC_route_entry e)
  385. {
  386. unsigned long flags;
  387. spin_lock_irqsave(&ioapic_lock, flags);
  388. __ioapic_write_entry(apic, pin, e);
  389. spin_unlock_irqrestore(&ioapic_lock, flags);
  390. }
  391. /*
  392. * When we mask an IO APIC routing entry, we need to write the low
  393. * word first, in order to set the mask bit before we change the
  394. * high bits!
  395. */
  396. static void ioapic_mask_entry(int apic, int pin)
  397. {
  398. unsigned long flags;
  399. union entry_union eu = { .entry.mask = 1 };
  400. spin_lock_irqsave(&ioapic_lock, flags);
  401. io_apic_write(apic, 0x10 + 2*pin, eu.w1);
  402. io_apic_write(apic, 0x11 + 2*pin, eu.w2);
  403. spin_unlock_irqrestore(&ioapic_lock, flags);
  404. }
  405. /*
  406. * The common case is 1:1 IRQ<->pin mappings. Sometimes there are
  407. * shared ISA-space IRQs, so we have to support them. We are super
  408. * fast in the common case, and fast for shared ISA-space IRQs.
  409. */
  410. static int
  411. add_pin_to_irq_node_nopanic(struct irq_cfg *cfg, int node, int apic, int pin)
  412. {
  413. struct irq_pin_list **last, *entry;
  414. /* don't allow duplicates */
  415. last = &cfg->irq_2_pin;
  416. for_each_irq_pin(entry, cfg->irq_2_pin) {
  417. if (entry->apic == apic && entry->pin == pin)
  418. return 0;
  419. last = &entry->next;
  420. }
  421. entry = get_one_free_irq_2_pin(node);
  422. if (!entry) {
  423. printk(KERN_ERR "can not alloc irq_pin_list (%d,%d,%d)\n",
  424. node, apic, pin);
  425. return -ENOMEM;
  426. }
  427. entry->apic = apic;
  428. entry->pin = pin;
  429. *last = entry;
  430. return 0;
  431. }
  432. static void add_pin_to_irq_node(struct irq_cfg *cfg, int node, int apic, int pin)
  433. {
  434. if (add_pin_to_irq_node_nopanic(cfg, node, apic, pin))
  435. panic("IO-APIC: failed to add irq-pin. Can not proceed\n");
  436. }
  437. /*
  438. * Reroute an IRQ to a different pin.
  439. */
  440. static void __init replace_pin_at_irq_node(struct irq_cfg *cfg, int node,
  441. int oldapic, int oldpin,
  442. int newapic, int newpin)
  443. {
  444. struct irq_pin_list *entry;
  445. for_each_irq_pin(entry, cfg->irq_2_pin) {
  446. if (entry->apic == oldapic && entry->pin == oldpin) {
  447. entry->apic = newapic;
  448. entry->pin = newpin;
  449. /* every one is different, right? */
  450. return;
  451. }
  452. }
  453. /* old apic/pin didn't exist, so just add new ones */
  454. add_pin_to_irq_node(cfg, node, newapic, newpin);
  455. }
  456. static void __io_apic_modify_irq(struct irq_pin_list *entry,
  457. int mask_and, int mask_or,
  458. void (*final)(struct irq_pin_list *entry))
  459. {
  460. unsigned int reg, pin;
  461. pin = entry->pin;
  462. reg = io_apic_read(entry->apic, 0x10 + pin * 2);
  463. reg &= mask_and;
  464. reg |= mask_or;
  465. io_apic_modify(entry->apic, 0x10 + pin * 2, reg);
  466. if (final)
  467. final(entry);
  468. }
  469. static void io_apic_modify_irq(struct irq_cfg *cfg,
  470. int mask_and, int mask_or,
  471. void (*final)(struct irq_pin_list *entry))
  472. {
  473. struct irq_pin_list *entry;
  474. for_each_irq_pin(entry, cfg->irq_2_pin)
  475. __io_apic_modify_irq(entry, mask_and, mask_or, final);
  476. }
  477. static void __mask_and_edge_IO_APIC_irq(struct irq_pin_list *entry)
  478. {
  479. __io_apic_modify_irq(entry, ~IO_APIC_REDIR_LEVEL_TRIGGER,
  480. IO_APIC_REDIR_MASKED, NULL);
  481. }
  482. static void __unmask_and_level_IO_APIC_irq(struct irq_pin_list *entry)
  483. {
  484. __io_apic_modify_irq(entry, ~IO_APIC_REDIR_MASKED,
  485. IO_APIC_REDIR_LEVEL_TRIGGER, NULL);
  486. }
  487. static void __unmask_IO_APIC_irq(struct irq_cfg *cfg)
  488. {
  489. io_apic_modify_irq(cfg, ~IO_APIC_REDIR_MASKED, 0, NULL);
  490. }
  491. static void io_apic_sync(struct irq_pin_list *entry)
  492. {
  493. /*
  494. * Synchronize the IO-APIC and the CPU by doing
  495. * a dummy read from the IO-APIC
  496. */
  497. struct io_apic __iomem *io_apic;
  498. io_apic = io_apic_base(entry->apic);
  499. readl(&io_apic->data);
  500. }
  501. static void __mask_IO_APIC_irq(struct irq_cfg *cfg)
  502. {
  503. io_apic_modify_irq(cfg, ~0, IO_APIC_REDIR_MASKED, &io_apic_sync);
  504. }
  505. static void mask_IO_APIC_irq_desc(struct irq_desc *desc)
  506. {
  507. struct irq_cfg *cfg = desc->chip_data;
  508. unsigned long flags;
  509. BUG_ON(!cfg);
  510. spin_lock_irqsave(&ioapic_lock, flags);
  511. __mask_IO_APIC_irq(cfg);
  512. spin_unlock_irqrestore(&ioapic_lock, flags);
  513. }
  514. static void unmask_IO_APIC_irq_desc(struct irq_desc *desc)
  515. {
  516. struct irq_cfg *cfg = desc->chip_data;
  517. unsigned long flags;
  518. spin_lock_irqsave(&ioapic_lock, flags);
  519. __unmask_IO_APIC_irq(cfg);
  520. spin_unlock_irqrestore(&ioapic_lock, flags);
  521. }
  522. static void mask_IO_APIC_irq(unsigned int irq)
  523. {
  524. struct irq_desc *desc = irq_to_desc(irq);
  525. mask_IO_APIC_irq_desc(desc);
  526. }
  527. static void unmask_IO_APIC_irq(unsigned int irq)
  528. {
  529. struct irq_desc *desc = irq_to_desc(irq);
  530. unmask_IO_APIC_irq_desc(desc);
  531. }
  532. static void clear_IO_APIC_pin(unsigned int apic, unsigned int pin)
  533. {
  534. struct IO_APIC_route_entry entry;
  535. /* Check delivery_mode to be sure we're not clearing an SMI pin */
  536. entry = ioapic_read_entry(apic, pin);
  537. if (entry.delivery_mode == dest_SMI)
  538. return;
  539. /*
  540. * Disable it in the IO-APIC irq-routing table:
  541. */
  542. ioapic_mask_entry(apic, pin);
  543. }
  544. static void clear_IO_APIC (void)
  545. {
  546. int apic, pin;
  547. for (apic = 0; apic < nr_ioapics; apic++)
  548. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
  549. clear_IO_APIC_pin(apic, pin);
  550. }
  551. #ifdef CONFIG_X86_32
  552. /*
  553. * support for broken MP BIOSs, enables hand-redirection of PIRQ0-7 to
  554. * specific CPU-side IRQs.
  555. */
  556. #define MAX_PIRQS 8
  557. static int pirq_entries[MAX_PIRQS] = {
  558. [0 ... MAX_PIRQS - 1] = -1
  559. };
  560. static int __init ioapic_pirq_setup(char *str)
  561. {
  562. int i, max;
  563. int ints[MAX_PIRQS+1];
  564. get_options(str, ARRAY_SIZE(ints), ints);
  565. apic_printk(APIC_VERBOSE, KERN_INFO
  566. "PIRQ redirection, working around broken MP-BIOS.\n");
  567. max = MAX_PIRQS;
  568. if (ints[0] < MAX_PIRQS)
  569. max = ints[0];
  570. for (i = 0; i < max; i++) {
  571. apic_printk(APIC_VERBOSE, KERN_DEBUG
  572. "... PIRQ%d -> IRQ %d\n", i, ints[i+1]);
  573. /*
  574. * PIRQs are mapped upside down, usually.
  575. */
  576. pirq_entries[MAX_PIRQS-i-1] = ints[i+1];
  577. }
  578. return 1;
  579. }
  580. __setup("pirq=", ioapic_pirq_setup);
  581. #endif /* CONFIG_X86_32 */
  582. struct IO_APIC_route_entry **alloc_ioapic_entries(void)
  583. {
  584. int apic;
  585. struct IO_APIC_route_entry **ioapic_entries;
  586. ioapic_entries = kzalloc(sizeof(*ioapic_entries) * nr_ioapics,
  587. GFP_ATOMIC);
  588. if (!ioapic_entries)
  589. return 0;
  590. for (apic = 0; apic < nr_ioapics; apic++) {
  591. ioapic_entries[apic] =
  592. kzalloc(sizeof(struct IO_APIC_route_entry) *
  593. nr_ioapic_registers[apic], GFP_ATOMIC);
  594. if (!ioapic_entries[apic])
  595. goto nomem;
  596. }
  597. return ioapic_entries;
  598. nomem:
  599. while (--apic >= 0)
  600. kfree(ioapic_entries[apic]);
  601. kfree(ioapic_entries);
  602. return 0;
  603. }
  604. /*
  605. * Saves all the IO-APIC RTE's
  606. */
  607. int save_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
  608. {
  609. int apic, pin;
  610. if (!ioapic_entries)
  611. return -ENOMEM;
  612. for (apic = 0; apic < nr_ioapics; apic++) {
  613. if (!ioapic_entries[apic])
  614. return -ENOMEM;
  615. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
  616. ioapic_entries[apic][pin] =
  617. ioapic_read_entry(apic, pin);
  618. }
  619. return 0;
  620. }
  621. /*
  622. * Mask all IO APIC entries.
  623. */
  624. void mask_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
  625. {
  626. int apic, pin;
  627. if (!ioapic_entries)
  628. return;
  629. for (apic = 0; apic < nr_ioapics; apic++) {
  630. if (!ioapic_entries[apic])
  631. break;
  632. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
  633. struct IO_APIC_route_entry entry;
  634. entry = ioapic_entries[apic][pin];
  635. if (!entry.mask) {
  636. entry.mask = 1;
  637. ioapic_write_entry(apic, pin, entry);
  638. }
  639. }
  640. }
  641. }
  642. /*
  643. * Restore IO APIC entries which was saved in ioapic_entries.
  644. */
  645. int restore_IO_APIC_setup(struct IO_APIC_route_entry **ioapic_entries)
  646. {
  647. int apic, pin;
  648. if (!ioapic_entries)
  649. return -ENOMEM;
  650. for (apic = 0; apic < nr_ioapics; apic++) {
  651. if (!ioapic_entries[apic])
  652. return -ENOMEM;
  653. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++)
  654. ioapic_write_entry(apic, pin,
  655. ioapic_entries[apic][pin]);
  656. }
  657. return 0;
  658. }
  659. void free_ioapic_entries(struct IO_APIC_route_entry **ioapic_entries)
  660. {
  661. int apic;
  662. for (apic = 0; apic < nr_ioapics; apic++)
  663. kfree(ioapic_entries[apic]);
  664. kfree(ioapic_entries);
  665. }
  666. /*
  667. * Find the IRQ entry number of a certain pin.
  668. */
  669. static int find_irq_entry(int apic, int pin, int type)
  670. {
  671. int i;
  672. for (i = 0; i < mp_irq_entries; i++)
  673. if (mp_irqs[i].irqtype == type &&
  674. (mp_irqs[i].dstapic == mp_ioapics[apic].apicid ||
  675. mp_irqs[i].dstapic == MP_APIC_ALL) &&
  676. mp_irqs[i].dstirq == pin)
  677. return i;
  678. return -1;
  679. }
  680. /*
  681. * Find the pin to which IRQ[irq] (ISA) is connected
  682. */
  683. static int __init find_isa_irq_pin(int irq, int type)
  684. {
  685. int i;
  686. for (i = 0; i < mp_irq_entries; i++) {
  687. int lbus = mp_irqs[i].srcbus;
  688. if (test_bit(lbus, mp_bus_not_pci) &&
  689. (mp_irqs[i].irqtype == type) &&
  690. (mp_irqs[i].srcbusirq == irq))
  691. return mp_irqs[i].dstirq;
  692. }
  693. return -1;
  694. }
  695. static int __init find_isa_irq_apic(int irq, int type)
  696. {
  697. int i;
  698. for (i = 0; i < mp_irq_entries; i++) {
  699. int lbus = mp_irqs[i].srcbus;
  700. if (test_bit(lbus, mp_bus_not_pci) &&
  701. (mp_irqs[i].irqtype == type) &&
  702. (mp_irqs[i].srcbusirq == irq))
  703. break;
  704. }
  705. if (i < mp_irq_entries) {
  706. int apic;
  707. for(apic = 0; apic < nr_ioapics; apic++) {
  708. if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic)
  709. return apic;
  710. }
  711. }
  712. return -1;
  713. }
  714. #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
  715. /*
  716. * EISA Edge/Level control register, ELCR
  717. */
  718. static int EISA_ELCR(unsigned int irq)
  719. {
  720. if (irq < nr_legacy_irqs) {
  721. unsigned int port = 0x4d0 + (irq >> 3);
  722. return (inb(port) >> (irq & 7)) & 1;
  723. }
  724. apic_printk(APIC_VERBOSE, KERN_INFO
  725. "Broken MPtable reports ISA irq %d\n", irq);
  726. return 0;
  727. }
  728. #endif
  729. /* ISA interrupts are always polarity zero edge triggered,
  730. * when listed as conforming in the MP table. */
  731. #define default_ISA_trigger(idx) (0)
  732. #define default_ISA_polarity(idx) (0)
  733. /* EISA interrupts are always polarity zero and can be edge or level
  734. * trigger depending on the ELCR value. If an interrupt is listed as
  735. * EISA conforming in the MP table, that means its trigger type must
  736. * be read in from the ELCR */
  737. #define default_EISA_trigger(idx) (EISA_ELCR(mp_irqs[idx].srcbusirq))
  738. #define default_EISA_polarity(idx) default_ISA_polarity(idx)
  739. /* PCI interrupts are always polarity one level triggered,
  740. * when listed as conforming in the MP table. */
  741. #define default_PCI_trigger(idx) (1)
  742. #define default_PCI_polarity(idx) (1)
  743. /* MCA interrupts are always polarity zero level triggered,
  744. * when listed as conforming in the MP table. */
  745. #define default_MCA_trigger(idx) (1)
  746. #define default_MCA_polarity(idx) default_ISA_polarity(idx)
  747. static int MPBIOS_polarity(int idx)
  748. {
  749. int bus = mp_irqs[idx].srcbus;
  750. int polarity;
  751. /*
  752. * Determine IRQ line polarity (high active or low active):
  753. */
  754. switch (mp_irqs[idx].irqflag & 3)
  755. {
  756. case 0: /* conforms, ie. bus-type dependent polarity */
  757. if (test_bit(bus, mp_bus_not_pci))
  758. polarity = default_ISA_polarity(idx);
  759. else
  760. polarity = default_PCI_polarity(idx);
  761. break;
  762. case 1: /* high active */
  763. {
  764. polarity = 0;
  765. break;
  766. }
  767. case 2: /* reserved */
  768. {
  769. printk(KERN_WARNING "broken BIOS!!\n");
  770. polarity = 1;
  771. break;
  772. }
  773. case 3: /* low active */
  774. {
  775. polarity = 1;
  776. break;
  777. }
  778. default: /* invalid */
  779. {
  780. printk(KERN_WARNING "broken BIOS!!\n");
  781. polarity = 1;
  782. break;
  783. }
  784. }
  785. return polarity;
  786. }
  787. static int MPBIOS_trigger(int idx)
  788. {
  789. int bus = mp_irqs[idx].srcbus;
  790. int trigger;
  791. /*
  792. * Determine IRQ trigger mode (edge or level sensitive):
  793. */
  794. switch ((mp_irqs[idx].irqflag>>2) & 3)
  795. {
  796. case 0: /* conforms, ie. bus-type dependent */
  797. if (test_bit(bus, mp_bus_not_pci))
  798. trigger = default_ISA_trigger(idx);
  799. else
  800. trigger = default_PCI_trigger(idx);
  801. #if defined(CONFIG_EISA) || defined(CONFIG_MCA)
  802. switch (mp_bus_id_to_type[bus]) {
  803. case MP_BUS_ISA: /* ISA pin */
  804. {
  805. /* set before the switch */
  806. break;
  807. }
  808. case MP_BUS_EISA: /* EISA pin */
  809. {
  810. trigger = default_EISA_trigger(idx);
  811. break;
  812. }
  813. case MP_BUS_PCI: /* PCI pin */
  814. {
  815. /* set before the switch */
  816. break;
  817. }
  818. case MP_BUS_MCA: /* MCA pin */
  819. {
  820. trigger = default_MCA_trigger(idx);
  821. break;
  822. }
  823. default:
  824. {
  825. printk(KERN_WARNING "broken BIOS!!\n");
  826. trigger = 1;
  827. break;
  828. }
  829. }
  830. #endif
  831. break;
  832. case 1: /* edge */
  833. {
  834. trigger = 0;
  835. break;
  836. }
  837. case 2: /* reserved */
  838. {
  839. printk(KERN_WARNING "broken BIOS!!\n");
  840. trigger = 1;
  841. break;
  842. }
  843. case 3: /* level */
  844. {
  845. trigger = 1;
  846. break;
  847. }
  848. default: /* invalid */
  849. {
  850. printk(KERN_WARNING "broken BIOS!!\n");
  851. trigger = 0;
  852. break;
  853. }
  854. }
  855. return trigger;
  856. }
  857. static inline int irq_polarity(int idx)
  858. {
  859. return MPBIOS_polarity(idx);
  860. }
  861. static inline int irq_trigger(int idx)
  862. {
  863. return MPBIOS_trigger(idx);
  864. }
  865. int (*ioapic_renumber_irq)(int ioapic, int irq);
  866. static int pin_2_irq(int idx, int apic, int pin)
  867. {
  868. int irq, i;
  869. int bus = mp_irqs[idx].srcbus;
  870. /*
  871. * Debugging check, we are in big trouble if this message pops up!
  872. */
  873. if (mp_irqs[idx].dstirq != pin)
  874. printk(KERN_ERR "broken BIOS or MPTABLE parser, ayiee!!\n");
  875. if (test_bit(bus, mp_bus_not_pci)) {
  876. irq = mp_irqs[idx].srcbusirq;
  877. } else {
  878. /*
  879. * PCI IRQs are mapped in order
  880. */
  881. i = irq = 0;
  882. while (i < apic)
  883. irq += nr_ioapic_registers[i++];
  884. irq += pin;
  885. /*
  886. * For MPS mode, so far only needed by ES7000 platform
  887. */
  888. if (ioapic_renumber_irq)
  889. irq = ioapic_renumber_irq(apic, irq);
  890. }
  891. #ifdef CONFIG_X86_32
  892. /*
  893. * PCI IRQ command line redirection. Yes, limits are hardcoded.
  894. */
  895. if ((pin >= 16) && (pin <= 23)) {
  896. if (pirq_entries[pin-16] != -1) {
  897. if (!pirq_entries[pin-16]) {
  898. apic_printk(APIC_VERBOSE, KERN_DEBUG
  899. "disabling PIRQ%d\n", pin-16);
  900. } else {
  901. irq = pirq_entries[pin-16];
  902. apic_printk(APIC_VERBOSE, KERN_DEBUG
  903. "using PIRQ%d -> IRQ %d\n",
  904. pin-16, irq);
  905. }
  906. }
  907. }
  908. #endif
  909. return irq;
  910. }
  911. /*
  912. * Find a specific PCI IRQ entry.
  913. * Not an __init, possibly needed by modules
  914. */
  915. int IO_APIC_get_PCI_irq_vector(int bus, int slot, int pin,
  916. struct io_apic_irq_attr *irq_attr)
  917. {
  918. int apic, i, best_guess = -1;
  919. apic_printk(APIC_DEBUG,
  920. "querying PCI -> IRQ mapping bus:%d, slot:%d, pin:%d.\n",
  921. bus, slot, pin);
  922. if (test_bit(bus, mp_bus_not_pci)) {
  923. apic_printk(APIC_VERBOSE,
  924. "PCI BIOS passed nonexistent PCI bus %d!\n", bus);
  925. return -1;
  926. }
  927. for (i = 0; i < mp_irq_entries; i++) {
  928. int lbus = mp_irqs[i].srcbus;
  929. for (apic = 0; apic < nr_ioapics; apic++)
  930. if (mp_ioapics[apic].apicid == mp_irqs[i].dstapic ||
  931. mp_irqs[i].dstapic == MP_APIC_ALL)
  932. break;
  933. if (!test_bit(lbus, mp_bus_not_pci) &&
  934. !mp_irqs[i].irqtype &&
  935. (bus == lbus) &&
  936. (slot == ((mp_irqs[i].srcbusirq >> 2) & 0x1f))) {
  937. int irq = pin_2_irq(i, apic, mp_irqs[i].dstirq);
  938. if (!(apic || IO_APIC_IRQ(irq)))
  939. continue;
  940. if (pin == (mp_irqs[i].srcbusirq & 3)) {
  941. set_io_apic_irq_attr(irq_attr, apic,
  942. mp_irqs[i].dstirq,
  943. irq_trigger(i),
  944. irq_polarity(i));
  945. return irq;
  946. }
  947. /*
  948. * Use the first all-but-pin matching entry as a
  949. * best-guess fuzzy result for broken mptables.
  950. */
  951. if (best_guess < 0) {
  952. set_io_apic_irq_attr(irq_attr, apic,
  953. mp_irqs[i].dstirq,
  954. irq_trigger(i),
  955. irq_polarity(i));
  956. best_guess = irq;
  957. }
  958. }
  959. }
  960. return best_guess;
  961. }
  962. EXPORT_SYMBOL(IO_APIC_get_PCI_irq_vector);
  963. void lock_vector_lock(void)
  964. {
  965. /* Used to the online set of cpus does not change
  966. * during assign_irq_vector.
  967. */
  968. spin_lock(&vector_lock);
  969. }
  970. void unlock_vector_lock(void)
  971. {
  972. spin_unlock(&vector_lock);
  973. }
  974. static int
  975. __assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
  976. {
  977. /*
  978. * NOTE! The local APIC isn't very good at handling
  979. * multiple interrupts at the same interrupt level.
  980. * As the interrupt level is determined by taking the
  981. * vector number and shifting that right by 4, we
  982. * want to spread these out a bit so that they don't
  983. * all fall in the same interrupt level.
  984. *
  985. * Also, we've got to be careful not to trash gate
  986. * 0x80, because int 0x80 is hm, kind of importantish. ;)
  987. */
  988. static int current_vector = FIRST_DEVICE_VECTOR, current_offset = 0;
  989. unsigned int old_vector;
  990. int cpu, err;
  991. cpumask_var_t tmp_mask;
  992. if (cfg->move_in_progress)
  993. return -EBUSY;
  994. if (!alloc_cpumask_var(&tmp_mask, GFP_ATOMIC))
  995. return -ENOMEM;
  996. old_vector = cfg->vector;
  997. if (old_vector) {
  998. cpumask_and(tmp_mask, mask, cpu_online_mask);
  999. cpumask_and(tmp_mask, cfg->domain, tmp_mask);
  1000. if (!cpumask_empty(tmp_mask)) {
  1001. free_cpumask_var(tmp_mask);
  1002. return 0;
  1003. }
  1004. }
  1005. /* Only try and allocate irqs on cpus that are present */
  1006. err = -ENOSPC;
  1007. for_each_cpu_and(cpu, mask, cpu_online_mask) {
  1008. int new_cpu;
  1009. int vector, offset;
  1010. apic->vector_allocation_domain(cpu, tmp_mask);
  1011. vector = current_vector;
  1012. offset = current_offset;
  1013. next:
  1014. vector += 8;
  1015. if (vector >= first_system_vector) {
  1016. /* If out of vectors on large boxen, must share them. */
  1017. offset = (offset + 1) % 8;
  1018. vector = FIRST_DEVICE_VECTOR + offset;
  1019. }
  1020. if (unlikely(current_vector == vector))
  1021. continue;
  1022. if (test_bit(vector, used_vectors))
  1023. goto next;
  1024. for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
  1025. if (per_cpu(vector_irq, new_cpu)[vector] != -1)
  1026. goto next;
  1027. /* Found one! */
  1028. current_vector = vector;
  1029. current_offset = offset;
  1030. if (old_vector) {
  1031. cfg->move_in_progress = 1;
  1032. cpumask_copy(cfg->old_domain, cfg->domain);
  1033. }
  1034. for_each_cpu_and(new_cpu, tmp_mask, cpu_online_mask)
  1035. per_cpu(vector_irq, new_cpu)[vector] = irq;
  1036. cfg->vector = vector;
  1037. cpumask_copy(cfg->domain, tmp_mask);
  1038. err = 0;
  1039. break;
  1040. }
  1041. free_cpumask_var(tmp_mask);
  1042. return err;
  1043. }
  1044. int assign_irq_vector(int irq, struct irq_cfg *cfg, const struct cpumask *mask)
  1045. {
  1046. int err;
  1047. unsigned long flags;
  1048. spin_lock_irqsave(&vector_lock, flags);
  1049. err = __assign_irq_vector(irq, cfg, mask);
  1050. spin_unlock_irqrestore(&vector_lock, flags);
  1051. return err;
  1052. }
  1053. static void __clear_irq_vector(int irq, struct irq_cfg *cfg)
  1054. {
  1055. int cpu, vector;
  1056. BUG_ON(!cfg->vector);
  1057. vector = cfg->vector;
  1058. for_each_cpu_and(cpu, cfg->domain, cpu_online_mask)
  1059. per_cpu(vector_irq, cpu)[vector] = -1;
  1060. cfg->vector = 0;
  1061. cpumask_clear(cfg->domain);
  1062. if (likely(!cfg->move_in_progress))
  1063. return;
  1064. for_each_cpu_and(cpu, cfg->old_domain, cpu_online_mask) {
  1065. for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS;
  1066. vector++) {
  1067. if (per_cpu(vector_irq, cpu)[vector] != irq)
  1068. continue;
  1069. per_cpu(vector_irq, cpu)[vector] = -1;
  1070. break;
  1071. }
  1072. }
  1073. cfg->move_in_progress = 0;
  1074. }
  1075. void __setup_vector_irq(int cpu)
  1076. {
  1077. /* Initialize vector_irq on a new cpu */
  1078. /* This function must be called with vector_lock held */
  1079. int irq, vector;
  1080. struct irq_cfg *cfg;
  1081. struct irq_desc *desc;
  1082. /* Mark the inuse vectors */
  1083. for_each_irq_desc(irq, desc) {
  1084. cfg = desc->chip_data;
  1085. if (!cpumask_test_cpu(cpu, cfg->domain))
  1086. continue;
  1087. vector = cfg->vector;
  1088. per_cpu(vector_irq, cpu)[vector] = irq;
  1089. }
  1090. /* Mark the free vectors */
  1091. for (vector = 0; vector < NR_VECTORS; ++vector) {
  1092. irq = per_cpu(vector_irq, cpu)[vector];
  1093. if (irq < 0)
  1094. continue;
  1095. cfg = irq_cfg(irq);
  1096. if (!cpumask_test_cpu(cpu, cfg->domain))
  1097. per_cpu(vector_irq, cpu)[vector] = -1;
  1098. }
  1099. }
  1100. static struct irq_chip ioapic_chip;
  1101. static struct irq_chip ir_ioapic_chip;
  1102. #define IOAPIC_AUTO -1
  1103. #define IOAPIC_EDGE 0
  1104. #define IOAPIC_LEVEL 1
  1105. #ifdef CONFIG_X86_32
  1106. static inline int IO_APIC_irq_trigger(int irq)
  1107. {
  1108. int apic, idx, pin;
  1109. for (apic = 0; apic < nr_ioapics; apic++) {
  1110. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
  1111. idx = find_irq_entry(apic, pin, mp_INT);
  1112. if ((idx != -1) && (irq == pin_2_irq(idx, apic, pin)))
  1113. return irq_trigger(idx);
  1114. }
  1115. }
  1116. /*
  1117. * nonexistent IRQs are edge default
  1118. */
  1119. return 0;
  1120. }
  1121. #else
  1122. static inline int IO_APIC_irq_trigger(int irq)
  1123. {
  1124. return 1;
  1125. }
  1126. #endif
  1127. static void ioapic_register_intr(int irq, struct irq_desc *desc, unsigned long trigger)
  1128. {
  1129. if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
  1130. trigger == IOAPIC_LEVEL)
  1131. desc->status |= IRQ_LEVEL;
  1132. else
  1133. desc->status &= ~IRQ_LEVEL;
  1134. if (irq_remapped(irq)) {
  1135. desc->status |= IRQ_MOVE_PCNTXT;
  1136. if (trigger)
  1137. set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
  1138. handle_fasteoi_irq,
  1139. "fasteoi");
  1140. else
  1141. set_irq_chip_and_handler_name(irq, &ir_ioapic_chip,
  1142. handle_edge_irq, "edge");
  1143. return;
  1144. }
  1145. if ((trigger == IOAPIC_AUTO && IO_APIC_irq_trigger(irq)) ||
  1146. trigger == IOAPIC_LEVEL)
  1147. set_irq_chip_and_handler_name(irq, &ioapic_chip,
  1148. handle_fasteoi_irq,
  1149. "fasteoi");
  1150. else
  1151. set_irq_chip_and_handler_name(irq, &ioapic_chip,
  1152. handle_edge_irq, "edge");
  1153. }
  1154. int setup_ioapic_entry(int apic_id, int irq,
  1155. struct IO_APIC_route_entry *entry,
  1156. unsigned int destination, int trigger,
  1157. int polarity, int vector, int pin)
  1158. {
  1159. /*
  1160. * add it to the IO-APIC irq-routing table:
  1161. */
  1162. memset(entry,0,sizeof(*entry));
  1163. if (intr_remapping_enabled) {
  1164. struct intel_iommu *iommu = map_ioapic_to_ir(apic_id);
  1165. struct irte irte;
  1166. struct IR_IO_APIC_route_entry *ir_entry =
  1167. (struct IR_IO_APIC_route_entry *) entry;
  1168. int index;
  1169. if (!iommu)
  1170. panic("No mapping iommu for ioapic %d\n", apic_id);
  1171. index = alloc_irte(iommu, irq, 1);
  1172. if (index < 0)
  1173. panic("Failed to allocate IRTE for ioapic %d\n", apic_id);
  1174. memset(&irte, 0, sizeof(irte));
  1175. irte.present = 1;
  1176. irte.dst_mode = apic->irq_dest_mode;
  1177. /*
  1178. * Trigger mode in the IRTE will always be edge, and the
  1179. * actual level or edge trigger will be setup in the IO-APIC
  1180. * RTE. This will help simplify level triggered irq migration.
  1181. * For more details, see the comments above explainig IO-APIC
  1182. * irq migration in the presence of interrupt-remapping.
  1183. */
  1184. irte.trigger_mode = 0;
  1185. irte.dlvry_mode = apic->irq_delivery_mode;
  1186. irte.vector = vector;
  1187. irte.dest_id = IRTE_DEST(destination);
  1188. /* Set source-id of interrupt request */
  1189. set_ioapic_sid(&irte, apic_id);
  1190. modify_irte(irq, &irte);
  1191. ir_entry->index2 = (index >> 15) & 0x1;
  1192. ir_entry->zero = 0;
  1193. ir_entry->format = 1;
  1194. ir_entry->index = (index & 0x7fff);
  1195. /*
  1196. * IO-APIC RTE will be configured with virtual vector.
  1197. * irq handler will do the explicit EOI to the io-apic.
  1198. */
  1199. ir_entry->vector = pin;
  1200. } else {
  1201. entry->delivery_mode = apic->irq_delivery_mode;
  1202. entry->dest_mode = apic->irq_dest_mode;
  1203. entry->dest = destination;
  1204. entry->vector = vector;
  1205. }
  1206. entry->mask = 0; /* enable IRQ */
  1207. entry->trigger = trigger;
  1208. entry->polarity = polarity;
  1209. /* Mask level triggered irqs.
  1210. * Use IRQ_DELAYED_DISABLE for edge triggered irqs.
  1211. */
  1212. if (trigger)
  1213. entry->mask = 1;
  1214. return 0;
  1215. }
  1216. static void setup_IO_APIC_irq(int apic_id, int pin, unsigned int irq, struct irq_desc *desc,
  1217. int trigger, int polarity)
  1218. {
  1219. struct irq_cfg *cfg;
  1220. struct IO_APIC_route_entry entry;
  1221. unsigned int dest;
  1222. if (!IO_APIC_IRQ(irq))
  1223. return;
  1224. cfg = desc->chip_data;
  1225. if (assign_irq_vector(irq, cfg, apic->target_cpus()))
  1226. return;
  1227. dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
  1228. apic_printk(APIC_VERBOSE,KERN_DEBUG
  1229. "IOAPIC[%d]: Set routing entry (%d-%d -> 0x%x -> "
  1230. "IRQ %d Mode:%i Active:%i)\n",
  1231. apic_id, mp_ioapics[apic_id].apicid, pin, cfg->vector,
  1232. irq, trigger, polarity);
  1233. if (setup_ioapic_entry(mp_ioapics[apic_id].apicid, irq, &entry,
  1234. dest, trigger, polarity, cfg->vector, pin)) {
  1235. printk("Failed to setup ioapic entry for ioapic %d, pin %d\n",
  1236. mp_ioapics[apic_id].apicid, pin);
  1237. __clear_irq_vector(irq, cfg);
  1238. return;
  1239. }
  1240. ioapic_register_intr(irq, desc, trigger);
  1241. if (irq < nr_legacy_irqs)
  1242. disable_8259A_irq(irq);
  1243. ioapic_write_entry(apic_id, pin, entry);
  1244. }
  1245. static struct {
  1246. DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1);
  1247. } mp_ioapic_routing[MAX_IO_APICS];
  1248. static void __init setup_IO_APIC_irqs(void)
  1249. {
  1250. int apic_id = 0, pin, idx, irq;
  1251. int notcon = 0;
  1252. struct irq_desc *desc;
  1253. struct irq_cfg *cfg;
  1254. int node = cpu_to_node(boot_cpu_id);
  1255. apic_printk(APIC_VERBOSE, KERN_DEBUG "init IO_APIC IRQs\n");
  1256. #ifdef CONFIG_ACPI
  1257. if (!acpi_disabled && acpi_ioapic) {
  1258. apic_id = mp_find_ioapic(0);
  1259. if (apic_id < 0)
  1260. apic_id = 0;
  1261. }
  1262. #endif
  1263. for (pin = 0; pin < nr_ioapic_registers[apic_id]; pin++) {
  1264. idx = find_irq_entry(apic_id, pin, mp_INT);
  1265. if (idx == -1) {
  1266. if (!notcon) {
  1267. notcon = 1;
  1268. apic_printk(APIC_VERBOSE,
  1269. KERN_DEBUG " %d-%d",
  1270. mp_ioapics[apic_id].apicid, pin);
  1271. } else
  1272. apic_printk(APIC_VERBOSE, " %d-%d",
  1273. mp_ioapics[apic_id].apicid, pin);
  1274. continue;
  1275. }
  1276. if (notcon) {
  1277. apic_printk(APIC_VERBOSE,
  1278. " (apicid-pin) not connected\n");
  1279. notcon = 0;
  1280. }
  1281. irq = pin_2_irq(idx, apic_id, pin);
  1282. /*
  1283. * Skip the timer IRQ if there's a quirk handler
  1284. * installed and if it returns 1:
  1285. */
  1286. if (apic->multi_timer_check &&
  1287. apic->multi_timer_check(apic_id, irq))
  1288. continue;
  1289. desc = irq_to_desc_alloc_node(irq, node);
  1290. if (!desc) {
  1291. printk(KERN_INFO "can not get irq_desc for %d\n", irq);
  1292. continue;
  1293. }
  1294. cfg = desc->chip_data;
  1295. add_pin_to_irq_node(cfg, node, apic_id, pin);
  1296. /*
  1297. * don't mark it in pin_programmed, so later acpi could
  1298. * set it correctly when irq < 16
  1299. */
  1300. setup_IO_APIC_irq(apic_id, pin, irq, desc,
  1301. irq_trigger(idx), irq_polarity(idx));
  1302. }
  1303. if (notcon)
  1304. apic_printk(APIC_VERBOSE,
  1305. " (apicid-pin) not connected\n");
  1306. }
  1307. /*
  1308. * Set up the timer pin, possibly with the 8259A-master behind.
  1309. */
  1310. static void __init setup_timer_IRQ0_pin(unsigned int apic_id, unsigned int pin,
  1311. int vector)
  1312. {
  1313. struct IO_APIC_route_entry entry;
  1314. if (intr_remapping_enabled)
  1315. return;
  1316. memset(&entry, 0, sizeof(entry));
  1317. /*
  1318. * We use logical delivery to get the timer IRQ
  1319. * to the first CPU.
  1320. */
  1321. entry.dest_mode = apic->irq_dest_mode;
  1322. entry.mask = 0; /* don't mask IRQ for edge */
  1323. entry.dest = apic->cpu_mask_to_apicid(apic->target_cpus());
  1324. entry.delivery_mode = apic->irq_delivery_mode;
  1325. entry.polarity = 0;
  1326. entry.trigger = 0;
  1327. entry.vector = vector;
  1328. /*
  1329. * The timer IRQ doesn't have to know that behind the
  1330. * scene we may have a 8259A-master in AEOI mode ...
  1331. */
  1332. set_irq_chip_and_handler_name(0, &ioapic_chip, handle_edge_irq, "edge");
  1333. /*
  1334. * Add it to the IO-APIC irq-routing table:
  1335. */
  1336. ioapic_write_entry(apic_id, pin, entry);
  1337. }
  1338. __apicdebuginit(void) print_IO_APIC(void)
  1339. {
  1340. int apic, i;
  1341. union IO_APIC_reg_00 reg_00;
  1342. union IO_APIC_reg_01 reg_01;
  1343. union IO_APIC_reg_02 reg_02;
  1344. union IO_APIC_reg_03 reg_03;
  1345. unsigned long flags;
  1346. struct irq_cfg *cfg;
  1347. struct irq_desc *desc;
  1348. unsigned int irq;
  1349. printk(KERN_DEBUG "number of MP IRQ sources: %d.\n", mp_irq_entries);
  1350. for (i = 0; i < nr_ioapics; i++)
  1351. printk(KERN_DEBUG "number of IO-APIC #%d registers: %d.\n",
  1352. mp_ioapics[i].apicid, nr_ioapic_registers[i]);
  1353. /*
  1354. * We are a bit conservative about what we expect. We have to
  1355. * know about every hardware change ASAP.
  1356. */
  1357. printk(KERN_INFO "testing the IO APIC.......................\n");
  1358. for (apic = 0; apic < nr_ioapics; apic++) {
  1359. spin_lock_irqsave(&ioapic_lock, flags);
  1360. reg_00.raw = io_apic_read(apic, 0);
  1361. reg_01.raw = io_apic_read(apic, 1);
  1362. if (reg_01.bits.version >= 0x10)
  1363. reg_02.raw = io_apic_read(apic, 2);
  1364. if (reg_01.bits.version >= 0x20)
  1365. reg_03.raw = io_apic_read(apic, 3);
  1366. spin_unlock_irqrestore(&ioapic_lock, flags);
  1367. printk("\n");
  1368. printk(KERN_DEBUG "IO APIC #%d......\n", mp_ioapics[apic].apicid);
  1369. printk(KERN_DEBUG ".... register #00: %08X\n", reg_00.raw);
  1370. printk(KERN_DEBUG "....... : physical APIC id: %02X\n", reg_00.bits.ID);
  1371. printk(KERN_DEBUG "....... : Delivery Type: %X\n", reg_00.bits.delivery_type);
  1372. printk(KERN_DEBUG "....... : LTS : %X\n", reg_00.bits.LTS);
  1373. printk(KERN_DEBUG ".... register #01: %08X\n", *(int *)&reg_01);
  1374. printk(KERN_DEBUG "....... : max redirection entries: %04X\n", reg_01.bits.entries);
  1375. printk(KERN_DEBUG "....... : PRQ implemented: %X\n", reg_01.bits.PRQ);
  1376. printk(KERN_DEBUG "....... : IO APIC version: %04X\n", reg_01.bits.version);
  1377. /*
  1378. * Some Intel chipsets with IO APIC VERSION of 0x1? don't have reg_02,
  1379. * but the value of reg_02 is read as the previous read register
  1380. * value, so ignore it if reg_02 == reg_01.
  1381. */
  1382. if (reg_01.bits.version >= 0x10 && reg_02.raw != reg_01.raw) {
  1383. printk(KERN_DEBUG ".... register #02: %08X\n", reg_02.raw);
  1384. printk(KERN_DEBUG "....... : arbitration: %02X\n", reg_02.bits.arbitration);
  1385. }
  1386. /*
  1387. * Some Intel chipsets with IO APIC VERSION of 0x2? don't have reg_02
  1388. * or reg_03, but the value of reg_0[23] is read as the previous read
  1389. * register value, so ignore it if reg_03 == reg_0[12].
  1390. */
  1391. if (reg_01.bits.version >= 0x20 && reg_03.raw != reg_02.raw &&
  1392. reg_03.raw != reg_01.raw) {
  1393. printk(KERN_DEBUG ".... register #03: %08X\n", reg_03.raw);
  1394. printk(KERN_DEBUG "....... : Boot DT : %X\n", reg_03.bits.boot_DT);
  1395. }
  1396. printk(KERN_DEBUG ".... IRQ redirection table:\n");
  1397. printk(KERN_DEBUG " NR Dst Mask Trig IRR Pol"
  1398. " Stat Dmod Deli Vect: \n");
  1399. for (i = 0; i <= reg_01.bits.entries; i++) {
  1400. struct IO_APIC_route_entry entry;
  1401. entry = ioapic_read_entry(apic, i);
  1402. printk(KERN_DEBUG " %02x %03X ",
  1403. i,
  1404. entry.dest
  1405. );
  1406. printk("%1d %1d %1d %1d %1d %1d %1d %02X\n",
  1407. entry.mask,
  1408. entry.trigger,
  1409. entry.irr,
  1410. entry.polarity,
  1411. entry.delivery_status,
  1412. entry.dest_mode,
  1413. entry.delivery_mode,
  1414. entry.vector
  1415. );
  1416. }
  1417. }
  1418. printk(KERN_DEBUG "IRQ to pin mappings:\n");
  1419. for_each_irq_desc(irq, desc) {
  1420. struct irq_pin_list *entry;
  1421. cfg = desc->chip_data;
  1422. entry = cfg->irq_2_pin;
  1423. if (!entry)
  1424. continue;
  1425. printk(KERN_DEBUG "IRQ%d ", irq);
  1426. for_each_irq_pin(entry, cfg->irq_2_pin)
  1427. printk("-> %d:%d", entry->apic, entry->pin);
  1428. printk("\n");
  1429. }
  1430. printk(KERN_INFO ".................................... done.\n");
  1431. return;
  1432. }
  1433. __apicdebuginit(void) print_APIC_field(int base)
  1434. {
  1435. int i;
  1436. printk(KERN_DEBUG);
  1437. for (i = 0; i < 8; i++)
  1438. printk(KERN_CONT "%08x", apic_read(base + i*0x10));
  1439. printk(KERN_CONT "\n");
  1440. }
  1441. __apicdebuginit(void) print_local_APIC(void *dummy)
  1442. {
  1443. unsigned int i, v, ver, maxlvt;
  1444. u64 icr;
  1445. printk(KERN_DEBUG "printing local APIC contents on CPU#%d/%d:\n",
  1446. smp_processor_id(), hard_smp_processor_id());
  1447. v = apic_read(APIC_ID);
  1448. printk(KERN_INFO "... APIC ID: %08x (%01x)\n", v, read_apic_id());
  1449. v = apic_read(APIC_LVR);
  1450. printk(KERN_INFO "... APIC VERSION: %08x\n", v);
  1451. ver = GET_APIC_VERSION(v);
  1452. maxlvt = lapic_get_maxlvt();
  1453. v = apic_read(APIC_TASKPRI);
  1454. printk(KERN_DEBUG "... APIC TASKPRI: %08x (%02x)\n", v, v & APIC_TPRI_MASK);
  1455. if (APIC_INTEGRATED(ver)) { /* !82489DX */
  1456. if (!APIC_XAPIC(ver)) {
  1457. v = apic_read(APIC_ARBPRI);
  1458. printk(KERN_DEBUG "... APIC ARBPRI: %08x (%02x)\n", v,
  1459. v & APIC_ARBPRI_MASK);
  1460. }
  1461. v = apic_read(APIC_PROCPRI);
  1462. printk(KERN_DEBUG "... APIC PROCPRI: %08x\n", v);
  1463. }
  1464. /*
  1465. * Remote read supported only in the 82489DX and local APIC for
  1466. * Pentium processors.
  1467. */
  1468. if (!APIC_INTEGRATED(ver) || maxlvt == 3) {
  1469. v = apic_read(APIC_RRR);
  1470. printk(KERN_DEBUG "... APIC RRR: %08x\n", v);
  1471. }
  1472. v = apic_read(APIC_LDR);
  1473. printk(KERN_DEBUG "... APIC LDR: %08x\n", v);
  1474. if (!x2apic_enabled()) {
  1475. v = apic_read(APIC_DFR);
  1476. printk(KERN_DEBUG "... APIC DFR: %08x\n", v);
  1477. }
  1478. v = apic_read(APIC_SPIV);
  1479. printk(KERN_DEBUG "... APIC SPIV: %08x\n", v);
  1480. printk(KERN_DEBUG "... APIC ISR field:\n");
  1481. print_APIC_field(APIC_ISR);
  1482. printk(KERN_DEBUG "... APIC TMR field:\n");
  1483. print_APIC_field(APIC_TMR);
  1484. printk(KERN_DEBUG "... APIC IRR field:\n");
  1485. print_APIC_field(APIC_IRR);
  1486. if (APIC_INTEGRATED(ver)) { /* !82489DX */
  1487. if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
  1488. apic_write(APIC_ESR, 0);
  1489. v = apic_read(APIC_ESR);
  1490. printk(KERN_DEBUG "... APIC ESR: %08x\n", v);
  1491. }
  1492. icr = apic_icr_read();
  1493. printk(KERN_DEBUG "... APIC ICR: %08x\n", (u32)icr);
  1494. printk(KERN_DEBUG "... APIC ICR2: %08x\n", (u32)(icr >> 32));
  1495. v = apic_read(APIC_LVTT);
  1496. printk(KERN_DEBUG "... APIC LVTT: %08x\n", v);
  1497. if (maxlvt > 3) { /* PC is LVT#4. */
  1498. v = apic_read(APIC_LVTPC);
  1499. printk(KERN_DEBUG "... APIC LVTPC: %08x\n", v);
  1500. }
  1501. v = apic_read(APIC_LVT0);
  1502. printk(KERN_DEBUG "... APIC LVT0: %08x\n", v);
  1503. v = apic_read(APIC_LVT1);
  1504. printk(KERN_DEBUG "... APIC LVT1: %08x\n", v);
  1505. if (maxlvt > 2) { /* ERR is LVT#3. */
  1506. v = apic_read(APIC_LVTERR);
  1507. printk(KERN_DEBUG "... APIC LVTERR: %08x\n", v);
  1508. }
  1509. v = apic_read(APIC_TMICT);
  1510. printk(KERN_DEBUG "... APIC TMICT: %08x\n", v);
  1511. v = apic_read(APIC_TMCCT);
  1512. printk(KERN_DEBUG "... APIC TMCCT: %08x\n", v);
  1513. v = apic_read(APIC_TDCR);
  1514. printk(KERN_DEBUG "... APIC TDCR: %08x\n", v);
  1515. if (boot_cpu_has(X86_FEATURE_EXTAPIC)) {
  1516. v = apic_read(APIC_EFEAT);
  1517. maxlvt = (v >> 16) & 0xff;
  1518. printk(KERN_DEBUG "... APIC EFEAT: %08x\n", v);
  1519. v = apic_read(APIC_ECTRL);
  1520. printk(KERN_DEBUG "... APIC ECTRL: %08x\n", v);
  1521. for (i = 0; i < maxlvt; i++) {
  1522. v = apic_read(APIC_EILVTn(i));
  1523. printk(KERN_DEBUG "... APIC EILVT%d: %08x\n", i, v);
  1524. }
  1525. }
  1526. printk("\n");
  1527. }
  1528. __apicdebuginit(void) print_local_APICs(int maxcpu)
  1529. {
  1530. int cpu;
  1531. if (!maxcpu)
  1532. return;
  1533. preempt_disable();
  1534. for_each_online_cpu(cpu) {
  1535. if (cpu >= maxcpu)
  1536. break;
  1537. smp_call_function_single(cpu, print_local_APIC, NULL, 1);
  1538. }
  1539. preempt_enable();
  1540. }
  1541. __apicdebuginit(void) print_PIC(void)
  1542. {
  1543. unsigned int v;
  1544. unsigned long flags;
  1545. if (!nr_legacy_irqs)
  1546. return;
  1547. printk(KERN_DEBUG "\nprinting PIC contents\n");
  1548. spin_lock_irqsave(&i8259A_lock, flags);
  1549. v = inb(0xa1) << 8 | inb(0x21);
  1550. printk(KERN_DEBUG "... PIC IMR: %04x\n", v);
  1551. v = inb(0xa0) << 8 | inb(0x20);
  1552. printk(KERN_DEBUG "... PIC IRR: %04x\n", v);
  1553. outb(0x0b,0xa0);
  1554. outb(0x0b,0x20);
  1555. v = inb(0xa0) << 8 | inb(0x20);
  1556. outb(0x0a,0xa0);
  1557. outb(0x0a,0x20);
  1558. spin_unlock_irqrestore(&i8259A_lock, flags);
  1559. printk(KERN_DEBUG "... PIC ISR: %04x\n", v);
  1560. v = inb(0x4d1) << 8 | inb(0x4d0);
  1561. printk(KERN_DEBUG "... PIC ELCR: %04x\n", v);
  1562. }
  1563. static int __initdata show_lapic = 1;
  1564. static __init int setup_show_lapic(char *arg)
  1565. {
  1566. int num = -1;
  1567. if (strcmp(arg, "all") == 0) {
  1568. show_lapic = CONFIG_NR_CPUS;
  1569. } else {
  1570. get_option(&arg, &num);
  1571. if (num >= 0)
  1572. show_lapic = num;
  1573. }
  1574. return 1;
  1575. }
  1576. __setup("show_lapic=", setup_show_lapic);
  1577. __apicdebuginit(int) print_ICs(void)
  1578. {
  1579. if (apic_verbosity == APIC_QUIET)
  1580. return 0;
  1581. print_PIC();
  1582. /* don't print out if apic is not there */
  1583. if (!cpu_has_apic && !apic_from_smp_config())
  1584. return 0;
  1585. print_local_APICs(show_lapic);
  1586. print_IO_APIC();
  1587. return 0;
  1588. }
  1589. fs_initcall(print_ICs);
  1590. /* Where if anywhere is the i8259 connect in external int mode */
  1591. static struct { int pin, apic; } ioapic_i8259 = { -1, -1 };
  1592. void __init enable_IO_APIC(void)
  1593. {
  1594. union IO_APIC_reg_01 reg_01;
  1595. int i8259_apic, i8259_pin;
  1596. int apic;
  1597. unsigned long flags;
  1598. /*
  1599. * The number of IO-APIC IRQ registers (== #pins):
  1600. */
  1601. for (apic = 0; apic < nr_ioapics; apic++) {
  1602. spin_lock_irqsave(&ioapic_lock, flags);
  1603. reg_01.raw = io_apic_read(apic, 1);
  1604. spin_unlock_irqrestore(&ioapic_lock, flags);
  1605. nr_ioapic_registers[apic] = reg_01.bits.entries+1;
  1606. }
  1607. if (!nr_legacy_irqs)
  1608. return;
  1609. for(apic = 0; apic < nr_ioapics; apic++) {
  1610. int pin;
  1611. /* See if any of the pins is in ExtINT mode */
  1612. for (pin = 0; pin < nr_ioapic_registers[apic]; pin++) {
  1613. struct IO_APIC_route_entry entry;
  1614. entry = ioapic_read_entry(apic, pin);
  1615. /* If the interrupt line is enabled and in ExtInt mode
  1616. * I have found the pin where the i8259 is connected.
  1617. */
  1618. if ((entry.mask == 0) && (entry.delivery_mode == dest_ExtINT)) {
  1619. ioapic_i8259.apic = apic;
  1620. ioapic_i8259.pin = pin;
  1621. goto found_i8259;
  1622. }
  1623. }
  1624. }
  1625. found_i8259:
  1626. /* Look to see what if the MP table has reported the ExtINT */
  1627. /* If we could not find the appropriate pin by looking at the ioapic
  1628. * the i8259 probably is not connected the ioapic but give the
  1629. * mptable a chance anyway.
  1630. */
  1631. i8259_pin = find_isa_irq_pin(0, mp_ExtINT);
  1632. i8259_apic = find_isa_irq_apic(0, mp_ExtINT);
  1633. /* Trust the MP table if nothing is setup in the hardware */
  1634. if ((ioapic_i8259.pin == -1) && (i8259_pin >= 0)) {
  1635. printk(KERN_WARNING "ExtINT not setup in hardware but reported by MP table\n");
  1636. ioapic_i8259.pin = i8259_pin;
  1637. ioapic_i8259.apic = i8259_apic;
  1638. }
  1639. /* Complain if the MP table and the hardware disagree */
  1640. if (((ioapic_i8259.apic != i8259_apic) || (ioapic_i8259.pin != i8259_pin)) &&
  1641. (i8259_pin >= 0) && (ioapic_i8259.pin >= 0))
  1642. {
  1643. printk(KERN_WARNING "ExtINT in hardware and MP table differ\n");
  1644. }
  1645. /*
  1646. * Do not trust the IO-APIC being empty at bootup
  1647. */
  1648. clear_IO_APIC();
  1649. }
  1650. /*
  1651. * Not an __init, needed by the reboot code
  1652. */
  1653. void disable_IO_APIC(void)
  1654. {
  1655. /*
  1656. * Clear the IO-APIC before rebooting:
  1657. */
  1658. clear_IO_APIC();
  1659. if (!nr_legacy_irqs)
  1660. return;
  1661. /*
  1662. * If the i8259 is routed through an IOAPIC
  1663. * Put that IOAPIC in virtual wire mode
  1664. * so legacy interrupts can be delivered.
  1665. *
  1666. * With interrupt-remapping, for now we will use virtual wire A mode,
  1667. * as virtual wire B is little complex (need to configure both
  1668. * IOAPIC RTE aswell as interrupt-remapping table entry).
  1669. * As this gets called during crash dump, keep this simple for now.
  1670. */
  1671. if (ioapic_i8259.pin != -1 && !intr_remapping_enabled) {
  1672. struct IO_APIC_route_entry entry;
  1673. memset(&entry, 0, sizeof(entry));
  1674. entry.mask = 0; /* Enabled */
  1675. entry.trigger = 0; /* Edge */
  1676. entry.irr = 0;
  1677. entry.polarity = 0; /* High */
  1678. entry.delivery_status = 0;
  1679. entry.dest_mode = 0; /* Physical */
  1680. entry.delivery_mode = dest_ExtINT; /* ExtInt */
  1681. entry.vector = 0;
  1682. entry.dest = read_apic_id();
  1683. /*
  1684. * Add it to the IO-APIC irq-routing table:
  1685. */
  1686. ioapic_write_entry(ioapic_i8259.apic, ioapic_i8259.pin, entry);
  1687. }
  1688. /*
  1689. * Use virtual wire A mode when interrupt remapping is enabled.
  1690. */
  1691. if (cpu_has_apic || apic_from_smp_config())
  1692. disconnect_bsp_APIC(!intr_remapping_enabled &&
  1693. ioapic_i8259.pin != -1);
  1694. }
  1695. #ifdef CONFIG_X86_32
  1696. /*
  1697. * function to set the IO-APIC physical IDs based on the
  1698. * values stored in the MPC table.
  1699. *
  1700. * by Matt Domsch <Matt_Domsch@dell.com> Tue Dec 21 12:25:05 CST 1999
  1701. */
  1702. void __init setup_ioapic_ids_from_mpc(void)
  1703. {
  1704. union IO_APIC_reg_00 reg_00;
  1705. physid_mask_t phys_id_present_map;
  1706. int apic_id;
  1707. int i;
  1708. unsigned char old_id;
  1709. unsigned long flags;
  1710. if (acpi_ioapic)
  1711. return;
  1712. /*
  1713. * Don't check I/O APIC IDs for xAPIC systems. They have
  1714. * no meaning without the serial APIC bus.
  1715. */
  1716. if (!(boot_cpu_data.x86_vendor == X86_VENDOR_INTEL)
  1717. || APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
  1718. return;
  1719. /*
  1720. * This is broken; anything with a real cpu count has to
  1721. * circumvent this idiocy regardless.
  1722. */
  1723. apic->ioapic_phys_id_map(&phys_cpu_present_map, &phys_id_present_map);
  1724. /*
  1725. * Set the IOAPIC ID to the value stored in the MPC table.
  1726. */
  1727. for (apic_id = 0; apic_id < nr_ioapics; apic_id++) {
  1728. /* Read the register 0 value */
  1729. spin_lock_irqsave(&ioapic_lock, flags);
  1730. reg_00.raw = io_apic_read(apic_id, 0);
  1731. spin_unlock_irqrestore(&ioapic_lock, flags);
  1732. old_id = mp_ioapics[apic_id].apicid;
  1733. if (mp_ioapics[apic_id].apicid >= get_physical_broadcast()) {
  1734. printk(KERN_ERR "BIOS bug, IO-APIC#%d ID is %d in the MPC table!...\n",
  1735. apic_id, mp_ioapics[apic_id].apicid);
  1736. printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
  1737. reg_00.bits.ID);
  1738. mp_ioapics[apic_id].apicid = reg_00.bits.ID;
  1739. }
  1740. /*
  1741. * Sanity check, is the ID really free? Every APIC in a
  1742. * system must have a unique ID or we get lots of nice
  1743. * 'stuck on smp_invalidate_needed IPI wait' messages.
  1744. */
  1745. if (apic->check_apicid_used(&phys_id_present_map,
  1746. mp_ioapics[apic_id].apicid)) {
  1747. printk(KERN_ERR "BIOS bug, IO-APIC#%d ID %d is already used!...\n",
  1748. apic_id, mp_ioapics[apic_id].apicid);
  1749. for (i = 0; i < get_physical_broadcast(); i++)
  1750. if (!physid_isset(i, phys_id_present_map))
  1751. break;
  1752. if (i >= get_physical_broadcast())
  1753. panic("Max APIC ID exceeded!\n");
  1754. printk(KERN_ERR "... fixing up to %d. (tell your hw vendor)\n",
  1755. i);
  1756. physid_set(i, phys_id_present_map);
  1757. mp_ioapics[apic_id].apicid = i;
  1758. } else {
  1759. physid_mask_t tmp;
  1760. apic->apicid_to_cpu_present(mp_ioapics[apic_id].apicid, &tmp);
  1761. apic_printk(APIC_VERBOSE, "Setting %d in the "
  1762. "phys_id_present_map\n",
  1763. mp_ioapics[apic_id].apicid);
  1764. physids_or(phys_id_present_map, phys_id_present_map, tmp);
  1765. }
  1766. /*
  1767. * We need to adjust the IRQ routing table
  1768. * if the ID changed.
  1769. */
  1770. if (old_id != mp_ioapics[apic_id].apicid)
  1771. for (i = 0; i < mp_irq_entries; i++)
  1772. if (mp_irqs[i].dstapic == old_id)
  1773. mp_irqs[i].dstapic
  1774. = mp_ioapics[apic_id].apicid;
  1775. /*
  1776. * Read the right value from the MPC table and
  1777. * write it into the ID register.
  1778. */
  1779. apic_printk(APIC_VERBOSE, KERN_INFO
  1780. "...changing IO-APIC physical APIC ID to %d ...",
  1781. mp_ioapics[apic_id].apicid);
  1782. reg_00.bits.ID = mp_ioapics[apic_id].apicid;
  1783. spin_lock_irqsave(&ioapic_lock, flags);
  1784. io_apic_write(apic_id, 0, reg_00.raw);
  1785. spin_unlock_irqrestore(&ioapic_lock, flags);
  1786. /*
  1787. * Sanity check
  1788. */
  1789. spin_lock_irqsave(&ioapic_lock, flags);
  1790. reg_00.raw = io_apic_read(apic_id, 0);
  1791. spin_unlock_irqrestore(&ioapic_lock, flags);
  1792. if (reg_00.bits.ID != mp_ioapics[apic_id].apicid)
  1793. printk("could not set ID!\n");
  1794. else
  1795. apic_printk(APIC_VERBOSE, " ok.\n");
  1796. }
  1797. }
  1798. #endif
  1799. int no_timer_check __initdata;
  1800. static int __init notimercheck(char *s)
  1801. {
  1802. no_timer_check = 1;
  1803. return 1;
  1804. }
  1805. __setup("no_timer_check", notimercheck);
  1806. /*
  1807. * There is a nasty bug in some older SMP boards, their mptable lies
  1808. * about the timer IRQ. We do the following to work around the situation:
  1809. *
  1810. * - timer IRQ defaults to IO-APIC IRQ
  1811. * - if this function detects that timer IRQs are defunct, then we fall
  1812. * back to ISA timer IRQs
  1813. */
  1814. static int __init timer_irq_works(void)
  1815. {
  1816. unsigned long t1 = jiffies;
  1817. unsigned long flags;
  1818. if (no_timer_check)
  1819. return 1;
  1820. local_save_flags(flags);
  1821. local_irq_enable();
  1822. /* Let ten ticks pass... */
  1823. mdelay((10 * 1000) / HZ);
  1824. local_irq_restore(flags);
  1825. /*
  1826. * Expect a few ticks at least, to be sure some possible
  1827. * glue logic does not lock up after one or two first
  1828. * ticks in a non-ExtINT mode. Also the local APIC
  1829. * might have cached one ExtINT interrupt. Finally, at
  1830. * least one tick may be lost due to delays.
  1831. */
  1832. /* jiffies wrap? */
  1833. if (time_after(jiffies, t1 + 4))
  1834. return 1;
  1835. return 0;
  1836. }
  1837. /*
  1838. * In the SMP+IOAPIC case it might happen that there are an unspecified
  1839. * number of pending IRQ events unhandled. These cases are very rare,
  1840. * so we 'resend' these IRQs via IPIs, to the same CPU. It's much
  1841. * better to do it this way as thus we do not have to be aware of
  1842. * 'pending' interrupts in the IRQ path, except at this point.
  1843. */
  1844. /*
  1845. * Edge triggered needs to resend any interrupt
  1846. * that was delayed but this is now handled in the device
  1847. * independent code.
  1848. */
  1849. /*
  1850. * Starting up a edge-triggered IO-APIC interrupt is
  1851. * nasty - we need to make sure that we get the edge.
  1852. * If it is already asserted for some reason, we need
  1853. * return 1 to indicate that is was pending.
  1854. *
  1855. * This is not complete - we should be able to fake
  1856. * an edge even if it isn't on the 8259A...
  1857. */
  1858. static unsigned int startup_ioapic_irq(unsigned int irq)
  1859. {
  1860. int was_pending = 0;
  1861. unsigned long flags;
  1862. struct irq_cfg *cfg;
  1863. spin_lock_irqsave(&ioapic_lock, flags);
  1864. if (irq < nr_legacy_irqs) {
  1865. disable_8259A_irq(irq);
  1866. if (i8259A_irq_pending(irq))
  1867. was_pending = 1;
  1868. }
  1869. cfg = irq_cfg(irq);
  1870. __unmask_IO_APIC_irq(cfg);
  1871. spin_unlock_irqrestore(&ioapic_lock, flags);
  1872. return was_pending;
  1873. }
  1874. static int ioapic_retrigger_irq(unsigned int irq)
  1875. {
  1876. struct irq_cfg *cfg = irq_cfg(irq);
  1877. unsigned long flags;
  1878. spin_lock_irqsave(&vector_lock, flags);
  1879. apic->send_IPI_mask(cpumask_of(cpumask_first(cfg->domain)), cfg->vector);
  1880. spin_unlock_irqrestore(&vector_lock, flags);
  1881. return 1;
  1882. }
  1883. /*
  1884. * Level and edge triggered IO-APIC interrupts need different handling,
  1885. * so we use two separate IRQ descriptors. Edge triggered IRQs can be
  1886. * handled with the level-triggered descriptor, but that one has slightly
  1887. * more overhead. Level-triggered interrupts cannot be handled with the
  1888. * edge-triggered handler, without risking IRQ storms and other ugly
  1889. * races.
  1890. */
  1891. #ifdef CONFIG_SMP
  1892. void send_cleanup_vector(struct irq_cfg *cfg)
  1893. {
  1894. cpumask_var_t cleanup_mask;
  1895. if (unlikely(!alloc_cpumask_var(&cleanup_mask, GFP_ATOMIC))) {
  1896. unsigned int i;
  1897. for_each_cpu_and(i, cfg->old_domain, cpu_online_mask)
  1898. apic->send_IPI_mask(cpumask_of(i), IRQ_MOVE_CLEANUP_VECTOR);
  1899. } else {
  1900. cpumask_and(cleanup_mask, cfg->old_domain, cpu_online_mask);
  1901. apic->send_IPI_mask(cleanup_mask, IRQ_MOVE_CLEANUP_VECTOR);
  1902. free_cpumask_var(cleanup_mask);
  1903. }
  1904. cfg->move_in_progress = 0;
  1905. }
  1906. static void __target_IO_APIC_irq(unsigned int irq, unsigned int dest, struct irq_cfg *cfg)
  1907. {
  1908. int apic, pin;
  1909. struct irq_pin_list *entry;
  1910. u8 vector = cfg->vector;
  1911. for_each_irq_pin(entry, cfg->irq_2_pin) {
  1912. unsigned int reg;
  1913. apic = entry->apic;
  1914. pin = entry->pin;
  1915. /*
  1916. * With interrupt-remapping, destination information comes
  1917. * from interrupt-remapping table entry.
  1918. */
  1919. if (!irq_remapped(irq))
  1920. io_apic_write(apic, 0x11 + pin*2, dest);
  1921. reg = io_apic_read(apic, 0x10 + pin*2);
  1922. reg &= ~IO_APIC_REDIR_VECTOR_MASK;
  1923. reg |= vector;
  1924. io_apic_modify(apic, 0x10 + pin*2, reg);
  1925. }
  1926. }
  1927. /*
  1928. * Either sets desc->affinity to a valid value, and returns
  1929. * ->cpu_mask_to_apicid of that in dest_id, or returns -1 and
  1930. * leaves desc->affinity untouched.
  1931. */
  1932. unsigned int
  1933. set_desc_affinity(struct irq_desc *desc, const struct cpumask *mask,
  1934. unsigned int *dest_id)
  1935. {
  1936. struct irq_cfg *cfg;
  1937. unsigned int irq;
  1938. if (!cpumask_intersects(mask, cpu_online_mask))
  1939. return -1;
  1940. irq = desc->irq;
  1941. cfg = desc->chip_data;
  1942. if (assign_irq_vector(irq, cfg, mask))
  1943. return -1;
  1944. cpumask_copy(desc->affinity, mask);
  1945. *dest_id = apic->cpu_mask_to_apicid_and(desc->affinity, cfg->domain);
  1946. return 0;
  1947. }
  1948. static int
  1949. set_ioapic_affinity_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
  1950. {
  1951. struct irq_cfg *cfg;
  1952. unsigned long flags;
  1953. unsigned int dest;
  1954. unsigned int irq;
  1955. int ret = -1;
  1956. irq = desc->irq;
  1957. cfg = desc->chip_data;
  1958. spin_lock_irqsave(&ioapic_lock, flags);
  1959. ret = set_desc_affinity(desc, mask, &dest);
  1960. if (!ret) {
  1961. /* Only the high 8 bits are valid. */
  1962. dest = SET_APIC_LOGICAL_ID(dest);
  1963. __target_IO_APIC_irq(irq, dest, cfg);
  1964. }
  1965. spin_unlock_irqrestore(&ioapic_lock, flags);
  1966. return ret;
  1967. }
  1968. static int
  1969. set_ioapic_affinity_irq(unsigned int irq, const struct cpumask *mask)
  1970. {
  1971. struct irq_desc *desc;
  1972. desc = irq_to_desc(irq);
  1973. return set_ioapic_affinity_irq_desc(desc, mask);
  1974. }
  1975. #ifdef CONFIG_INTR_REMAP
  1976. /*
  1977. * Migrate the IO-APIC irq in the presence of intr-remapping.
  1978. *
  1979. * For both level and edge triggered, irq migration is a simple atomic
  1980. * update(of vector and cpu destination) of IRTE and flush the hardware cache.
  1981. *
  1982. * For level triggered, we eliminate the io-apic RTE modification (with the
  1983. * updated vector information), by using a virtual vector (io-apic pin number).
  1984. * Real vector that is used for interrupting cpu will be coming from
  1985. * the interrupt-remapping table entry.
  1986. */
  1987. static int
  1988. migrate_ioapic_irq_desc(struct irq_desc *desc, const struct cpumask *mask)
  1989. {
  1990. struct irq_cfg *cfg;
  1991. struct irte irte;
  1992. unsigned int dest;
  1993. unsigned int irq;
  1994. int ret = -1;
  1995. if (!cpumask_intersects(mask, cpu_online_mask))
  1996. return ret;
  1997. irq = desc->irq;
  1998. if (get_irte(irq, &irte))
  1999. return ret;
  2000. cfg = desc->chip_data;
  2001. if (assign_irq_vector(irq, cfg, mask))
  2002. return ret;
  2003. dest = apic->cpu_mask_to_apicid_and(cfg->domain, mask);
  2004. irte.vector = cfg->vector;
  2005. irte.dest_id = IRTE_DEST(dest);
  2006. /*
  2007. * Modified the IRTE and flushes the Interrupt entry cache.
  2008. */
  2009. modify_irte(irq, &irte);
  2010. if (cfg->move_in_progress)
  2011. send_cleanup_vector(cfg);
  2012. cpumask_copy(desc->affinity, mask);
  2013. return 0;
  2014. }
  2015. /*
  2016. * Migrates the IRQ destination in the process context.
  2017. */
  2018. static int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
  2019. const struct cpumask *mask)
  2020. {
  2021. return migrate_ioapic_irq_desc(desc, mask);
  2022. }
  2023. static int set_ir_ioapic_affinity_irq(unsigned int irq,
  2024. const struct cpumask *mask)
  2025. {
  2026. struct irq_desc *desc = irq_to_desc(irq);
  2027. return set_ir_ioapic_affinity_irq_desc(desc, mask);
  2028. }
  2029. #else
  2030. static inline int set_ir_ioapic_affinity_irq_desc(struct irq_desc *desc,
  2031. const struct cpumask *mask)
  2032. {
  2033. return 0;
  2034. }
  2035. #endif
  2036. asmlinkage void smp_irq_move_cleanup_interrupt(void)
  2037. {
  2038. unsigned vector, me;
  2039. ack_APIC_irq();
  2040. exit_idle();
  2041. irq_enter();
  2042. me = smp_processor_id();
  2043. for (vector = FIRST_EXTERNAL_VECTOR; vector < NR_VECTORS; vector++) {
  2044. unsigned int irq;
  2045. unsigned int irr;
  2046. struct irq_desc *desc;
  2047. struct irq_cfg *cfg;
  2048. irq = __get_cpu_var(vector_irq)[vector];
  2049. if (irq == -1)
  2050. continue;
  2051. desc = irq_to_desc(irq);
  2052. if (!desc)
  2053. continue;
  2054. cfg = irq_cfg(irq);
  2055. raw_spin_lock(&desc->lock);
  2056. if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
  2057. goto unlock;
  2058. irr = apic_read(APIC_IRR + (vector / 32 * 0x10));
  2059. /*
  2060. * Check if the vector that needs to be cleanedup is
  2061. * registered at the cpu's IRR. If so, then this is not
  2062. * the best time to clean it up. Lets clean it up in the
  2063. * next attempt by sending another IRQ_MOVE_CLEANUP_VECTOR
  2064. * to myself.
  2065. */
  2066. if (irr & (1 << (vector % 32))) {
  2067. apic->send_IPI_self(IRQ_MOVE_CLEANUP_VECTOR);
  2068. goto unlock;
  2069. }
  2070. __get_cpu_var(vector_irq)[vector] = -1;
  2071. unlock:
  2072. raw_spin_unlock(&desc->lock);
  2073. }
  2074. irq_exit();
  2075. }
  2076. static void __irq_complete_move(struct irq_desc **descp, unsigned vector)
  2077. {
  2078. struct irq_desc *desc = *descp;
  2079. struct irq_cfg *cfg = desc->chip_data;
  2080. unsigned me;
  2081. if (likely(!cfg->move_in_progress))
  2082. return;
  2083. me = smp_processor_id();
  2084. if (vector == cfg->vector && cpumask_test_cpu(me, cfg->domain))
  2085. send_cleanup_vector(cfg);
  2086. }
  2087. static void irq_complete_move(struct irq_desc **descp)
  2088. {
  2089. __irq_complete_move(descp, ~get_irq_regs()->orig_ax);
  2090. }
  2091. void irq_force_complete_move(int irq)
  2092. {
  2093. struct irq_desc *desc = irq_to_desc(irq);
  2094. struct irq_cfg *cfg = desc->chip_data;
  2095. __irq_complete_move(&desc, cfg->vector);
  2096. }
  2097. #else
  2098. static inline void irq_complete_move(struct irq_desc **descp) {}
  2099. #endif
  2100. static void ack_apic_edge(unsigned int irq)
  2101. {
  2102. struct irq_desc *desc = irq_to_desc(irq);
  2103. irq_complete_move(&desc);
  2104. move_native_irq(irq);
  2105. ack_APIC_irq();
  2106. }
  2107. atomic_t irq_mis_count;
  2108. /*
  2109. * IO-APIC versions below 0x20 don't support EOI register.
  2110. * For the record, here is the information about various versions:
  2111. * 0Xh 82489DX
  2112. * 1Xh I/OAPIC or I/O(x)APIC which are not PCI 2.2 Compliant
  2113. * 2Xh I/O(x)APIC which is PCI 2.2 Compliant
  2114. * 30h-FFh Reserved
  2115. *
  2116. * Some of the Intel ICH Specs (ICH2 to ICH5) documents the io-apic
  2117. * version as 0x2. This is an error with documentation and these ICH chips
  2118. * use io-apic's of version 0x20.
  2119. *
  2120. * For IO-APIC's with EOI register, we use that to do an explicit EOI.
  2121. * Otherwise, we simulate the EOI message manually by changing the trigger
  2122. * mode to edge and then back to level, with RTE being masked during this.
  2123. */
  2124. static void __eoi_ioapic_irq(unsigned int irq, struct irq_cfg *cfg)
  2125. {
  2126. struct irq_pin_list *entry;
  2127. for_each_irq_pin(entry, cfg->irq_2_pin) {
  2128. if (mp_ioapics[entry->apic].apicver >= 0x20) {
  2129. /*
  2130. * Intr-remapping uses pin number as the virtual vector
  2131. * in the RTE. Actual vector is programmed in
  2132. * intr-remapping table entry. Hence for the io-apic
  2133. * EOI we use the pin number.
  2134. */
  2135. if (irq_remapped(irq))
  2136. io_apic_eoi(entry->apic, entry->pin);
  2137. else
  2138. io_apic_eoi(entry->apic, cfg->vector);
  2139. } else {
  2140. __mask_and_edge_IO_APIC_irq(entry);
  2141. __unmask_and_level_IO_APIC_irq(entry);
  2142. }
  2143. }
  2144. }
  2145. static void eoi_ioapic_irq(struct irq_desc *desc)
  2146. {
  2147. struct irq_cfg *cfg;
  2148. unsigned long flags;
  2149. unsigned int irq;
  2150. irq = desc->irq;
  2151. cfg = desc->chip_data;
  2152. spin_lock_irqsave(&ioapic_lock, flags);
  2153. __eoi_ioapic_irq(irq, cfg);
  2154. spin_unlock_irqrestore(&ioapic_lock, flags);
  2155. }
  2156. static void ack_apic_level(unsigned int irq)
  2157. {
  2158. struct irq_desc *desc = irq_to_desc(irq);
  2159. unsigned long v;
  2160. int i;
  2161. struct irq_cfg *cfg;
  2162. int do_unmask_irq = 0;
  2163. irq_complete_move(&desc);
  2164. #ifdef CONFIG_GENERIC_PENDING_IRQ
  2165. /* If we are moving the irq we need to mask it */
  2166. if (unlikely(desc->status & IRQ_MOVE_PENDING)) {
  2167. do_unmask_irq = 1;
  2168. mask_IO_APIC_irq_desc(desc);
  2169. }
  2170. #endif
  2171. /*
  2172. * It appears there is an erratum which affects at least version 0x11
  2173. * of I/O APIC (that's the 82093AA and cores integrated into various
  2174. * chipsets). Under certain conditions a level-triggered interrupt is
  2175. * erroneously delivered as edge-triggered one but the respective IRR
  2176. * bit gets set nevertheless. As a result the I/O unit expects an EOI
  2177. * message but it will never arrive and further interrupts are blocked
  2178. * from the source. The exact reason is so far unknown, but the
  2179. * phenomenon was observed when two consecutive interrupt requests
  2180. * from a given source get delivered to the same CPU and the source is
  2181. * temporarily disabled in between.
  2182. *
  2183. * A workaround is to simulate an EOI message manually. We achieve it
  2184. * by setting the trigger mode to edge and then to level when the edge
  2185. * trigger mode gets detected in the TMR of a local APIC for a
  2186. * level-triggered interrupt. We mask the source for the time of the
  2187. * operation to prevent an edge-triggered interrupt escaping meanwhile.
  2188. * The idea is from Manfred Spraul. --macro
  2189. *
  2190. * Also in the case when cpu goes offline, fixup_irqs() will forward
  2191. * any unhandled interrupt on the offlined cpu to the new cpu
  2192. * destination that is handling the corresponding interrupt. This
  2193. * interrupt forwarding is done via IPI's. Hence, in this case also
  2194. * level-triggered io-apic interrupt will be seen as an edge
  2195. * interrupt in the IRR. And we can't rely on the cpu's EOI
  2196. * to be broadcasted to the IO-APIC's which will clear the remoteIRR
  2197. * corresponding to the level-triggered interrupt. Hence on IO-APIC's
  2198. * supporting EOI register, we do an explicit EOI to clear the
  2199. * remote IRR and on IO-APIC's which don't have an EOI register,
  2200. * we use the above logic (mask+edge followed by unmask+level) from
  2201. * Manfred Spraul to clear the remote IRR.
  2202. */
  2203. cfg = desc->chip_data;
  2204. i = cfg->vector;
  2205. v = apic_read(APIC_TMR + ((i & ~0x1f) >> 1));
  2206. /*
  2207. * We must acknowledge the irq before we move it or the acknowledge will
  2208. * not propagate properly.
  2209. */
  2210. ack_APIC_irq();
  2211. /*
  2212. * Tail end of clearing remote IRR bit (either by delivering the EOI
  2213. * message via io-apic EOI register write or simulating it using
  2214. * mask+edge followed by unnask+level logic) manually when the
  2215. * level triggered interrupt is seen as the edge triggered interrupt
  2216. * at the cpu.
  2217. */
  2218. if (!(v & (1 << (i & 0x1f)))) {
  2219. atomic_inc(&irq_mis_count);
  2220. eoi_ioapic_irq(desc);
  2221. }
  2222. /* Now we can move and renable the irq */
  2223. if (unlikely(do_unmask_irq)) {
  2224. /* Only migrate the irq if the ack has been received.
  2225. *
  2226. * On rare occasions the broadcast level triggered ack gets
  2227. * delayed going to ioapics, and if we reprogram the
  2228. * vector while Remote IRR is still set the irq will never
  2229. * fire again.
  2230. *
  2231. * To prevent this scenario we read the Remote IRR bit
  2232. * of the ioapic. This has two effects.
  2233. * - On any sane system the read of the ioapic will
  2234. * flush writes (and acks) going to the ioapic from
  2235. * this cpu.
  2236. * - We get to see if the ACK has actually been delivered.
  2237. *
  2238. * Based on failed experiments of reprogramming the
  2239. * ioapic entry from outside of irq context starting
  2240. * with masking the ioapic entry and then polling until
  2241. * Remote IRR was clear before reprogramming the
  2242. * ioapic I don't trust the Remote IRR bit to be
  2243. * completey accurate.
  2244. *
  2245. * However there appears to be no other way to plug
  2246. * this race, so if the Remote IRR bit is not
  2247. * accurate and is causing problems then it is a hardware bug
  2248. * and you can go talk to the chipset vendor about it.
  2249. */
  2250. cfg = desc->chip_data;
  2251. if (!io_apic_level_ack_pending(cfg))
  2252. move_masked_irq(irq);
  2253. unmask_IO_APIC_irq_desc(desc);
  2254. }
  2255. }
  2256. #ifdef CONFIG_INTR_REMAP
  2257. static void ir_ack_apic_edge(unsigned int irq)
  2258. {
  2259. ack_APIC_irq();
  2260. }
  2261. static void ir_ack_apic_level(unsigned int irq)
  2262. {
  2263. struct irq_desc *desc = irq_to_desc(irq);
  2264. ack_APIC_irq();
  2265. eoi_ioapic_irq(desc);
  2266. }
  2267. #endif /* CONFIG_INTR_REMAP */
  2268. static struct irq_chip ioapic_chip __read_mostly = {
  2269. .name = "IO-APIC",
  2270. .startup = startup_ioapic_irq,
  2271. .mask = mask_IO_APIC_irq,
  2272. .unmask = unmask_IO_APIC_irq,
  2273. .ack = ack_apic_edge,
  2274. .eoi = ack_apic_level,
  2275. #ifdef CONFIG_SMP
  2276. .set_affinity = set_ioapic_affinity_irq,
  2277. #endif
  2278. .retrigger = ioapic_retrigger_irq,
  2279. };
  2280. static struct irq_chip ir_ioapic_chip __read_mostly = {
  2281. .name = "IR-IO-APIC",
  2282. .startup = startup_ioapic_irq,
  2283. .mask = mask_IO_APIC_irq,
  2284. .unmask = unmask_IO_APIC_irq,
  2285. #ifdef CONFIG_INTR_REMAP
  2286. .ack = ir_ack_apic_edge,
  2287. .eoi = ir_ack_apic_level,
  2288. #ifdef CONFIG_SMP
  2289. .set_affinity = set_ir_ioapic_affinity_irq,
  2290. #endif
  2291. #endif
  2292. .retrigger = ioapic_retrigger_irq,
  2293. };
  2294. static inline void init_IO_APIC_traps(void)
  2295. {
  2296. int irq;
  2297. struct irq_desc *desc;
  2298. struct irq_cfg *cfg;
  2299. /*
  2300. * NOTE! The local APIC isn't very good at handling
  2301. * multiple interrupts at the same interrupt level.
  2302. * As the interrupt level is determined by taking the
  2303. * vector number and shifting that right by 4, we
  2304. * want to spread these out a bit so that they don't
  2305. * all fall in the same interrupt level.
  2306. *
  2307. * Also, we've got to be careful not to trash gate
  2308. * 0x80, because int 0x80 is hm, kind of importantish. ;)
  2309. */
  2310. for_each_irq_desc(irq, desc) {
  2311. cfg = desc->chip_data;
  2312. if (IO_APIC_IRQ(irq) && cfg && !cfg->vector) {
  2313. /*
  2314. * Hmm.. We don't have an entry for this,
  2315. * so default to an old-fashioned 8259
  2316. * interrupt if we can..
  2317. */
  2318. if (irq < nr_legacy_irqs)
  2319. make_8259A_irq(irq);
  2320. else
  2321. /* Strange. Oh, well.. */
  2322. desc->chip = &no_irq_chip;
  2323. }
  2324. }
  2325. }
  2326. /*
  2327. * The local APIC irq-chip implementation:
  2328. */
  2329. static void mask_lapic_irq(unsigned int irq)
  2330. {
  2331. unsigned long v;
  2332. v = apic_read(APIC_LVT0);
  2333. apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
  2334. }
  2335. static void unmask_lapic_irq(unsigned int irq)
  2336. {
  2337. unsigned long v;
  2338. v = apic_read(APIC_LVT0);
  2339. apic_write(APIC_LVT0, v & ~APIC_LVT_MASKED);
  2340. }
  2341. static void ack_lapic_irq(unsigned int irq)
  2342. {
  2343. ack_APIC_irq();
  2344. }
  2345. static struct irq_chip lapic_chip __read_mostly = {
  2346. .name = "local-APIC",
  2347. .mask = mask_lapic_irq,
  2348. .unmask = unmask_lapic_irq,
  2349. .ack = ack_lapic_irq,
  2350. };
  2351. static void lapic_register_intr(int irq, struct irq_desc *desc)
  2352. {
  2353. desc->status &= ~IRQ_LEVEL;
  2354. set_irq_chip_and_handler_name(irq, &lapic_chip, handle_edge_irq,
  2355. "edge");
  2356. }
  2357. static void __init setup_nmi(void)
  2358. {
  2359. /*
  2360. * Dirty trick to enable the NMI watchdog ...
  2361. * We put the 8259A master into AEOI mode and
  2362. * unmask on all local APICs LVT0 as NMI.
  2363. *
  2364. * The idea to use the 8259A in AEOI mode ('8259A Virtual Wire')
  2365. * is from Maciej W. Rozycki - so we do not have to EOI from
  2366. * the NMI handler or the timer interrupt.
  2367. */
  2368. apic_printk(APIC_VERBOSE, KERN_INFO "activating NMI Watchdog ...");
  2369. enable_NMI_through_LVT0();
  2370. apic_printk(APIC_VERBOSE, " done.\n");
  2371. }
  2372. /*
  2373. * This looks a bit hackish but it's about the only one way of sending
  2374. * a few INTA cycles to 8259As and any associated glue logic. ICR does
  2375. * not support the ExtINT mode, unfortunately. We need to send these
  2376. * cycles as some i82489DX-based boards have glue logic that keeps the
  2377. * 8259A interrupt line asserted until INTA. --macro
  2378. */
  2379. static inline void __init unlock_ExtINT_logic(void)
  2380. {
  2381. int apic, pin, i;
  2382. struct IO_APIC_route_entry entry0, entry1;
  2383. unsigned char save_control, save_freq_select;
  2384. pin = find_isa_irq_pin(8, mp_INT);
  2385. if (pin == -1) {
  2386. WARN_ON_ONCE(1);
  2387. return;
  2388. }
  2389. apic = find_isa_irq_apic(8, mp_INT);
  2390. if (apic == -1) {
  2391. WARN_ON_ONCE(1);
  2392. return;
  2393. }
  2394. entry0 = ioapic_read_entry(apic, pin);
  2395. clear_IO_APIC_pin(apic, pin);
  2396. memset(&entry1, 0, sizeof(entry1));
  2397. entry1.dest_mode = 0; /* physical delivery */
  2398. entry1.mask = 0; /* unmask IRQ now */
  2399. entry1.dest = hard_smp_processor_id();
  2400. entry1.delivery_mode = dest_ExtINT;
  2401. entry1.polarity = entry0.polarity;
  2402. entry1.trigger = 0;
  2403. entry1.vector = 0;
  2404. ioapic_write_entry(apic, pin, entry1);
  2405. save_control = CMOS_READ(RTC_CONTROL);
  2406. save_freq_select = CMOS_READ(RTC_FREQ_SELECT);
  2407. CMOS_WRITE((save_freq_select & ~RTC_RATE_SELECT) | 0x6,
  2408. RTC_FREQ_SELECT);
  2409. CMOS_WRITE(save_control | RTC_PIE, RTC_CONTROL);
  2410. i = 100;
  2411. while (i-- > 0) {
  2412. mdelay(10);
  2413. if ((CMOS_READ(RTC_INTR_FLAGS) & RTC_PF) == RTC_PF)
  2414. i -= 10;
  2415. }
  2416. CMOS_WRITE(save_control, RTC_CONTROL);
  2417. CMOS_WRITE(save_freq_select, RTC_FREQ_SELECT);
  2418. clear_IO_APIC_pin(apic, pin);
  2419. ioapic_write_entry(apic, pin, entry0);
  2420. }
  2421. static int disable_timer_pin_1 __initdata;
  2422. /* Actually the next is obsolete, but keep it for paranoid reasons -AK */
  2423. static int __init disable_timer_pin_setup(char *arg)
  2424. {
  2425. disable_timer_pin_1 = 1;
  2426. return 0;
  2427. }
  2428. early_param("disable_timer_pin_1", disable_timer_pin_setup);
  2429. int timer_through_8259 __initdata;
  2430. /*
  2431. * This code may look a bit paranoid, but it's supposed to cooperate with
  2432. * a wide range of boards and BIOS bugs. Fortunately only the timer IRQ
  2433. * is so screwy. Thanks to Brian Perkins for testing/hacking this beast
  2434. * fanatically on his truly buggy board.
  2435. *
  2436. * FIXME: really need to revamp this for all platforms.
  2437. */
  2438. static inline void __init check_timer(void)
  2439. {
  2440. struct irq_desc *desc = irq_to_desc(0);
  2441. struct irq_cfg *cfg = desc->chip_data;
  2442. int node = cpu_to_node(boot_cpu_id);
  2443. int apic1, pin1, apic2, pin2;
  2444. unsigned long flags;
  2445. int no_pin1 = 0;
  2446. local_irq_save(flags);
  2447. /*
  2448. * get/set the timer IRQ vector:
  2449. */
  2450. disable_8259A_irq(0);
  2451. assign_irq_vector(0, cfg, apic->target_cpus());
  2452. /*
  2453. * As IRQ0 is to be enabled in the 8259A, the virtual
  2454. * wire has to be disabled in the local APIC. Also
  2455. * timer interrupts need to be acknowledged manually in
  2456. * the 8259A for the i82489DX when using the NMI
  2457. * watchdog as that APIC treats NMIs as level-triggered.
  2458. * The AEOI mode will finish them in the 8259A
  2459. * automatically.
  2460. */
  2461. apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_EXTINT);
  2462. init_8259A(1);
  2463. #ifdef CONFIG_X86_32
  2464. {
  2465. unsigned int ver;
  2466. ver = apic_read(APIC_LVR);
  2467. ver = GET_APIC_VERSION(ver);
  2468. timer_ack = (nmi_watchdog == NMI_IO_APIC && !APIC_INTEGRATED(ver));
  2469. }
  2470. #endif
  2471. pin1 = find_isa_irq_pin(0, mp_INT);
  2472. apic1 = find_isa_irq_apic(0, mp_INT);
  2473. pin2 = ioapic_i8259.pin;
  2474. apic2 = ioapic_i8259.apic;
  2475. apic_printk(APIC_QUIET, KERN_INFO "..TIMER: vector=0x%02X "
  2476. "apic1=%d pin1=%d apic2=%d pin2=%d\n",
  2477. cfg->vector, apic1, pin1, apic2, pin2);
  2478. /*
  2479. * Some BIOS writers are clueless and report the ExtINTA
  2480. * I/O APIC input from the cascaded 8259A as the timer
  2481. * interrupt input. So just in case, if only one pin
  2482. * was found above, try it both directly and through the
  2483. * 8259A.
  2484. */
  2485. if (pin1 == -1) {
  2486. if (intr_remapping_enabled)
  2487. panic("BIOS bug: timer not connected to IO-APIC");
  2488. pin1 = pin2;
  2489. apic1 = apic2;
  2490. no_pin1 = 1;
  2491. } else if (pin2 == -1) {
  2492. pin2 = pin1;
  2493. apic2 = apic1;
  2494. }
  2495. if (pin1 != -1) {
  2496. /*
  2497. * Ok, does IRQ0 through the IOAPIC work?
  2498. */
  2499. if (no_pin1) {
  2500. add_pin_to_irq_node(cfg, node, apic1, pin1);
  2501. setup_timer_IRQ0_pin(apic1, pin1, cfg->vector);
  2502. } else {
  2503. /* for edge trigger, setup_IO_APIC_irq already
  2504. * leave it unmasked.
  2505. * so only need to unmask if it is level-trigger
  2506. * do we really have level trigger timer?
  2507. */
  2508. int idx;
  2509. idx = find_irq_entry(apic1, pin1, mp_INT);
  2510. if (idx != -1 && irq_trigger(idx))
  2511. unmask_IO_APIC_irq_desc(desc);
  2512. }
  2513. if (timer_irq_works()) {
  2514. if (nmi_watchdog == NMI_IO_APIC) {
  2515. setup_nmi();
  2516. enable_8259A_irq(0);
  2517. }
  2518. if (disable_timer_pin_1 > 0)
  2519. clear_IO_APIC_pin(0, pin1);
  2520. goto out;
  2521. }
  2522. if (intr_remapping_enabled)
  2523. panic("timer doesn't work through Interrupt-remapped IO-APIC");
  2524. local_irq_disable();
  2525. clear_IO_APIC_pin(apic1, pin1);
  2526. if (!no_pin1)
  2527. apic_printk(APIC_QUIET, KERN_ERR "..MP-BIOS bug: "
  2528. "8254 timer not connected to IO-APIC\n");
  2529. apic_printk(APIC_QUIET, KERN_INFO "...trying to set up timer "
  2530. "(IRQ0) through the 8259A ...\n");
  2531. apic_printk(APIC_QUIET, KERN_INFO
  2532. "..... (found apic %d pin %d) ...\n", apic2, pin2);
  2533. /*
  2534. * legacy devices should be connected to IO APIC #0
  2535. */
  2536. replace_pin_at_irq_node(cfg, node, apic1, pin1, apic2, pin2);
  2537. setup_timer_IRQ0_pin(apic2, pin2, cfg->vector);
  2538. enable_8259A_irq(0);
  2539. if (timer_irq_works()) {
  2540. apic_printk(APIC_QUIET, KERN_INFO "....... works.\n");
  2541. timer_through_8259 = 1;
  2542. if (nmi_watchdog == NMI_IO_APIC) {
  2543. disable_8259A_irq(0);
  2544. setup_nmi();
  2545. enable_8259A_irq(0);
  2546. }
  2547. goto out;
  2548. }
  2549. /*
  2550. * Cleanup, just in case ...
  2551. */
  2552. local_irq_disable();
  2553. disable_8259A_irq(0);
  2554. clear_IO_APIC_pin(apic2, pin2);
  2555. apic_printk(APIC_QUIET, KERN_INFO "....... failed.\n");
  2556. }
  2557. if (nmi_watchdog == NMI_IO_APIC) {
  2558. apic_printk(APIC_QUIET, KERN_WARNING "timer doesn't work "
  2559. "through the IO-APIC - disabling NMI Watchdog!\n");
  2560. nmi_watchdog = NMI_NONE;
  2561. }
  2562. #ifdef CONFIG_X86_32
  2563. timer_ack = 0;
  2564. #endif
  2565. apic_printk(APIC_QUIET, KERN_INFO
  2566. "...trying to set up timer as Virtual Wire IRQ...\n");
  2567. lapic_register_intr(0, desc);
  2568. apic_write(APIC_LVT0, APIC_DM_FIXED | cfg->vector); /* Fixed mode */
  2569. enable_8259A_irq(0);
  2570. if (timer_irq_works()) {
  2571. apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
  2572. goto out;
  2573. }
  2574. local_irq_disable();
  2575. disable_8259A_irq(0);
  2576. apic_write(APIC_LVT0, APIC_LVT_MASKED | APIC_DM_FIXED | cfg->vector);
  2577. apic_printk(APIC_QUIET, KERN_INFO "..... failed.\n");
  2578. apic_printk(APIC_QUIET, KERN_INFO
  2579. "...trying to set up timer as ExtINT IRQ...\n");
  2580. init_8259A(0);
  2581. make_8259A_irq(0);
  2582. apic_write(APIC_LVT0, APIC_DM_EXTINT);
  2583. unlock_ExtINT_logic();
  2584. if (timer_irq_works()) {
  2585. apic_printk(APIC_QUIET, KERN_INFO "..... works.\n");
  2586. goto out;
  2587. }
  2588. local_irq_disable();
  2589. apic_printk(APIC_QUIET, KERN_INFO "..... failed :(.\n");
  2590. panic("IO-APIC + timer doesn't work! Boot with apic=debug and send a "
  2591. "report. Then try booting with the 'noapic' option.\n");
  2592. out:
  2593. local_irq_restore(flags);
  2594. }
  2595. /*
  2596. * Traditionally ISA IRQ2 is the cascade IRQ, and is not available
  2597. * to devices. However there may be an I/O APIC pin available for
  2598. * this interrupt regardless. The pin may be left unconnected, but
  2599. * typically it will be reused as an ExtINT cascade interrupt for
  2600. * the master 8259A. In the MPS case such a pin will normally be
  2601. * reported as an ExtINT interrupt in the MP table. With ACPI
  2602. * there is no provision for ExtINT interrupts, and in the absence
  2603. * of an override it would be treated as an ordinary ISA I/O APIC
  2604. * interrupt, that is edge-triggered and unmasked by default. We
  2605. * used to do this, but it caused problems on some systems because
  2606. * of the NMI watchdog and sometimes IRQ0 of the 8254 timer using
  2607. * the same ExtINT cascade interrupt to drive the local APIC of the
  2608. * bootstrap processor. Therefore we refrain from routing IRQ2 to
  2609. * the I/O APIC in all cases now. No actual device should request
  2610. * it anyway. --macro
  2611. */
  2612. #define PIC_IRQS (1UL << PIC_CASCADE_IR)
  2613. void __init setup_IO_APIC(void)
  2614. {
  2615. /*
  2616. * calling enable_IO_APIC() is moved to setup_local_APIC for BP
  2617. */
  2618. io_apic_irqs = nr_legacy_irqs ? ~PIC_IRQS : ~0UL;
  2619. apic_printk(APIC_VERBOSE, "ENABLING IO-APIC IRQs\n");
  2620. /*
  2621. * Set up IO-APIC IRQ routing.
  2622. */
  2623. x86_init.mpparse.setup_ioapic_ids();
  2624. sync_Arb_IDs();
  2625. setup_IO_APIC_irqs();
  2626. init_IO_APIC_traps();
  2627. if (nr_legacy_irqs)
  2628. check_timer();
  2629. }
  2630. /*
  2631. * Called after all the initialization is done. If we didnt find any
  2632. * APIC bugs then we can allow the modify fast path
  2633. */
  2634. static int __init io_apic_bug_finalize(void)
  2635. {
  2636. if (sis_apic_bug == -1)
  2637. sis_apic_bug = 0;
  2638. return 0;
  2639. }
  2640. late_initcall(io_apic_bug_finalize);
  2641. struct sysfs_ioapic_data {
  2642. struct sys_device dev;
  2643. struct IO_APIC_route_entry entry[0];
  2644. };
  2645. static struct sysfs_ioapic_data * mp_ioapic_data[MAX_IO_APICS];
  2646. static int ioapic_suspend(struct sys_device *dev, pm_message_t state)
  2647. {
  2648. struct IO_APIC_route_entry *entry;
  2649. struct sysfs_ioapic_data *data;
  2650. int i;
  2651. data = container_of(dev, struct sysfs_ioapic_data, dev);
  2652. entry = data->entry;
  2653. for (i = 0; i < nr_ioapic_registers[dev->id]; i ++, entry ++ )
  2654. *entry = ioapic_read_entry(dev->id, i);
  2655. return 0;
  2656. }
  2657. static int ioapic_resume(struct sys_device *dev)
  2658. {
  2659. struct IO_APIC_route_entry *entry;
  2660. struct sysfs_ioapic_data *data;
  2661. unsigned long flags;
  2662. union IO_APIC_reg_00 reg_00;
  2663. int i;
  2664. data = container_of(dev, struct sysfs_ioapic_data, dev);
  2665. entry = data->entry;
  2666. spin_lock_irqsave(&ioapic_lock, flags);
  2667. reg_00.raw = io_apic_read(dev->id, 0);
  2668. if (reg_00.bits.ID != mp_ioapics[dev->id].apicid) {
  2669. reg_00.bits.ID = mp_ioapics[dev->id].apicid;
  2670. io_apic_write(dev->id, 0, reg_00.raw);
  2671. }
  2672. spin_unlock_irqrestore(&ioapic_lock, flags);
  2673. for (i = 0; i < nr_ioapic_registers[dev->id]; i++)
  2674. ioapic_write_entry(dev->id, i, entry[i]);
  2675. return 0;
  2676. }
  2677. static struct sysdev_class ioapic_sysdev_class = {
  2678. .name = "ioapic",
  2679. .suspend = ioapic_suspend,
  2680. .resume = ioapic_resume,
  2681. };
  2682. static int __init ioapic_init_sysfs(void)
  2683. {
  2684. struct sys_device * dev;
  2685. int i, size, error;
  2686. error = sysdev_class_register(&ioapic_sysdev_class);
  2687. if (error)
  2688. return error;
  2689. for (i = 0; i < nr_ioapics; i++ ) {
  2690. size = sizeof(struct sys_device) + nr_ioapic_registers[i]
  2691. * sizeof(struct IO_APIC_route_entry);
  2692. mp_ioapic_data[i] = kzalloc(size, GFP_KERNEL);
  2693. if (!mp_ioapic_data[i]) {
  2694. printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
  2695. continue;
  2696. }
  2697. dev = &mp_ioapic_data[i]->dev;
  2698. dev->id = i;
  2699. dev->cls = &ioapic_sysdev_class;
  2700. error = sysdev_register(dev);
  2701. if (error) {
  2702. kfree(mp_ioapic_data[i]);
  2703. mp_ioapic_data[i] = NULL;
  2704. printk(KERN_ERR "Can't suspend/resume IOAPIC %d\n", i);
  2705. continue;
  2706. }
  2707. }
  2708. return 0;
  2709. }
  2710. device_initcall(ioapic_init_sysfs);
  2711. /*
  2712. * Dynamic irq allocate and deallocation
  2713. */
  2714. unsigned int create_irq_nr(unsigned int irq_want, int node)
  2715. {
  2716. /* Allocate an unused irq */
  2717. unsigned int irq;
  2718. unsigned int new;
  2719. unsigned long flags;
  2720. struct irq_cfg *cfg_new = NULL;
  2721. struct irq_desc *desc_new = NULL;
  2722. irq = 0;
  2723. if (irq_want < nr_irqs_gsi)
  2724. irq_want = nr_irqs_gsi;
  2725. spin_lock_irqsave(&vector_lock, flags);
  2726. for (new = irq_want; new < nr_irqs; new++) {
  2727. desc_new = irq_to_desc_alloc_node(new, node);
  2728. if (!desc_new) {
  2729. printk(KERN_INFO "can not get irq_desc for %d\n", new);
  2730. continue;
  2731. }
  2732. cfg_new = desc_new->chip_data;
  2733. if (cfg_new->vector != 0)
  2734. continue;
  2735. desc_new = move_irq_desc(desc_new, node);
  2736. cfg_new = desc_new->chip_data;
  2737. if (__assign_irq_vector(new, cfg_new, apic->target_cpus()) == 0)
  2738. irq = new;
  2739. break;
  2740. }
  2741. spin_unlock_irqrestore(&vector_lock, flags);
  2742. if (irq > 0) {
  2743. dynamic_irq_init(irq);
  2744. /* restore it, in case dynamic_irq_init clear it */
  2745. if (desc_new)
  2746. desc_new->chip_data = cfg_new;
  2747. }
  2748. return irq;
  2749. }
  2750. int create_irq(void)
  2751. {
  2752. int node = cpu_to_node(boot_cpu_id);
  2753. unsigned int irq_want;
  2754. int irq;
  2755. irq_want = nr_irqs_gsi;
  2756. irq = create_irq_nr(irq_want, node);
  2757. if (irq == 0)
  2758. irq = -1;
  2759. return irq;
  2760. }
  2761. void destroy_irq(unsigned int irq)
  2762. {
  2763. unsigned long flags;
  2764. struct irq_cfg *cfg;
  2765. struct irq_desc *desc;
  2766. /* store it, in case dynamic_irq_cleanup clear it */
  2767. desc = irq_to_desc(irq);
  2768. cfg = desc->chip_data;
  2769. dynamic_irq_cleanup(irq);
  2770. /* connect back irq_cfg */
  2771. desc->chip_data = cfg;
  2772. free_irte(irq);
  2773. spin_lock_irqsave(&vector_lock, flags);
  2774. __clear_irq_vector(irq, cfg);
  2775. spin_unlock_irqrestore(&vector_lock, flags);
  2776. }
  2777. /*
  2778. * MSI message composition
  2779. */
  2780. #ifdef CONFIG_PCI_MSI
  2781. static int msi_compose_msg(struct pci_dev *pdev, unsigned int irq,
  2782. struct msi_msg *msg, u8 hpet_id)
  2783. {
  2784. struct irq_cfg *cfg;
  2785. int err;
  2786. unsigned dest;
  2787. if (disable_apic)
  2788. return -ENXIO;
  2789. cfg = irq_cfg(irq);
  2790. err = assign_irq_vector(irq, cfg, apic->target_cpus());
  2791. if (err)
  2792. return err;
  2793. dest = apic->cpu_mask_to_apicid_and(cfg->domain, apic->target_cpus());
  2794. if (irq_remapped(irq)) {
  2795. struct irte irte;
  2796. int ir_index;
  2797. u16 sub_handle;
  2798. ir_index = map_irq_to_irte_handle(irq, &sub_handle);
  2799. BUG_ON(ir_index == -1);
  2800. memset (&irte, 0, sizeof(irte));
  2801. irte.present = 1;
  2802. irte.dst_mode = apic->irq_dest_mode;
  2803. irte.trigger_mode = 0; /* edge */
  2804. irte.dlvry_mode = apic->irq_delivery_mode;
  2805. irte.vector = cfg->vector;
  2806. irte.dest_id = IRTE_DEST(dest);
  2807. /* Set source-id of interrupt request */
  2808. if (pdev)
  2809. set_msi_sid(&irte, pdev);
  2810. else
  2811. set_hpet_sid(&irte, hpet_id);
  2812. modify_irte(irq, &irte);
  2813. msg->address_hi = MSI_ADDR_BASE_HI;
  2814. msg->data = sub_handle;
  2815. msg->address_lo = MSI_ADDR_BASE_LO | MSI_ADDR_IR_EXT_INT |
  2816. MSI_ADDR_IR_SHV |
  2817. MSI_ADDR_IR_INDEX1(ir_index) |
  2818. MSI_ADDR_IR_INDEX2(ir_index);
  2819. } else {
  2820. if (x2apic_enabled())
  2821. msg->address_hi = MSI_ADDR_BASE_HI |
  2822. MSI_ADDR_EXT_DEST_ID(dest);
  2823. else
  2824. msg->address_hi = MSI_ADDR_BASE_HI;
  2825. msg->address_lo =
  2826. MSI_ADDR_BASE_LO |
  2827. ((apic->irq_dest_mode == 0) ?
  2828. MSI_ADDR_DEST_MODE_PHYSICAL:
  2829. MSI_ADDR_DEST_MODE_LOGICAL) |
  2830. ((apic->irq_delivery_mode != dest_LowestPrio) ?
  2831. MSI_ADDR_REDIRECTION_CPU:
  2832. MSI_ADDR_REDIRECTION_LOWPRI) |
  2833. MSI_ADDR_DEST_ID(dest);
  2834. msg->data =
  2835. MSI_DATA_TRIGGER_EDGE |
  2836. MSI_DATA_LEVEL_ASSERT |
  2837. ((apic->irq_delivery_mode != dest_LowestPrio) ?
  2838. MSI_DATA_DELIVERY_FIXED:
  2839. MSI_DATA_DELIVERY_LOWPRI) |
  2840. MSI_DATA_VECTOR(cfg->vector);
  2841. }
  2842. return err;
  2843. }
  2844. #ifdef CONFIG_SMP
  2845. static int set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
  2846. {
  2847. struct irq_desc *desc = irq_to_desc(irq);
  2848. struct irq_cfg *cfg;
  2849. struct msi_msg msg;
  2850. unsigned int dest;
  2851. if (set_desc_affinity(desc, mask, &dest))
  2852. return -1;
  2853. cfg = desc->chip_data;
  2854. read_msi_msg_desc(desc, &msg);
  2855. msg.data &= ~MSI_DATA_VECTOR_MASK;
  2856. msg.data |= MSI_DATA_VECTOR(cfg->vector);
  2857. msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
  2858. msg.address_lo |= MSI_ADDR_DEST_ID(dest);
  2859. write_msi_msg_desc(desc, &msg);
  2860. return 0;
  2861. }
  2862. #ifdef CONFIG_INTR_REMAP
  2863. /*
  2864. * Migrate the MSI irq to another cpumask. This migration is
  2865. * done in the process context using interrupt-remapping hardware.
  2866. */
  2867. static int
  2868. ir_set_msi_irq_affinity(unsigned int irq, const struct cpumask *mask)
  2869. {
  2870. struct irq_desc *desc = irq_to_desc(irq);
  2871. struct irq_cfg *cfg = desc->chip_data;
  2872. unsigned int dest;
  2873. struct irte irte;
  2874. if (get_irte(irq, &irte))
  2875. return -1;
  2876. if (set_desc_affinity(desc, mask, &dest))
  2877. return -1;
  2878. irte.vector = cfg->vector;
  2879. irte.dest_id = IRTE_DEST(dest);
  2880. /*
  2881. * atomically update the IRTE with the new destination and vector.
  2882. */
  2883. modify_irte(irq, &irte);
  2884. /*
  2885. * After this point, all the interrupts will start arriving
  2886. * at the new destination. So, time to cleanup the previous
  2887. * vector allocation.
  2888. */
  2889. if (cfg->move_in_progress)
  2890. send_cleanup_vector(cfg);
  2891. return 0;
  2892. }
  2893. #endif
  2894. #endif /* CONFIG_SMP */
  2895. /*
  2896. * IRQ Chip for MSI PCI/PCI-X/PCI-Express Devices,
  2897. * which implement the MSI or MSI-X Capability Structure.
  2898. */
  2899. static struct irq_chip msi_chip = {
  2900. .name = "PCI-MSI",
  2901. .unmask = unmask_msi_irq,
  2902. .mask = mask_msi_irq,
  2903. .ack = ack_apic_edge,
  2904. #ifdef CONFIG_SMP
  2905. .set_affinity = set_msi_irq_affinity,
  2906. #endif
  2907. .retrigger = ioapic_retrigger_irq,
  2908. };
  2909. static struct irq_chip msi_ir_chip = {
  2910. .name = "IR-PCI-MSI",
  2911. .unmask = unmask_msi_irq,
  2912. .mask = mask_msi_irq,
  2913. #ifdef CONFIG_INTR_REMAP
  2914. .ack = ir_ack_apic_edge,
  2915. #ifdef CONFIG_SMP
  2916. .set_affinity = ir_set_msi_irq_affinity,
  2917. #endif
  2918. #endif
  2919. .retrigger = ioapic_retrigger_irq,
  2920. };
  2921. /*
  2922. * Map the PCI dev to the corresponding remapping hardware unit
  2923. * and allocate 'nvec' consecutive interrupt-remapping table entries
  2924. * in it.
  2925. */
  2926. static int msi_alloc_irte(struct pci_dev *dev, int irq, int nvec)
  2927. {
  2928. struct intel_iommu *iommu;
  2929. int index;
  2930. iommu = map_dev_to_ir(dev);
  2931. if (!iommu) {
  2932. printk(KERN_ERR
  2933. "Unable to map PCI %s to iommu\n", pci_name(dev));
  2934. return -ENOENT;
  2935. }
  2936. index = alloc_irte(iommu, irq, nvec);
  2937. if (index < 0) {
  2938. printk(KERN_ERR
  2939. "Unable to allocate %d IRTE for PCI %s\n", nvec,
  2940. pci_name(dev));
  2941. return -ENOSPC;
  2942. }
  2943. return index;
  2944. }
  2945. static int setup_msi_irq(struct pci_dev *dev, struct msi_desc *msidesc, int irq)
  2946. {
  2947. int ret;
  2948. struct msi_msg msg;
  2949. ret = msi_compose_msg(dev, irq, &msg, -1);
  2950. if (ret < 0)
  2951. return ret;
  2952. set_irq_msi(irq, msidesc);
  2953. write_msi_msg(irq, &msg);
  2954. if (irq_remapped(irq)) {
  2955. struct irq_desc *desc = irq_to_desc(irq);
  2956. /*
  2957. * irq migration in process context
  2958. */
  2959. desc->status |= IRQ_MOVE_PCNTXT;
  2960. set_irq_chip_and_handler_name(irq, &msi_ir_chip, handle_edge_irq, "edge");
  2961. } else
  2962. set_irq_chip_and_handler_name(irq, &msi_chip, handle_edge_irq, "edge");
  2963. dev_printk(KERN_DEBUG, &dev->dev, "irq %d for MSI/MSI-X\n", irq);
  2964. return 0;
  2965. }
  2966. int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
  2967. {
  2968. unsigned int irq;
  2969. int ret, sub_handle;
  2970. struct msi_desc *msidesc;
  2971. unsigned int irq_want;
  2972. struct intel_iommu *iommu = NULL;
  2973. int index = 0;
  2974. int node;
  2975. /* x86 doesn't support multiple MSI yet */
  2976. if (type == PCI_CAP_ID_MSI && nvec > 1)
  2977. return 1;
  2978. node = dev_to_node(&dev->dev);
  2979. irq_want = nr_irqs_gsi;
  2980. sub_handle = 0;
  2981. list_for_each_entry(msidesc, &dev->msi_list, list) {
  2982. irq = create_irq_nr(irq_want, node);
  2983. if (irq == 0)
  2984. return -1;
  2985. irq_want = irq + 1;
  2986. if (!intr_remapping_enabled)
  2987. goto no_ir;
  2988. if (!sub_handle) {
  2989. /*
  2990. * allocate the consecutive block of IRTE's
  2991. * for 'nvec'
  2992. */
  2993. index = msi_alloc_irte(dev, irq, nvec);
  2994. if (index < 0) {
  2995. ret = index;
  2996. goto error;
  2997. }
  2998. } else {
  2999. iommu = map_dev_to_ir(dev);
  3000. if (!iommu) {
  3001. ret = -ENOENT;
  3002. goto error;
  3003. }
  3004. /*
  3005. * setup the mapping between the irq and the IRTE
  3006. * base index, the sub_handle pointing to the
  3007. * appropriate interrupt remap table entry.
  3008. */
  3009. set_irte_irq(irq, iommu, index, sub_handle);
  3010. }
  3011. no_ir:
  3012. ret = setup_msi_irq(dev, msidesc, irq);
  3013. if (ret < 0)
  3014. goto error;
  3015. sub_handle++;
  3016. }
  3017. return 0;
  3018. error:
  3019. destroy_irq(irq);
  3020. return ret;
  3021. }
  3022. void arch_teardown_msi_irq(unsigned int irq)
  3023. {
  3024. destroy_irq(irq);
  3025. }
  3026. #if defined (CONFIG_DMAR) || defined (CONFIG_INTR_REMAP)
  3027. #ifdef CONFIG_SMP
  3028. static int dmar_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
  3029. {
  3030. struct irq_desc *desc = irq_to_desc(irq);
  3031. struct irq_cfg *cfg;
  3032. struct msi_msg msg;
  3033. unsigned int dest;
  3034. if (set_desc_affinity(desc, mask, &dest))
  3035. return -1;
  3036. cfg = desc->chip_data;
  3037. dmar_msi_read(irq, &msg);
  3038. msg.data &= ~MSI_DATA_VECTOR_MASK;
  3039. msg.data |= MSI_DATA_VECTOR(cfg->vector);
  3040. msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
  3041. msg.address_lo |= MSI_ADDR_DEST_ID(dest);
  3042. dmar_msi_write(irq, &msg);
  3043. return 0;
  3044. }
  3045. #endif /* CONFIG_SMP */
  3046. static struct irq_chip dmar_msi_type = {
  3047. .name = "DMAR_MSI",
  3048. .unmask = dmar_msi_unmask,
  3049. .mask = dmar_msi_mask,
  3050. .ack = ack_apic_edge,
  3051. #ifdef CONFIG_SMP
  3052. .set_affinity = dmar_msi_set_affinity,
  3053. #endif
  3054. .retrigger = ioapic_retrigger_irq,
  3055. };
  3056. int arch_setup_dmar_msi(unsigned int irq)
  3057. {
  3058. int ret;
  3059. struct msi_msg msg;
  3060. ret = msi_compose_msg(NULL, irq, &msg, -1);
  3061. if (ret < 0)
  3062. return ret;
  3063. dmar_msi_write(irq, &msg);
  3064. set_irq_chip_and_handler_name(irq, &dmar_msi_type, handle_edge_irq,
  3065. "edge");
  3066. return 0;
  3067. }
  3068. #endif
  3069. #ifdef CONFIG_HPET_TIMER
  3070. #ifdef CONFIG_SMP
  3071. static int hpet_msi_set_affinity(unsigned int irq, const struct cpumask *mask)
  3072. {
  3073. struct irq_desc *desc = irq_to_desc(irq);
  3074. struct irq_cfg *cfg;
  3075. struct msi_msg msg;
  3076. unsigned int dest;
  3077. if (set_desc_affinity(desc, mask, &dest))
  3078. return -1;
  3079. cfg = desc->chip_data;
  3080. hpet_msi_read(irq, &msg);
  3081. msg.data &= ~MSI_DATA_VECTOR_MASK;
  3082. msg.data |= MSI_DATA_VECTOR(cfg->vector);
  3083. msg.address_lo &= ~MSI_ADDR_DEST_ID_MASK;
  3084. msg.address_lo |= MSI_ADDR_DEST_ID(dest);
  3085. hpet_msi_write(irq, &msg);
  3086. return 0;
  3087. }
  3088. #endif /* CONFIG_SMP */
  3089. static struct irq_chip ir_hpet_msi_type = {
  3090. .name = "IR-HPET_MSI",
  3091. .unmask = hpet_msi_unmask,
  3092. .mask = hpet_msi_mask,
  3093. #ifdef CONFIG_INTR_REMAP
  3094. .ack = ir_ack_apic_edge,
  3095. #ifdef CONFIG_SMP
  3096. .set_affinity = ir_set_msi_irq_affinity,
  3097. #endif
  3098. #endif
  3099. .retrigger = ioapic_retrigger_irq,
  3100. };
  3101. static struct irq_chip hpet_msi_type = {
  3102. .name = "HPET_MSI",
  3103. .unmask = hpet_msi_unmask,
  3104. .mask = hpet_msi_mask,
  3105. .ack = ack_apic_edge,
  3106. #ifdef CONFIG_SMP
  3107. .set_affinity = hpet_msi_set_affinity,
  3108. #endif
  3109. .retrigger = ioapic_retrigger_irq,
  3110. };
  3111. int arch_setup_hpet_msi(unsigned int irq, unsigned int id)
  3112. {
  3113. int ret;
  3114. struct msi_msg msg;
  3115. struct irq_desc *desc = irq_to_desc(irq);
  3116. if (intr_remapping_enabled) {
  3117. struct intel_iommu *iommu = map_hpet_to_ir(id);
  3118. int index;
  3119. if (!iommu)
  3120. return -1;
  3121. index = alloc_irte(iommu, irq, 1);
  3122. if (index < 0)
  3123. return -1;
  3124. }
  3125. ret = msi_compose_msg(NULL, irq, &msg, id);
  3126. if (ret < 0)
  3127. return ret;
  3128. hpet_msi_write(irq, &msg);
  3129. desc->status |= IRQ_MOVE_PCNTXT;
  3130. if (irq_remapped(irq))
  3131. set_irq_chip_and_handler_name(irq, &ir_hpet_msi_type,
  3132. handle_edge_irq, "edge");
  3133. else
  3134. set_irq_chip_and_handler_name(irq, &hpet_msi_type,
  3135. handle_edge_irq, "edge");
  3136. return 0;
  3137. }
  3138. #endif
  3139. #endif /* CONFIG_PCI_MSI */
  3140. /*
  3141. * Hypertransport interrupt support
  3142. */
  3143. #ifdef CONFIG_HT_IRQ
  3144. #ifdef CONFIG_SMP
  3145. static void target_ht_irq(unsigned int irq, unsigned int dest, u8 vector)
  3146. {
  3147. struct ht_irq_msg msg;
  3148. fetch_ht_irq_msg(irq, &msg);
  3149. msg.address_lo &= ~(HT_IRQ_LOW_VECTOR_MASK | HT_IRQ_LOW_DEST_ID_MASK);
  3150. msg.address_hi &= ~(HT_IRQ_HIGH_DEST_ID_MASK);
  3151. msg.address_lo |= HT_IRQ_LOW_VECTOR(vector) | HT_IRQ_LOW_DEST_ID(dest);
  3152. msg.address_hi |= HT_IRQ_HIGH_DEST_ID(dest);
  3153. write_ht_irq_msg(irq, &msg);
  3154. }
  3155. static int set_ht_irq_affinity(unsigned int irq, const struct cpumask *mask)
  3156. {
  3157. struct irq_desc *desc = irq_to_desc(irq);
  3158. struct irq_cfg *cfg;
  3159. unsigned int dest;
  3160. if (set_desc_affinity(desc, mask, &dest))
  3161. return -1;
  3162. cfg = desc->chip_data;
  3163. target_ht_irq(irq, dest, cfg->vector);
  3164. return 0;
  3165. }
  3166. #endif
  3167. static struct irq_chip ht_irq_chip = {
  3168. .name = "PCI-HT",
  3169. .mask = mask_ht_irq,
  3170. .unmask = unmask_ht_irq,
  3171. .ack = ack_apic_edge,
  3172. #ifdef CONFIG_SMP
  3173. .set_affinity = set_ht_irq_affinity,
  3174. #endif
  3175. .retrigger = ioapic_retrigger_irq,
  3176. };
  3177. int arch_setup_ht_irq(unsigned int irq, struct pci_dev *dev)
  3178. {
  3179. struct irq_cfg *cfg;
  3180. int err;
  3181. if (disable_apic)
  3182. return -ENXIO;
  3183. cfg = irq_cfg(irq);
  3184. err = assign_irq_vector(irq, cfg, apic->target_cpus());
  3185. if (!err) {
  3186. struct ht_irq_msg msg;
  3187. unsigned dest;
  3188. dest = apic->cpu_mask_to_apicid_and(cfg->domain,
  3189. apic->target_cpus());
  3190. msg.address_hi = HT_IRQ_HIGH_DEST_ID(dest);
  3191. msg.address_lo =
  3192. HT_IRQ_LOW_BASE |
  3193. HT_IRQ_LOW_DEST_ID(dest) |
  3194. HT_IRQ_LOW_VECTOR(cfg->vector) |
  3195. ((apic->irq_dest_mode == 0) ?
  3196. HT_IRQ_LOW_DM_PHYSICAL :
  3197. HT_IRQ_LOW_DM_LOGICAL) |
  3198. HT_IRQ_LOW_RQEOI_EDGE |
  3199. ((apic->irq_delivery_mode != dest_LowestPrio) ?
  3200. HT_IRQ_LOW_MT_FIXED :
  3201. HT_IRQ_LOW_MT_ARBITRATED) |
  3202. HT_IRQ_LOW_IRQ_MASKED;
  3203. write_ht_irq_msg(irq, &msg);
  3204. set_irq_chip_and_handler_name(irq, &ht_irq_chip,
  3205. handle_edge_irq, "edge");
  3206. dev_printk(KERN_DEBUG, &dev->dev, "irq %d for HT\n", irq);
  3207. }
  3208. return err;
  3209. }
  3210. #endif /* CONFIG_HT_IRQ */
  3211. int __init io_apic_get_redir_entries (int ioapic)
  3212. {
  3213. union IO_APIC_reg_01 reg_01;
  3214. unsigned long flags;
  3215. spin_lock_irqsave(&ioapic_lock, flags);
  3216. reg_01.raw = io_apic_read(ioapic, 1);
  3217. spin_unlock_irqrestore(&ioapic_lock, flags);
  3218. return reg_01.bits.entries;
  3219. }
  3220. void __init probe_nr_irqs_gsi(void)
  3221. {
  3222. int nr = 0;
  3223. nr = acpi_probe_gsi();
  3224. if (nr > nr_irqs_gsi) {
  3225. nr_irqs_gsi = nr;
  3226. } else {
  3227. /* for acpi=off or acpi is not compiled in */
  3228. int idx;
  3229. nr = 0;
  3230. for (idx = 0; idx < nr_ioapics; idx++)
  3231. nr += io_apic_get_redir_entries(idx) + 1;
  3232. if (nr > nr_irqs_gsi)
  3233. nr_irqs_gsi = nr;
  3234. }
  3235. printk(KERN_DEBUG "nr_irqs_gsi: %d\n", nr_irqs_gsi);
  3236. }
  3237. #ifdef CONFIG_SPARSE_IRQ
  3238. int __init arch_probe_nr_irqs(void)
  3239. {
  3240. int nr;
  3241. if (nr_irqs > (NR_VECTORS * nr_cpu_ids))
  3242. nr_irqs = NR_VECTORS * nr_cpu_ids;
  3243. nr = nr_irqs_gsi + 8 * nr_cpu_ids;
  3244. #if defined(CONFIG_PCI_MSI) || defined(CONFIG_HT_IRQ)
  3245. /*
  3246. * for MSI and HT dyn irq
  3247. */
  3248. nr += nr_irqs_gsi * 16;
  3249. #endif
  3250. if (nr < nr_irqs)
  3251. nr_irqs = nr;
  3252. return 0;
  3253. }
  3254. #endif
  3255. static int __io_apic_set_pci_routing(struct device *dev, int irq,
  3256. struct io_apic_irq_attr *irq_attr)
  3257. {
  3258. struct irq_desc *desc;
  3259. struct irq_cfg *cfg;
  3260. int node;
  3261. int ioapic, pin;
  3262. int trigger, polarity;
  3263. ioapic = irq_attr->ioapic;
  3264. if (!IO_APIC_IRQ(irq)) {
  3265. apic_printk(APIC_QUIET,KERN_ERR "IOAPIC[%d]: Invalid reference to IRQ 0\n",
  3266. ioapic);
  3267. return -EINVAL;
  3268. }
  3269. if (dev)
  3270. node = dev_to_node(dev);
  3271. else
  3272. node = cpu_to_node(boot_cpu_id);
  3273. desc = irq_to_desc_alloc_node(irq, node);
  3274. if (!desc) {
  3275. printk(KERN_INFO "can not get irq_desc %d\n", irq);
  3276. return 0;
  3277. }
  3278. pin = irq_attr->ioapic_pin;
  3279. trigger = irq_attr->trigger;
  3280. polarity = irq_attr->polarity;
  3281. /*
  3282. * IRQs < 16 are already in the irq_2_pin[] map
  3283. */
  3284. if (irq >= nr_legacy_irqs) {
  3285. cfg = desc->chip_data;
  3286. if (add_pin_to_irq_node_nopanic(cfg, node, ioapic, pin)) {
  3287. printk(KERN_INFO "can not add pin %d for irq %d\n",
  3288. pin, irq);
  3289. return 0;
  3290. }
  3291. }
  3292. setup_IO_APIC_irq(ioapic, pin, irq, desc, trigger, polarity);
  3293. return 0;
  3294. }
  3295. int io_apic_set_pci_routing(struct device *dev, int irq,
  3296. struct io_apic_irq_attr *irq_attr)
  3297. {
  3298. int ioapic, pin;
  3299. /*
  3300. * Avoid pin reprogramming. PRTs typically include entries
  3301. * with redundant pin->gsi mappings (but unique PCI devices);
  3302. * we only program the IOAPIC on the first.
  3303. */
  3304. ioapic = irq_attr->ioapic;
  3305. pin = irq_attr->ioapic_pin;
  3306. if (test_bit(pin, mp_ioapic_routing[ioapic].pin_programmed)) {
  3307. pr_debug("Pin %d-%d already programmed\n",
  3308. mp_ioapics[ioapic].apicid, pin);
  3309. return 0;
  3310. }
  3311. set_bit(pin, mp_ioapic_routing[ioapic].pin_programmed);
  3312. return __io_apic_set_pci_routing(dev, irq, irq_attr);
  3313. }
  3314. u8 __init io_apic_unique_id(u8 id)
  3315. {
  3316. #ifdef CONFIG_X86_32
  3317. if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
  3318. !APIC_XAPIC(apic_version[boot_cpu_physical_apicid]))
  3319. return io_apic_get_unique_id(nr_ioapics, id);
  3320. else
  3321. return id;
  3322. #else
  3323. int i;
  3324. DECLARE_BITMAP(used, 256);
  3325. bitmap_zero(used, 256);
  3326. for (i = 0; i < nr_ioapics; i++) {
  3327. struct mpc_ioapic *ia = &mp_ioapics[i];
  3328. __set_bit(ia->apicid, used);
  3329. }
  3330. if (!test_bit(id, used))
  3331. return id;
  3332. return find_first_zero_bit(used, 256);
  3333. #endif
  3334. }
  3335. #ifdef CONFIG_X86_32
  3336. int __init io_apic_get_unique_id(int ioapic, int apic_id)
  3337. {
  3338. union IO_APIC_reg_00 reg_00;
  3339. static physid_mask_t apic_id_map = PHYSID_MASK_NONE;
  3340. physid_mask_t tmp;
  3341. unsigned long flags;
  3342. int i = 0;
  3343. /*
  3344. * The P4 platform supports up to 256 APIC IDs on two separate APIC
  3345. * buses (one for LAPICs, one for IOAPICs), where predecessors only
  3346. * supports up to 16 on one shared APIC bus.
  3347. *
  3348. * TBD: Expand LAPIC/IOAPIC support on P4-class systems to take full
  3349. * advantage of new APIC bus architecture.
  3350. */
  3351. if (physids_empty(apic_id_map))
  3352. apic->ioapic_phys_id_map(&phys_cpu_present_map, &apic_id_map);
  3353. spin_lock_irqsave(&ioapic_lock, flags);
  3354. reg_00.raw = io_apic_read(ioapic, 0);
  3355. spin_unlock_irqrestore(&ioapic_lock, flags);
  3356. if (apic_id >= get_physical_broadcast()) {
  3357. printk(KERN_WARNING "IOAPIC[%d]: Invalid apic_id %d, trying "
  3358. "%d\n", ioapic, apic_id, reg_00.bits.ID);
  3359. apic_id = reg_00.bits.ID;
  3360. }
  3361. /*
  3362. * Every APIC in a system must have a unique ID or we get lots of nice
  3363. * 'stuck on smp_invalidate_needed IPI wait' messages.
  3364. */
  3365. if (apic->check_apicid_used(&apic_id_map, apic_id)) {
  3366. for (i = 0; i < get_physical_broadcast(); i++) {
  3367. if (!apic->check_apicid_used(&apic_id_map, i))
  3368. break;
  3369. }
  3370. if (i == get_physical_broadcast())
  3371. panic("Max apic_id exceeded!\n");
  3372. printk(KERN_WARNING "IOAPIC[%d]: apic_id %d already used, "
  3373. "trying %d\n", ioapic, apic_id, i);
  3374. apic_id = i;
  3375. }
  3376. apic->apicid_to_cpu_present(apic_id, &tmp);
  3377. physids_or(apic_id_map, apic_id_map, tmp);
  3378. if (reg_00.bits.ID != apic_id) {
  3379. reg_00.bits.ID = apic_id;
  3380. spin_lock_irqsave(&ioapic_lock, flags);
  3381. io_apic_write(ioapic, 0, reg_00.raw);
  3382. reg_00.raw = io_apic_read(ioapic, 0);
  3383. spin_unlock_irqrestore(&ioapic_lock, flags);
  3384. /* Sanity check */
  3385. if (reg_00.bits.ID != apic_id) {
  3386. printk("IOAPIC[%d]: Unable to change apic_id!\n", ioapic);
  3387. return -1;
  3388. }
  3389. }
  3390. apic_printk(APIC_VERBOSE, KERN_INFO
  3391. "IOAPIC[%d]: Assigned apic_id %d\n", ioapic, apic_id);
  3392. return apic_id;
  3393. }
  3394. #endif
  3395. int __init io_apic_get_version(int ioapic)
  3396. {
  3397. union IO_APIC_reg_01 reg_01;
  3398. unsigned long flags;
  3399. spin_lock_irqsave(&ioapic_lock, flags);
  3400. reg_01.raw = io_apic_read(ioapic, 1);
  3401. spin_unlock_irqrestore(&ioapic_lock, flags);
  3402. return reg_01.bits.version;
  3403. }
  3404. int acpi_get_override_irq(int bus_irq, int *trigger, int *polarity)
  3405. {
  3406. int i;
  3407. if (skip_ioapic_setup)
  3408. return -1;
  3409. for (i = 0; i < mp_irq_entries; i++)
  3410. if (mp_irqs[i].irqtype == mp_INT &&
  3411. mp_irqs[i].srcbusirq == bus_irq)
  3412. break;
  3413. if (i >= mp_irq_entries)
  3414. return -1;
  3415. *trigger = irq_trigger(i);
  3416. *polarity = irq_polarity(i);
  3417. return 0;
  3418. }
  3419. /*
  3420. * This function currently is only a helper for the i386 smp boot process where
  3421. * we need to reprogram the ioredtbls to cater for the cpus which have come online
  3422. * so mask in all cases should simply be apic->target_cpus()
  3423. */
  3424. #ifdef CONFIG_SMP
  3425. void __init setup_ioapic_dest(void)
  3426. {
  3427. int pin, ioapic = 0, irq, irq_entry;
  3428. struct irq_desc *desc;
  3429. const struct cpumask *mask;
  3430. if (skip_ioapic_setup == 1)
  3431. return;
  3432. #ifdef CONFIG_ACPI
  3433. if (!acpi_disabled && acpi_ioapic) {
  3434. ioapic = mp_find_ioapic(0);
  3435. if (ioapic < 0)
  3436. ioapic = 0;
  3437. }
  3438. #endif
  3439. for (pin = 0; pin < nr_ioapic_registers[ioapic]; pin++) {
  3440. irq_entry = find_irq_entry(ioapic, pin, mp_INT);
  3441. if (irq_entry == -1)
  3442. continue;
  3443. irq = pin_2_irq(irq_entry, ioapic, pin);
  3444. desc = irq_to_desc(irq);
  3445. /*
  3446. * Honour affinities which have been set in early boot
  3447. */
  3448. if (desc->status &
  3449. (IRQ_NO_BALANCING | IRQ_AFFINITY_SET))
  3450. mask = desc->affinity;
  3451. else
  3452. mask = apic->target_cpus();
  3453. if (intr_remapping_enabled)
  3454. set_ir_ioapic_affinity_irq_desc(desc, mask);
  3455. else
  3456. set_ioapic_affinity_irq_desc(desc, mask);
  3457. }
  3458. }
  3459. #endif
  3460. #define IOAPIC_RESOURCE_NAME_SIZE 11
  3461. static struct resource *ioapic_resources;
  3462. static struct resource * __init ioapic_setup_resources(int nr_ioapics)
  3463. {
  3464. unsigned long n;
  3465. struct resource *res;
  3466. char *mem;
  3467. int i;
  3468. if (nr_ioapics <= 0)
  3469. return NULL;
  3470. n = IOAPIC_RESOURCE_NAME_SIZE + sizeof(struct resource);
  3471. n *= nr_ioapics;
  3472. mem = alloc_bootmem(n);
  3473. res = (void *)mem;
  3474. mem += sizeof(struct resource) * nr_ioapics;
  3475. for (i = 0; i < nr_ioapics; i++) {
  3476. res[i].name = mem;
  3477. res[i].flags = IORESOURCE_MEM | IORESOURCE_BUSY;
  3478. snprintf(mem, IOAPIC_RESOURCE_NAME_SIZE, "IOAPIC %u", i);
  3479. mem += IOAPIC_RESOURCE_NAME_SIZE;
  3480. }
  3481. ioapic_resources = res;
  3482. return res;
  3483. }
  3484. void __init ioapic_init_mappings(void)
  3485. {
  3486. unsigned long ioapic_phys, idx = FIX_IO_APIC_BASE_0;
  3487. struct resource *ioapic_res;
  3488. int i;
  3489. ioapic_res = ioapic_setup_resources(nr_ioapics);
  3490. for (i = 0; i < nr_ioapics; i++) {
  3491. if (smp_found_config) {
  3492. ioapic_phys = mp_ioapics[i].apicaddr;
  3493. #ifdef CONFIG_X86_32
  3494. if (!ioapic_phys) {
  3495. printk(KERN_ERR
  3496. "WARNING: bogus zero IO-APIC "
  3497. "address found in MPTABLE, "
  3498. "disabling IO/APIC support!\n");
  3499. smp_found_config = 0;
  3500. skip_ioapic_setup = 1;
  3501. goto fake_ioapic_page;
  3502. }
  3503. #endif
  3504. } else {
  3505. #ifdef CONFIG_X86_32
  3506. fake_ioapic_page:
  3507. #endif
  3508. ioapic_phys = (unsigned long)alloc_bootmem_pages(PAGE_SIZE);
  3509. ioapic_phys = __pa(ioapic_phys);
  3510. }
  3511. set_fixmap_nocache(idx, ioapic_phys);
  3512. apic_printk(APIC_VERBOSE, "mapped IOAPIC to %08lx (%08lx)\n",
  3513. __fix_to_virt(idx) + (ioapic_phys & ~PAGE_MASK),
  3514. ioapic_phys);
  3515. idx++;
  3516. ioapic_res->start = ioapic_phys;
  3517. ioapic_res->end = ioapic_phys + IO_APIC_SLOT_SIZE - 1;
  3518. ioapic_res++;
  3519. }
  3520. }
  3521. void __init ioapic_insert_resources(void)
  3522. {
  3523. int i;
  3524. struct resource *r = ioapic_resources;
  3525. if (!r) {
  3526. if (nr_ioapics > 0)
  3527. printk(KERN_ERR
  3528. "IO APIC resources couldn't be allocated.\n");
  3529. return;
  3530. }
  3531. for (i = 0; i < nr_ioapics; i++) {
  3532. insert_resource(&iomem_resource, r);
  3533. r++;
  3534. }
  3535. }
  3536. int mp_find_ioapic(int gsi)
  3537. {
  3538. int i = 0;
  3539. /* Find the IOAPIC that manages this GSI. */
  3540. for (i = 0; i < nr_ioapics; i++) {
  3541. if ((gsi >= mp_gsi_routing[i].gsi_base)
  3542. && (gsi <= mp_gsi_routing[i].gsi_end))
  3543. return i;
  3544. }
  3545. printk(KERN_ERR "ERROR: Unable to locate IOAPIC for GSI %d\n", gsi);
  3546. return -1;
  3547. }
  3548. int mp_find_ioapic_pin(int ioapic, int gsi)
  3549. {
  3550. if (WARN_ON(ioapic == -1))
  3551. return -1;
  3552. if (WARN_ON(gsi > mp_gsi_routing[ioapic].gsi_end))
  3553. return -1;
  3554. return gsi - mp_gsi_routing[ioapic].gsi_base;
  3555. }
  3556. static int bad_ioapic(unsigned long address)
  3557. {
  3558. if (nr_ioapics >= MAX_IO_APICS) {
  3559. printk(KERN_WARNING "WARING: Max # of I/O APICs (%d) exceeded "
  3560. "(found %d), skipping\n", MAX_IO_APICS, nr_ioapics);
  3561. return 1;
  3562. }
  3563. if (!address) {
  3564. printk(KERN_WARNING "WARNING: Bogus (zero) I/O APIC address"
  3565. " found in table, skipping!\n");
  3566. return 1;
  3567. }
  3568. return 0;
  3569. }
  3570. void __init mp_register_ioapic(int id, u32 address, u32 gsi_base)
  3571. {
  3572. int idx = 0;
  3573. if (bad_ioapic(address))
  3574. return;
  3575. idx = nr_ioapics;
  3576. mp_ioapics[idx].type = MP_IOAPIC;
  3577. mp_ioapics[idx].flags = MPC_APIC_USABLE;
  3578. mp_ioapics[idx].apicaddr = address;
  3579. set_fixmap_nocache(FIX_IO_APIC_BASE_0 + idx, address);
  3580. mp_ioapics[idx].apicid = io_apic_unique_id(id);
  3581. mp_ioapics[idx].apicver = io_apic_get_version(idx);
  3582. /*
  3583. * Build basic GSI lookup table to facilitate gsi->io_apic lookups
  3584. * and to prevent reprogramming of IOAPIC pins (PCI GSIs).
  3585. */
  3586. mp_gsi_routing[idx].gsi_base = gsi_base;
  3587. mp_gsi_routing[idx].gsi_end = gsi_base +
  3588. io_apic_get_redir_entries(idx);
  3589. printk(KERN_INFO "IOAPIC[%d]: apic_id %d, version %d, address 0x%x, "
  3590. "GSI %d-%d\n", idx, mp_ioapics[idx].apicid,
  3591. mp_ioapics[idx].apicver, mp_ioapics[idx].apicaddr,
  3592. mp_gsi_routing[idx].gsi_base, mp_gsi_routing[idx].gsi_end);
  3593. nr_ioapics++;
  3594. }