io_apic.c 94 KB

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