io_apic.c 101 KB

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