io_apic.c 98 KB

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