io_apic.c 104 KB

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