io_apic.c 98 KB

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