io_apic.c 100 KB

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