io_apic.c 100 KB

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