io_apic.c 104 KB

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