io_apic.c 102 KB

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