apic.c 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634
  1. /*
  2. * Local APIC handling, local APIC timers
  3. *
  4. * (c) 1999, 2000, 2009 Ingo Molnar <mingo@redhat.com>
  5. *
  6. * Fixes
  7. * Maciej W. Rozycki : Bits for genuine 82489DX APICs;
  8. * thanks to Eric Gilmore
  9. * and Rolf G. Tews
  10. * for testing these extensively.
  11. * Maciej W. Rozycki : Various updates and fixes.
  12. * Mikael Pettersson : Power Management for UP-APIC.
  13. * Pavel Machek and
  14. * Mikael Pettersson : PM converted to driver model.
  15. */
  16. #include <linux/perf_event.h>
  17. #include <linux/kernel_stat.h>
  18. #include <linux/mc146818rtc.h>
  19. #include <linux/acpi_pmtmr.h>
  20. #include <linux/clockchips.h>
  21. #include <linux/interrupt.h>
  22. #include <linux/bootmem.h>
  23. #include <linux/ftrace.h>
  24. #include <linux/ioport.h>
  25. #include <linux/export.h>
  26. #include <linux/syscore_ops.h>
  27. #include <linux/delay.h>
  28. #include <linux/timex.h>
  29. #include <linux/i8253.h>
  30. #include <linux/dmar.h>
  31. #include <linux/init.h>
  32. #include <linux/cpu.h>
  33. #include <linux/dmi.h>
  34. #include <linux/smp.h>
  35. #include <linux/mm.h>
  36. #include <asm/trace/irq_vectors.h>
  37. #include <asm/irq_remapping.h>
  38. #include <asm/perf_event.h>
  39. #include <asm/x86_init.h>
  40. #include <asm/pgalloc.h>
  41. #include <linux/atomic.h>
  42. #include <asm/mpspec.h>
  43. #include <asm/i8259.h>
  44. #include <asm/proto.h>
  45. #include <asm/apic.h>
  46. #include <asm/io_apic.h>
  47. #include <asm/desc.h>
  48. #include <asm/hpet.h>
  49. #include <asm/idle.h>
  50. #include <asm/mtrr.h>
  51. #include <asm/time.h>
  52. #include <asm/smp.h>
  53. #include <asm/mce.h>
  54. #include <asm/tsc.h>
  55. #include <asm/hypervisor.h>
  56. unsigned int num_processors;
  57. unsigned disabled_cpus;
  58. /* Processor that is doing the boot up */
  59. unsigned int boot_cpu_physical_apicid = -1U;
  60. EXPORT_SYMBOL_GPL(boot_cpu_physical_apicid);
  61. /*
  62. * The highest APIC ID seen during enumeration.
  63. */
  64. static unsigned int max_physical_apicid;
  65. /*
  66. * Bitmask of physically existing CPUs:
  67. */
  68. physid_mask_t phys_cpu_present_map;
  69. /*
  70. * Processor to be disabled specified by kernel parameter
  71. * disable_cpu_apicid=<int>, mostly used for the kdump 2nd kernel to
  72. * avoid undefined behaviour caused by sending INIT from AP to BSP.
  73. */
  74. static unsigned int disabled_cpu_apicid __read_mostly = BAD_APICID;
  75. /*
  76. * This variable controls which CPUs receive external NMIs. By default,
  77. * external NMIs are delivered only to the BSP.
  78. */
  79. static int apic_extnmi = APIC_EXTNMI_BSP;
  80. /*
  81. * Map cpu index to physical APIC ID
  82. */
  83. DEFINE_EARLY_PER_CPU_READ_MOSTLY(u16, x86_cpu_to_apicid, BAD_APICID);
  84. DEFINE_EARLY_PER_CPU_READ_MOSTLY(u16, x86_bios_cpu_apicid, BAD_APICID);
  85. DEFINE_EARLY_PER_CPU_READ_MOSTLY(u32, x86_cpu_to_acpiid, U32_MAX);
  86. EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid);
  87. EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
  88. EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_acpiid);
  89. #ifdef CONFIG_X86_32
  90. /*
  91. * On x86_32, the mapping between cpu and logical apicid may vary
  92. * depending on apic in use. The following early percpu variable is
  93. * used for the mapping. This is where the behaviors of x86_64 and 32
  94. * actually diverge. Let's keep it ugly for now.
  95. */
  96. DEFINE_EARLY_PER_CPU_READ_MOSTLY(int, x86_cpu_to_logical_apicid, BAD_APICID);
  97. /* Local APIC was disabled by the BIOS and enabled by the kernel */
  98. static int enabled_via_apicbase;
  99. /*
  100. * Handle interrupt mode configuration register (IMCR).
  101. * This register controls whether the interrupt signals
  102. * that reach the BSP come from the master PIC or from the
  103. * local APIC. Before entering Symmetric I/O Mode, either
  104. * the BIOS or the operating system must switch out of
  105. * PIC Mode by changing the IMCR.
  106. */
  107. static inline void imcr_pic_to_apic(void)
  108. {
  109. /* select IMCR register */
  110. outb(0x70, 0x22);
  111. /* NMI and 8259 INTR go through APIC */
  112. outb(0x01, 0x23);
  113. }
  114. static inline void imcr_apic_to_pic(void)
  115. {
  116. /* select IMCR register */
  117. outb(0x70, 0x22);
  118. /* NMI and 8259 INTR go directly to BSP */
  119. outb(0x00, 0x23);
  120. }
  121. #endif
  122. /*
  123. * Knob to control our willingness to enable the local APIC.
  124. *
  125. * +1=force-enable
  126. */
  127. static int force_enable_local_apic __initdata;
  128. /*
  129. * APIC command line parameters
  130. */
  131. static int __init parse_lapic(char *arg)
  132. {
  133. if (IS_ENABLED(CONFIG_X86_32) && !arg)
  134. force_enable_local_apic = 1;
  135. else if (arg && !strncmp(arg, "notscdeadline", 13))
  136. setup_clear_cpu_cap(X86_FEATURE_TSC_DEADLINE_TIMER);
  137. return 0;
  138. }
  139. early_param("lapic", parse_lapic);
  140. #ifdef CONFIG_X86_64
  141. static int apic_calibrate_pmtmr __initdata;
  142. static __init int setup_apicpmtimer(char *s)
  143. {
  144. apic_calibrate_pmtmr = 1;
  145. notsc_setup(NULL);
  146. return 0;
  147. }
  148. __setup("apicpmtimer", setup_apicpmtimer);
  149. #endif
  150. unsigned long mp_lapic_addr;
  151. int disable_apic;
  152. /* Disable local APIC timer from the kernel commandline or via dmi quirk */
  153. static int disable_apic_timer __initdata;
  154. /* Local APIC timer works in C2 */
  155. int local_apic_timer_c2_ok;
  156. EXPORT_SYMBOL_GPL(local_apic_timer_c2_ok);
  157. int first_system_vector = FIRST_SYSTEM_VECTOR;
  158. /*
  159. * Debug level, exported for io_apic.c
  160. */
  161. unsigned int apic_verbosity;
  162. int pic_mode;
  163. /* Have we found an MP table */
  164. int smp_found_config;
  165. static struct resource lapic_resource = {
  166. .name = "Local APIC",
  167. .flags = IORESOURCE_MEM | IORESOURCE_BUSY,
  168. };
  169. unsigned int lapic_timer_frequency = 0;
  170. static void apic_pm_activate(void);
  171. static unsigned long apic_phys;
  172. /*
  173. * Get the LAPIC version
  174. */
  175. static inline int lapic_get_version(void)
  176. {
  177. return GET_APIC_VERSION(apic_read(APIC_LVR));
  178. }
  179. /*
  180. * Check, if the APIC is integrated or a separate chip
  181. */
  182. static inline int lapic_is_integrated(void)
  183. {
  184. #ifdef CONFIG_X86_64
  185. return 1;
  186. #else
  187. return APIC_INTEGRATED(lapic_get_version());
  188. #endif
  189. }
  190. /*
  191. * Check, whether this is a modern or a first generation APIC
  192. */
  193. static int modern_apic(void)
  194. {
  195. /* AMD systems use old APIC versions, so check the CPU */
  196. if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD &&
  197. boot_cpu_data.x86 >= 0xf)
  198. return 1;
  199. return lapic_get_version() >= 0x14;
  200. }
  201. /*
  202. * right after this call apic become NOOP driven
  203. * so apic->write/read doesn't do anything
  204. */
  205. static void __init apic_disable(void)
  206. {
  207. pr_info("APIC: switched to apic NOOP\n");
  208. apic = &apic_noop;
  209. }
  210. void native_apic_wait_icr_idle(void)
  211. {
  212. while (apic_read(APIC_ICR) & APIC_ICR_BUSY)
  213. cpu_relax();
  214. }
  215. u32 native_safe_apic_wait_icr_idle(void)
  216. {
  217. u32 send_status;
  218. int timeout;
  219. timeout = 0;
  220. do {
  221. send_status = apic_read(APIC_ICR) & APIC_ICR_BUSY;
  222. if (!send_status)
  223. break;
  224. inc_irq_stat(icr_read_retry_count);
  225. udelay(100);
  226. } while (timeout++ < 1000);
  227. return send_status;
  228. }
  229. void native_apic_icr_write(u32 low, u32 id)
  230. {
  231. unsigned long flags;
  232. local_irq_save(flags);
  233. apic_write(APIC_ICR2, SET_APIC_DEST_FIELD(id));
  234. apic_write(APIC_ICR, low);
  235. local_irq_restore(flags);
  236. }
  237. u64 native_apic_icr_read(void)
  238. {
  239. u32 icr1, icr2;
  240. icr2 = apic_read(APIC_ICR2);
  241. icr1 = apic_read(APIC_ICR);
  242. return icr1 | ((u64)icr2 << 32);
  243. }
  244. #ifdef CONFIG_X86_32
  245. /**
  246. * get_physical_broadcast - Get number of physical broadcast IDs
  247. */
  248. int get_physical_broadcast(void)
  249. {
  250. return modern_apic() ? 0xff : 0xf;
  251. }
  252. #endif
  253. /**
  254. * lapic_get_maxlvt - get the maximum number of local vector table entries
  255. */
  256. int lapic_get_maxlvt(void)
  257. {
  258. unsigned int v;
  259. v = apic_read(APIC_LVR);
  260. /*
  261. * - we always have APIC integrated on 64bit mode
  262. * - 82489DXs do not report # of LVT entries
  263. */
  264. return APIC_INTEGRATED(GET_APIC_VERSION(v)) ? GET_APIC_MAXLVT(v) : 2;
  265. }
  266. /*
  267. * Local APIC timer
  268. */
  269. /* Clock divisor */
  270. #define APIC_DIVISOR 16
  271. #define TSC_DIVISOR 8
  272. /*
  273. * This function sets up the local APIC timer, with a timeout of
  274. * 'clocks' APIC bus clock. During calibration we actually call
  275. * this function twice on the boot CPU, once with a bogus timeout
  276. * value, second time for real. The other (noncalibrating) CPUs
  277. * call this function only once, with the real, calibrated value.
  278. *
  279. * We do reads before writes even if unnecessary, to get around the
  280. * P5 APIC double write bug.
  281. */
  282. static void __setup_APIC_LVTT(unsigned int clocks, int oneshot, int irqen)
  283. {
  284. unsigned int lvtt_value, tmp_value;
  285. lvtt_value = LOCAL_TIMER_VECTOR;
  286. if (!oneshot)
  287. lvtt_value |= APIC_LVT_TIMER_PERIODIC;
  288. else if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER))
  289. lvtt_value |= APIC_LVT_TIMER_TSCDEADLINE;
  290. if (!lapic_is_integrated())
  291. lvtt_value |= SET_APIC_TIMER_BASE(APIC_TIMER_BASE_DIV);
  292. if (!irqen)
  293. lvtt_value |= APIC_LVT_MASKED;
  294. apic_write(APIC_LVTT, lvtt_value);
  295. if (lvtt_value & APIC_LVT_TIMER_TSCDEADLINE) {
  296. /*
  297. * See Intel SDM: TSC-Deadline Mode chapter. In xAPIC mode,
  298. * writing to the APIC LVTT and TSC_DEADLINE MSR isn't serialized.
  299. * According to Intel, MFENCE can do the serialization here.
  300. */
  301. asm volatile("mfence" : : : "memory");
  302. printk_once(KERN_DEBUG "TSC deadline timer enabled\n");
  303. return;
  304. }
  305. /*
  306. * Divide PICLK by 16
  307. */
  308. tmp_value = apic_read(APIC_TDCR);
  309. apic_write(APIC_TDCR,
  310. (tmp_value & ~(APIC_TDR_DIV_1 | APIC_TDR_DIV_TMBASE)) |
  311. APIC_TDR_DIV_16);
  312. if (!oneshot)
  313. apic_write(APIC_TMICT, clocks / APIC_DIVISOR);
  314. }
  315. /*
  316. * Setup extended LVT, AMD specific
  317. *
  318. * Software should use the LVT offsets the BIOS provides. The offsets
  319. * are determined by the subsystems using it like those for MCE
  320. * threshold or IBS. On K8 only offset 0 (APIC500) and MCE interrupts
  321. * are supported. Beginning with family 10h at least 4 offsets are
  322. * available.
  323. *
  324. * Since the offsets must be consistent for all cores, we keep track
  325. * of the LVT offsets in software and reserve the offset for the same
  326. * vector also to be used on other cores. An offset is freed by
  327. * setting the entry to APIC_EILVT_MASKED.
  328. *
  329. * If the BIOS is right, there should be no conflicts. Otherwise a
  330. * "[Firmware Bug]: ..." error message is generated. However, if
  331. * software does not properly determines the offsets, it is not
  332. * necessarily a BIOS bug.
  333. */
  334. static atomic_t eilvt_offsets[APIC_EILVT_NR_MAX];
  335. static inline int eilvt_entry_is_changeable(unsigned int old, unsigned int new)
  336. {
  337. return (old & APIC_EILVT_MASKED)
  338. || (new == APIC_EILVT_MASKED)
  339. || ((new & ~APIC_EILVT_MASKED) == old);
  340. }
  341. static unsigned int reserve_eilvt_offset(int offset, unsigned int new)
  342. {
  343. unsigned int rsvd, vector;
  344. if (offset >= APIC_EILVT_NR_MAX)
  345. return ~0;
  346. rsvd = atomic_read(&eilvt_offsets[offset]);
  347. do {
  348. vector = rsvd & ~APIC_EILVT_MASKED; /* 0: unassigned */
  349. if (vector && !eilvt_entry_is_changeable(vector, new))
  350. /* may not change if vectors are different */
  351. return rsvd;
  352. rsvd = atomic_cmpxchg(&eilvt_offsets[offset], rsvd, new);
  353. } while (rsvd != new);
  354. rsvd &= ~APIC_EILVT_MASKED;
  355. if (rsvd && rsvd != vector)
  356. pr_info("LVT offset %d assigned for vector 0x%02x\n",
  357. offset, rsvd);
  358. return new;
  359. }
  360. /*
  361. * If mask=1, the LVT entry does not generate interrupts while mask=0
  362. * enables the vector. See also the BKDGs. Must be called with
  363. * preemption disabled.
  364. */
  365. int setup_APIC_eilvt(u8 offset, u8 vector, u8 msg_type, u8 mask)
  366. {
  367. unsigned long reg = APIC_EILVTn(offset);
  368. unsigned int new, old, reserved;
  369. new = (mask << 16) | (msg_type << 8) | vector;
  370. old = apic_read(reg);
  371. reserved = reserve_eilvt_offset(offset, new);
  372. if (reserved != new) {
  373. pr_err(FW_BUG "cpu %d, try to use APIC%lX (LVT offset %d) for "
  374. "vector 0x%x, but the register is already in use for "
  375. "vector 0x%x on another cpu\n",
  376. smp_processor_id(), reg, offset, new, reserved);
  377. return -EINVAL;
  378. }
  379. if (!eilvt_entry_is_changeable(old, new)) {
  380. pr_err(FW_BUG "cpu %d, try to use APIC%lX (LVT offset %d) for "
  381. "vector 0x%x, but the register is already in use for "
  382. "vector 0x%x on this cpu\n",
  383. smp_processor_id(), reg, offset, new, old);
  384. return -EBUSY;
  385. }
  386. apic_write(reg, new);
  387. return 0;
  388. }
  389. EXPORT_SYMBOL_GPL(setup_APIC_eilvt);
  390. /*
  391. * Program the next event, relative to now
  392. */
  393. static int lapic_next_event(unsigned long delta,
  394. struct clock_event_device *evt)
  395. {
  396. apic_write(APIC_TMICT, delta);
  397. return 0;
  398. }
  399. static int lapic_next_deadline(unsigned long delta,
  400. struct clock_event_device *evt)
  401. {
  402. u64 tsc;
  403. tsc = rdtsc();
  404. wrmsrl(MSR_IA32_TSC_DEADLINE, tsc + (((u64) delta) * TSC_DIVISOR));
  405. return 0;
  406. }
  407. static int lapic_timer_shutdown(struct clock_event_device *evt)
  408. {
  409. unsigned int v;
  410. /* Lapic used as dummy for broadcast ? */
  411. if (evt->features & CLOCK_EVT_FEAT_DUMMY)
  412. return 0;
  413. v = apic_read(APIC_LVTT);
  414. v |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
  415. apic_write(APIC_LVTT, v);
  416. apic_write(APIC_TMICT, 0);
  417. return 0;
  418. }
  419. static inline int
  420. lapic_timer_set_periodic_oneshot(struct clock_event_device *evt, bool oneshot)
  421. {
  422. /* Lapic used as dummy for broadcast ? */
  423. if (evt->features & CLOCK_EVT_FEAT_DUMMY)
  424. return 0;
  425. __setup_APIC_LVTT(lapic_timer_frequency, oneshot, 1);
  426. return 0;
  427. }
  428. static int lapic_timer_set_periodic(struct clock_event_device *evt)
  429. {
  430. return lapic_timer_set_periodic_oneshot(evt, false);
  431. }
  432. static int lapic_timer_set_oneshot(struct clock_event_device *evt)
  433. {
  434. return lapic_timer_set_periodic_oneshot(evt, true);
  435. }
  436. /*
  437. * Local APIC timer broadcast function
  438. */
  439. static void lapic_timer_broadcast(const struct cpumask *mask)
  440. {
  441. #ifdef CONFIG_SMP
  442. apic->send_IPI_mask(mask, LOCAL_TIMER_VECTOR);
  443. #endif
  444. }
  445. /*
  446. * The local apic timer can be used for any function which is CPU local.
  447. */
  448. static struct clock_event_device lapic_clockevent = {
  449. .name = "lapic",
  450. .features = CLOCK_EVT_FEAT_PERIODIC |
  451. CLOCK_EVT_FEAT_ONESHOT | CLOCK_EVT_FEAT_C3STOP
  452. | CLOCK_EVT_FEAT_DUMMY,
  453. .shift = 32,
  454. .set_state_shutdown = lapic_timer_shutdown,
  455. .set_state_periodic = lapic_timer_set_periodic,
  456. .set_state_oneshot = lapic_timer_set_oneshot,
  457. .set_next_event = lapic_next_event,
  458. .broadcast = lapic_timer_broadcast,
  459. .rating = 100,
  460. .irq = -1,
  461. };
  462. static DEFINE_PER_CPU(struct clock_event_device, lapic_events);
  463. /*
  464. * Setup the local APIC timer for this CPU. Copy the initialized values
  465. * of the boot CPU and register the clock event in the framework.
  466. */
  467. static void setup_APIC_timer(void)
  468. {
  469. struct clock_event_device *levt = this_cpu_ptr(&lapic_events);
  470. if (this_cpu_has(X86_FEATURE_ARAT)) {
  471. lapic_clockevent.features &= ~CLOCK_EVT_FEAT_C3STOP;
  472. /* Make LAPIC timer preferrable over percpu HPET */
  473. lapic_clockevent.rating = 150;
  474. }
  475. memcpy(levt, &lapic_clockevent, sizeof(*levt));
  476. levt->cpumask = cpumask_of(smp_processor_id());
  477. if (this_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) {
  478. levt->features &= ~(CLOCK_EVT_FEAT_PERIODIC |
  479. CLOCK_EVT_FEAT_DUMMY);
  480. levt->set_next_event = lapic_next_deadline;
  481. clockevents_config_and_register(levt,
  482. tsc_khz * (1000 / TSC_DIVISOR),
  483. 0xF, ~0UL);
  484. } else
  485. clockevents_register_device(levt);
  486. }
  487. /*
  488. * Install the updated TSC frequency from recalibration at the TSC
  489. * deadline clockevent devices.
  490. */
  491. static void __lapic_update_tsc_freq(void *info)
  492. {
  493. struct clock_event_device *levt = this_cpu_ptr(&lapic_events);
  494. if (!this_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER))
  495. return;
  496. clockevents_update_freq(levt, tsc_khz * (1000 / TSC_DIVISOR));
  497. }
  498. void lapic_update_tsc_freq(void)
  499. {
  500. /*
  501. * The clockevent device's ->mult and ->shift can both be
  502. * changed. In order to avoid races, schedule the frequency
  503. * update code on each CPU.
  504. */
  505. on_each_cpu(__lapic_update_tsc_freq, NULL, 0);
  506. }
  507. /*
  508. * In this functions we calibrate APIC bus clocks to the external timer.
  509. *
  510. * We want to do the calibration only once since we want to have local timer
  511. * irqs syncron. CPUs connected by the same APIC bus have the very same bus
  512. * frequency.
  513. *
  514. * This was previously done by reading the PIT/HPET and waiting for a wrap
  515. * around to find out, that a tick has elapsed. I have a box, where the PIT
  516. * readout is broken, so it never gets out of the wait loop again. This was
  517. * also reported by others.
  518. *
  519. * Monitoring the jiffies value is inaccurate and the clockevents
  520. * infrastructure allows us to do a simple substitution of the interrupt
  521. * handler.
  522. *
  523. * The calibration routine also uses the pm_timer when possible, as the PIT
  524. * happens to run way too slow (factor 2.3 on my VAIO CoreDuo, which goes
  525. * back to normal later in the boot process).
  526. */
  527. #define LAPIC_CAL_LOOPS (HZ/10)
  528. static __initdata int lapic_cal_loops = -1;
  529. static __initdata long lapic_cal_t1, lapic_cal_t2;
  530. static __initdata unsigned long long lapic_cal_tsc1, lapic_cal_tsc2;
  531. static __initdata unsigned long lapic_cal_pm1, lapic_cal_pm2;
  532. static __initdata unsigned long lapic_cal_j1, lapic_cal_j2;
  533. /*
  534. * Temporary interrupt handler.
  535. */
  536. static void __init lapic_cal_handler(struct clock_event_device *dev)
  537. {
  538. unsigned long long tsc = 0;
  539. long tapic = apic_read(APIC_TMCCT);
  540. unsigned long pm = acpi_pm_read_early();
  541. if (boot_cpu_has(X86_FEATURE_TSC))
  542. tsc = rdtsc();
  543. switch (lapic_cal_loops++) {
  544. case 0:
  545. lapic_cal_t1 = tapic;
  546. lapic_cal_tsc1 = tsc;
  547. lapic_cal_pm1 = pm;
  548. lapic_cal_j1 = jiffies;
  549. break;
  550. case LAPIC_CAL_LOOPS:
  551. lapic_cal_t2 = tapic;
  552. lapic_cal_tsc2 = tsc;
  553. if (pm < lapic_cal_pm1)
  554. pm += ACPI_PM_OVRRUN;
  555. lapic_cal_pm2 = pm;
  556. lapic_cal_j2 = jiffies;
  557. break;
  558. }
  559. }
  560. static int __init
  561. calibrate_by_pmtimer(long deltapm, long *delta, long *deltatsc)
  562. {
  563. const long pm_100ms = PMTMR_TICKS_PER_SEC / 10;
  564. const long pm_thresh = pm_100ms / 100;
  565. unsigned long mult;
  566. u64 res;
  567. #ifndef CONFIG_X86_PM_TIMER
  568. return -1;
  569. #endif
  570. apic_printk(APIC_VERBOSE, "... PM-Timer delta = %ld\n", deltapm);
  571. /* Check, if the PM timer is available */
  572. if (!deltapm)
  573. return -1;
  574. mult = clocksource_hz2mult(PMTMR_TICKS_PER_SEC, 22);
  575. if (deltapm > (pm_100ms - pm_thresh) &&
  576. deltapm < (pm_100ms + pm_thresh)) {
  577. apic_printk(APIC_VERBOSE, "... PM-Timer result ok\n");
  578. return 0;
  579. }
  580. res = (((u64)deltapm) * mult) >> 22;
  581. do_div(res, 1000000);
  582. pr_warning("APIC calibration not consistent "
  583. "with PM-Timer: %ldms instead of 100ms\n",(long)res);
  584. /* Correct the lapic counter value */
  585. res = (((u64)(*delta)) * pm_100ms);
  586. do_div(res, deltapm);
  587. pr_info("APIC delta adjusted to PM-Timer: "
  588. "%lu (%ld)\n", (unsigned long)res, *delta);
  589. *delta = (long)res;
  590. /* Correct the tsc counter value */
  591. if (boot_cpu_has(X86_FEATURE_TSC)) {
  592. res = (((u64)(*deltatsc)) * pm_100ms);
  593. do_div(res, deltapm);
  594. apic_printk(APIC_VERBOSE, "TSC delta adjusted to "
  595. "PM-Timer: %lu (%ld)\n",
  596. (unsigned long)res, *deltatsc);
  597. *deltatsc = (long)res;
  598. }
  599. return 0;
  600. }
  601. static int __init calibrate_APIC_clock(void)
  602. {
  603. struct clock_event_device *levt = this_cpu_ptr(&lapic_events);
  604. void (*real_handler)(struct clock_event_device *dev);
  605. unsigned long deltaj;
  606. long delta, deltatsc;
  607. int pm_referenced = 0;
  608. /**
  609. * check if lapic timer has already been calibrated by platform
  610. * specific routine, such as tsc calibration code. if so, we just fill
  611. * in the clockevent structure and return.
  612. */
  613. if (boot_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) {
  614. return 0;
  615. } else if (lapic_timer_frequency) {
  616. apic_printk(APIC_VERBOSE, "lapic timer already calibrated %d\n",
  617. lapic_timer_frequency);
  618. lapic_clockevent.mult = div_sc(lapic_timer_frequency/APIC_DIVISOR,
  619. TICK_NSEC, lapic_clockevent.shift);
  620. lapic_clockevent.max_delta_ns =
  621. clockevent_delta2ns(0x7FFFFF, &lapic_clockevent);
  622. lapic_clockevent.min_delta_ns =
  623. clockevent_delta2ns(0xF, &lapic_clockevent);
  624. lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
  625. return 0;
  626. }
  627. apic_printk(APIC_VERBOSE, "Using local APIC timer interrupts.\n"
  628. "calibrating APIC timer ...\n");
  629. local_irq_disable();
  630. /* Replace the global interrupt handler */
  631. real_handler = global_clock_event->event_handler;
  632. global_clock_event->event_handler = lapic_cal_handler;
  633. /*
  634. * Setup the APIC counter to maximum. There is no way the lapic
  635. * can underflow in the 100ms detection time frame
  636. */
  637. __setup_APIC_LVTT(0xffffffff, 0, 0);
  638. /* Let the interrupts run */
  639. local_irq_enable();
  640. while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
  641. cpu_relax();
  642. local_irq_disable();
  643. /* Restore the real event handler */
  644. global_clock_event->event_handler = real_handler;
  645. /* Build delta t1-t2 as apic timer counts down */
  646. delta = lapic_cal_t1 - lapic_cal_t2;
  647. apic_printk(APIC_VERBOSE, "... lapic delta = %ld\n", delta);
  648. deltatsc = (long)(lapic_cal_tsc2 - lapic_cal_tsc1);
  649. /* we trust the PM based calibration if possible */
  650. pm_referenced = !calibrate_by_pmtimer(lapic_cal_pm2 - lapic_cal_pm1,
  651. &delta, &deltatsc);
  652. /* Calculate the scaled math multiplication factor */
  653. lapic_clockevent.mult = div_sc(delta, TICK_NSEC * LAPIC_CAL_LOOPS,
  654. lapic_clockevent.shift);
  655. lapic_clockevent.max_delta_ns =
  656. clockevent_delta2ns(0x7FFFFFFF, &lapic_clockevent);
  657. lapic_clockevent.min_delta_ns =
  658. clockevent_delta2ns(0xF, &lapic_clockevent);
  659. lapic_timer_frequency = (delta * APIC_DIVISOR) / LAPIC_CAL_LOOPS;
  660. apic_printk(APIC_VERBOSE, "..... delta %ld\n", delta);
  661. apic_printk(APIC_VERBOSE, "..... mult: %u\n", lapic_clockevent.mult);
  662. apic_printk(APIC_VERBOSE, "..... calibration result: %u\n",
  663. lapic_timer_frequency);
  664. if (boot_cpu_has(X86_FEATURE_TSC)) {
  665. apic_printk(APIC_VERBOSE, "..... CPU clock speed is "
  666. "%ld.%04ld MHz.\n",
  667. (deltatsc / LAPIC_CAL_LOOPS) / (1000000 / HZ),
  668. (deltatsc / LAPIC_CAL_LOOPS) % (1000000 / HZ));
  669. }
  670. apic_printk(APIC_VERBOSE, "..... host bus clock speed is "
  671. "%u.%04u MHz.\n",
  672. lapic_timer_frequency / (1000000 / HZ),
  673. lapic_timer_frequency % (1000000 / HZ));
  674. /*
  675. * Do a sanity check on the APIC calibration result
  676. */
  677. if (lapic_timer_frequency < (1000000 / HZ)) {
  678. local_irq_enable();
  679. pr_warning("APIC frequency too slow, disabling apic timer\n");
  680. return -1;
  681. }
  682. levt->features &= ~CLOCK_EVT_FEAT_DUMMY;
  683. /*
  684. * PM timer calibration failed or not turned on
  685. * so lets try APIC timer based calibration
  686. */
  687. if (!pm_referenced) {
  688. apic_printk(APIC_VERBOSE, "... verify APIC timer\n");
  689. /*
  690. * Setup the apic timer manually
  691. */
  692. levt->event_handler = lapic_cal_handler;
  693. lapic_timer_set_periodic(levt);
  694. lapic_cal_loops = -1;
  695. /* Let the interrupts run */
  696. local_irq_enable();
  697. while (lapic_cal_loops <= LAPIC_CAL_LOOPS)
  698. cpu_relax();
  699. /* Stop the lapic timer */
  700. local_irq_disable();
  701. lapic_timer_shutdown(levt);
  702. /* Jiffies delta */
  703. deltaj = lapic_cal_j2 - lapic_cal_j1;
  704. apic_printk(APIC_VERBOSE, "... jiffies delta = %lu\n", deltaj);
  705. /* Check, if the jiffies result is consistent */
  706. if (deltaj >= LAPIC_CAL_LOOPS-2 && deltaj <= LAPIC_CAL_LOOPS+2)
  707. apic_printk(APIC_VERBOSE, "... jiffies result ok\n");
  708. else
  709. levt->features |= CLOCK_EVT_FEAT_DUMMY;
  710. }
  711. local_irq_enable();
  712. if (levt->features & CLOCK_EVT_FEAT_DUMMY) {
  713. pr_warning("APIC timer disabled due to verification failure\n");
  714. return -1;
  715. }
  716. return 0;
  717. }
  718. /*
  719. * Setup the boot APIC
  720. *
  721. * Calibrate and verify the result.
  722. */
  723. void __init setup_boot_APIC_clock(void)
  724. {
  725. /*
  726. * The local apic timer can be disabled via the kernel
  727. * commandline or from the CPU detection code. Register the lapic
  728. * timer as a dummy clock event source on SMP systems, so the
  729. * broadcast mechanism is used. On UP systems simply ignore it.
  730. */
  731. if (disable_apic_timer) {
  732. pr_info("Disabling APIC timer\n");
  733. /* No broadcast on UP ! */
  734. if (num_possible_cpus() > 1) {
  735. lapic_clockevent.mult = 1;
  736. setup_APIC_timer();
  737. }
  738. return;
  739. }
  740. if (calibrate_APIC_clock()) {
  741. /* No broadcast on UP ! */
  742. if (num_possible_cpus() > 1)
  743. setup_APIC_timer();
  744. return;
  745. }
  746. /*
  747. * If nmi_watchdog is set to IO_APIC, we need the
  748. * PIT/HPET going. Otherwise register lapic as a dummy
  749. * device.
  750. */
  751. lapic_clockevent.features &= ~CLOCK_EVT_FEAT_DUMMY;
  752. /* Setup the lapic or request the broadcast */
  753. setup_APIC_timer();
  754. }
  755. void setup_secondary_APIC_clock(void)
  756. {
  757. setup_APIC_timer();
  758. }
  759. /*
  760. * The guts of the apic timer interrupt
  761. */
  762. static void local_apic_timer_interrupt(void)
  763. {
  764. int cpu = smp_processor_id();
  765. struct clock_event_device *evt = &per_cpu(lapic_events, cpu);
  766. /*
  767. * Normally we should not be here till LAPIC has been initialized but
  768. * in some cases like kdump, its possible that there is a pending LAPIC
  769. * timer interrupt from previous kernel's context and is delivered in
  770. * new kernel the moment interrupts are enabled.
  771. *
  772. * Interrupts are enabled early and LAPIC is setup much later, hence
  773. * its possible that when we get here evt->event_handler is NULL.
  774. * Check for event_handler being NULL and discard the interrupt as
  775. * spurious.
  776. */
  777. if (!evt->event_handler) {
  778. pr_warning("Spurious LAPIC timer interrupt on cpu %d\n", cpu);
  779. /* Switch it off */
  780. lapic_timer_shutdown(evt);
  781. return;
  782. }
  783. /*
  784. * the NMI deadlock-detector uses this.
  785. */
  786. inc_irq_stat(apic_timer_irqs);
  787. evt->event_handler(evt);
  788. }
  789. /*
  790. * Local APIC timer interrupt. This is the most natural way for doing
  791. * local interrupts, but local timer interrupts can be emulated by
  792. * broadcast interrupts too. [in case the hw doesn't support APIC timers]
  793. *
  794. * [ if a single-CPU system runs an SMP kernel then we call the local
  795. * interrupt as well. Thus we cannot inline the local irq ... ]
  796. */
  797. __visible void __irq_entry smp_apic_timer_interrupt(struct pt_regs *regs)
  798. {
  799. struct pt_regs *old_regs = set_irq_regs(regs);
  800. /*
  801. * NOTE! We'd better ACK the irq immediately,
  802. * because timer handling can be slow.
  803. *
  804. * update_process_times() expects us to have done irq_enter().
  805. * Besides, if we don't timer interrupts ignore the global
  806. * interrupt lock, which is the WrongThing (tm) to do.
  807. */
  808. entering_ack_irq();
  809. local_apic_timer_interrupt();
  810. exiting_irq();
  811. set_irq_regs(old_regs);
  812. }
  813. __visible void __irq_entry smp_trace_apic_timer_interrupt(struct pt_regs *regs)
  814. {
  815. struct pt_regs *old_regs = set_irq_regs(regs);
  816. /*
  817. * NOTE! We'd better ACK the irq immediately,
  818. * because timer handling can be slow.
  819. *
  820. * update_process_times() expects us to have done irq_enter().
  821. * Besides, if we don't timer interrupts ignore the global
  822. * interrupt lock, which is the WrongThing (tm) to do.
  823. */
  824. entering_ack_irq();
  825. trace_local_timer_entry(LOCAL_TIMER_VECTOR);
  826. local_apic_timer_interrupt();
  827. trace_local_timer_exit(LOCAL_TIMER_VECTOR);
  828. exiting_irq();
  829. set_irq_regs(old_regs);
  830. }
  831. int setup_profiling_timer(unsigned int multiplier)
  832. {
  833. return -EINVAL;
  834. }
  835. /*
  836. * Local APIC start and shutdown
  837. */
  838. /**
  839. * clear_local_APIC - shutdown the local APIC
  840. *
  841. * This is called, when a CPU is disabled and before rebooting, so the state of
  842. * the local APIC has no dangling leftovers. Also used to cleanout any BIOS
  843. * leftovers during boot.
  844. */
  845. void clear_local_APIC(void)
  846. {
  847. int maxlvt;
  848. u32 v;
  849. /* APIC hasn't been mapped yet */
  850. if (!x2apic_mode && !apic_phys)
  851. return;
  852. maxlvt = lapic_get_maxlvt();
  853. /*
  854. * Masking an LVT entry can trigger a local APIC error
  855. * if the vector is zero. Mask LVTERR first to prevent this.
  856. */
  857. if (maxlvt >= 3) {
  858. v = ERROR_APIC_VECTOR; /* any non-zero vector will do */
  859. apic_write(APIC_LVTERR, v | APIC_LVT_MASKED);
  860. }
  861. /*
  862. * Careful: we have to set masks only first to deassert
  863. * any level-triggered sources.
  864. */
  865. v = apic_read(APIC_LVTT);
  866. apic_write(APIC_LVTT, v | APIC_LVT_MASKED);
  867. v = apic_read(APIC_LVT0);
  868. apic_write(APIC_LVT0, v | APIC_LVT_MASKED);
  869. v = apic_read(APIC_LVT1);
  870. apic_write(APIC_LVT1, v | APIC_LVT_MASKED);
  871. if (maxlvt >= 4) {
  872. v = apic_read(APIC_LVTPC);
  873. apic_write(APIC_LVTPC, v | APIC_LVT_MASKED);
  874. }
  875. /* lets not touch this if we didn't frob it */
  876. #ifdef CONFIG_X86_THERMAL_VECTOR
  877. if (maxlvt >= 5) {
  878. v = apic_read(APIC_LVTTHMR);
  879. apic_write(APIC_LVTTHMR, v | APIC_LVT_MASKED);
  880. }
  881. #endif
  882. #ifdef CONFIG_X86_MCE_INTEL
  883. if (maxlvt >= 6) {
  884. v = apic_read(APIC_LVTCMCI);
  885. if (!(v & APIC_LVT_MASKED))
  886. apic_write(APIC_LVTCMCI, v | APIC_LVT_MASKED);
  887. }
  888. #endif
  889. /*
  890. * Clean APIC state for other OSs:
  891. */
  892. apic_write(APIC_LVTT, APIC_LVT_MASKED);
  893. apic_write(APIC_LVT0, APIC_LVT_MASKED);
  894. apic_write(APIC_LVT1, APIC_LVT_MASKED);
  895. if (maxlvt >= 3)
  896. apic_write(APIC_LVTERR, APIC_LVT_MASKED);
  897. if (maxlvt >= 4)
  898. apic_write(APIC_LVTPC, APIC_LVT_MASKED);
  899. /* Integrated APIC (!82489DX) ? */
  900. if (lapic_is_integrated()) {
  901. if (maxlvt > 3)
  902. /* Clear ESR due to Pentium errata 3AP and 11AP */
  903. apic_write(APIC_ESR, 0);
  904. apic_read(APIC_ESR);
  905. }
  906. }
  907. /**
  908. * disable_local_APIC - clear and disable the local APIC
  909. */
  910. void disable_local_APIC(void)
  911. {
  912. unsigned int value;
  913. /* APIC hasn't been mapped yet */
  914. if (!x2apic_mode && !apic_phys)
  915. return;
  916. clear_local_APIC();
  917. /*
  918. * Disable APIC (implies clearing of registers
  919. * for 82489DX!).
  920. */
  921. value = apic_read(APIC_SPIV);
  922. value &= ~APIC_SPIV_APIC_ENABLED;
  923. apic_write(APIC_SPIV, value);
  924. #ifdef CONFIG_X86_32
  925. /*
  926. * When LAPIC was disabled by the BIOS and enabled by the kernel,
  927. * restore the disabled state.
  928. */
  929. if (enabled_via_apicbase) {
  930. unsigned int l, h;
  931. rdmsr(MSR_IA32_APICBASE, l, h);
  932. l &= ~MSR_IA32_APICBASE_ENABLE;
  933. wrmsr(MSR_IA32_APICBASE, l, h);
  934. }
  935. #endif
  936. }
  937. /*
  938. * If Linux enabled the LAPIC against the BIOS default disable it down before
  939. * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
  940. * not power-off. Additionally clear all LVT entries before disable_local_APIC
  941. * for the case where Linux didn't enable the LAPIC.
  942. */
  943. void lapic_shutdown(void)
  944. {
  945. unsigned long flags;
  946. if (!boot_cpu_has(X86_FEATURE_APIC) && !apic_from_smp_config())
  947. return;
  948. local_irq_save(flags);
  949. #ifdef CONFIG_X86_32
  950. if (!enabled_via_apicbase)
  951. clear_local_APIC();
  952. else
  953. #endif
  954. disable_local_APIC();
  955. local_irq_restore(flags);
  956. }
  957. /**
  958. * sync_Arb_IDs - synchronize APIC bus arbitration IDs
  959. */
  960. void __init sync_Arb_IDs(void)
  961. {
  962. /*
  963. * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
  964. * needed on AMD.
  965. */
  966. if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
  967. return;
  968. /*
  969. * Wait for idle.
  970. */
  971. apic_wait_icr_idle();
  972. apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
  973. apic_write(APIC_ICR, APIC_DEST_ALLINC |
  974. APIC_INT_LEVELTRIG | APIC_DM_INIT);
  975. }
  976. /*
  977. * An initial setup of the virtual wire mode.
  978. */
  979. void __init init_bsp_APIC(void)
  980. {
  981. unsigned int value;
  982. /*
  983. * Don't do the setup now if we have a SMP BIOS as the
  984. * through-I/O-APIC virtual wire mode might be active.
  985. */
  986. if (smp_found_config || !boot_cpu_has(X86_FEATURE_APIC))
  987. return;
  988. /*
  989. * Do not trust the local APIC being empty at bootup.
  990. */
  991. clear_local_APIC();
  992. /*
  993. * Enable APIC.
  994. */
  995. value = apic_read(APIC_SPIV);
  996. value &= ~APIC_VECTOR_MASK;
  997. value |= APIC_SPIV_APIC_ENABLED;
  998. #ifdef CONFIG_X86_32
  999. /* This bit is reserved on P4/Xeon and should be cleared */
  1000. if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
  1001. (boot_cpu_data.x86 == 15))
  1002. value &= ~APIC_SPIV_FOCUS_DISABLED;
  1003. else
  1004. #endif
  1005. value |= APIC_SPIV_FOCUS_DISABLED;
  1006. value |= SPURIOUS_APIC_VECTOR;
  1007. apic_write(APIC_SPIV, value);
  1008. /*
  1009. * Set up the virtual wire mode.
  1010. */
  1011. apic_write(APIC_LVT0, APIC_DM_EXTINT);
  1012. value = APIC_DM_NMI;
  1013. if (!lapic_is_integrated()) /* 82489DX */
  1014. value |= APIC_LVT_LEVEL_TRIGGER;
  1015. if (apic_extnmi == APIC_EXTNMI_NONE)
  1016. value |= APIC_LVT_MASKED;
  1017. apic_write(APIC_LVT1, value);
  1018. }
  1019. static void lapic_setup_esr(void)
  1020. {
  1021. unsigned int oldvalue, value, maxlvt;
  1022. if (!lapic_is_integrated()) {
  1023. pr_info("No ESR for 82489DX.\n");
  1024. return;
  1025. }
  1026. if (apic->disable_esr) {
  1027. /*
  1028. * Something untraceable is creating bad interrupts on
  1029. * secondary quads ... for the moment, just leave the
  1030. * ESR disabled - we can't do anything useful with the
  1031. * errors anyway - mbligh
  1032. */
  1033. pr_info("Leaving ESR disabled.\n");
  1034. return;
  1035. }
  1036. maxlvt = lapic_get_maxlvt();
  1037. if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
  1038. apic_write(APIC_ESR, 0);
  1039. oldvalue = apic_read(APIC_ESR);
  1040. /* enables sending errors */
  1041. value = ERROR_APIC_VECTOR;
  1042. apic_write(APIC_LVTERR, value);
  1043. /*
  1044. * spec says clear errors after enabling vector.
  1045. */
  1046. if (maxlvt > 3)
  1047. apic_write(APIC_ESR, 0);
  1048. value = apic_read(APIC_ESR);
  1049. if (value != oldvalue)
  1050. apic_printk(APIC_VERBOSE, "ESR value before enabling "
  1051. "vector: 0x%08x after: 0x%08x\n",
  1052. oldvalue, value);
  1053. }
  1054. /**
  1055. * setup_local_APIC - setup the local APIC
  1056. *
  1057. * Used to setup local APIC while initializing BSP or bringin up APs.
  1058. * Always called with preemption disabled.
  1059. */
  1060. void setup_local_APIC(void)
  1061. {
  1062. int cpu = smp_processor_id();
  1063. unsigned int value, queued;
  1064. int i, j, acked = 0;
  1065. unsigned long long tsc = 0, ntsc;
  1066. long long max_loops = cpu_khz ? cpu_khz : 1000000;
  1067. if (boot_cpu_has(X86_FEATURE_TSC))
  1068. tsc = rdtsc();
  1069. if (disable_apic) {
  1070. disable_ioapic_support();
  1071. return;
  1072. }
  1073. #ifdef CONFIG_X86_32
  1074. /* Pound the ESR really hard over the head with a big hammer - mbligh */
  1075. if (lapic_is_integrated() && apic->disable_esr) {
  1076. apic_write(APIC_ESR, 0);
  1077. apic_write(APIC_ESR, 0);
  1078. apic_write(APIC_ESR, 0);
  1079. apic_write(APIC_ESR, 0);
  1080. }
  1081. #endif
  1082. perf_events_lapic_init();
  1083. /*
  1084. * Double-check whether this APIC is really registered.
  1085. * This is meaningless in clustered apic mode, so we skip it.
  1086. */
  1087. BUG_ON(!apic->apic_id_registered());
  1088. /*
  1089. * Intel recommends to set DFR, LDR and TPR before enabling
  1090. * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
  1091. * document number 292116). So here it goes...
  1092. */
  1093. apic->init_apic_ldr();
  1094. #ifdef CONFIG_X86_32
  1095. /*
  1096. * APIC LDR is initialized. If logical_apicid mapping was
  1097. * initialized during get_smp_config(), make sure it matches the
  1098. * actual value.
  1099. */
  1100. i = early_per_cpu(x86_cpu_to_logical_apicid, cpu);
  1101. WARN_ON(i != BAD_APICID && i != logical_smp_processor_id());
  1102. /* always use the value from LDR */
  1103. early_per_cpu(x86_cpu_to_logical_apicid, cpu) =
  1104. logical_smp_processor_id();
  1105. #endif
  1106. /*
  1107. * Set Task Priority to 'accept all'. We never change this
  1108. * later on.
  1109. */
  1110. value = apic_read(APIC_TASKPRI);
  1111. value &= ~APIC_TPRI_MASK;
  1112. apic_write(APIC_TASKPRI, value);
  1113. /*
  1114. * After a crash, we no longer service the interrupts and a pending
  1115. * interrupt from previous kernel might still have ISR bit set.
  1116. *
  1117. * Most probably by now CPU has serviced that pending interrupt and
  1118. * it might not have done the ack_APIC_irq() because it thought,
  1119. * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
  1120. * does not clear the ISR bit and cpu thinks it has already serivced
  1121. * the interrupt. Hence a vector might get locked. It was noticed
  1122. * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
  1123. */
  1124. do {
  1125. queued = 0;
  1126. for (i = APIC_ISR_NR - 1; i >= 0; i--)
  1127. queued |= apic_read(APIC_IRR + i*0x10);
  1128. for (i = APIC_ISR_NR - 1; i >= 0; i--) {
  1129. value = apic_read(APIC_ISR + i*0x10);
  1130. for (j = 31; j >= 0; j--) {
  1131. if (value & (1<<j)) {
  1132. ack_APIC_irq();
  1133. acked++;
  1134. }
  1135. }
  1136. }
  1137. if (acked > 256) {
  1138. printk(KERN_ERR "LAPIC pending interrupts after %d EOI\n",
  1139. acked);
  1140. break;
  1141. }
  1142. if (queued) {
  1143. if (boot_cpu_has(X86_FEATURE_TSC) && cpu_khz) {
  1144. ntsc = rdtsc();
  1145. max_loops = (cpu_khz << 10) - (ntsc - tsc);
  1146. } else
  1147. max_loops--;
  1148. }
  1149. } while (queued && max_loops > 0);
  1150. WARN_ON(max_loops <= 0);
  1151. /*
  1152. * Now that we are all set up, enable the APIC
  1153. */
  1154. value = apic_read(APIC_SPIV);
  1155. value &= ~APIC_VECTOR_MASK;
  1156. /*
  1157. * Enable APIC
  1158. */
  1159. value |= APIC_SPIV_APIC_ENABLED;
  1160. #ifdef CONFIG_X86_32
  1161. /*
  1162. * Some unknown Intel IO/APIC (or APIC) errata is biting us with
  1163. * certain networking cards. If high frequency interrupts are
  1164. * happening on a particular IOAPIC pin, plus the IOAPIC routing
  1165. * entry is masked/unmasked at a high rate as well then sooner or
  1166. * later IOAPIC line gets 'stuck', no more interrupts are received
  1167. * from the device. If focus CPU is disabled then the hang goes
  1168. * away, oh well :-(
  1169. *
  1170. * [ This bug can be reproduced easily with a level-triggered
  1171. * PCI Ne2000 networking cards and PII/PIII processors, dual
  1172. * BX chipset. ]
  1173. */
  1174. /*
  1175. * Actually disabling the focus CPU check just makes the hang less
  1176. * frequent as it makes the interrupt distributon model be more
  1177. * like LRU than MRU (the short-term load is more even across CPUs).
  1178. * See also the comment in end_level_ioapic_irq(). --macro
  1179. */
  1180. /*
  1181. * - enable focus processor (bit==0)
  1182. * - 64bit mode always use processor focus
  1183. * so no need to set it
  1184. */
  1185. value &= ~APIC_SPIV_FOCUS_DISABLED;
  1186. #endif
  1187. /*
  1188. * Set spurious IRQ vector
  1189. */
  1190. value |= SPURIOUS_APIC_VECTOR;
  1191. apic_write(APIC_SPIV, value);
  1192. /*
  1193. * Set up LVT0, LVT1:
  1194. *
  1195. * set up through-local-APIC on the BP's LINT0. This is not
  1196. * strictly necessary in pure symmetric-IO mode, but sometimes
  1197. * we delegate interrupts to the 8259A.
  1198. */
  1199. /*
  1200. * TODO: set up through-local-APIC from through-I/O-APIC? --macro
  1201. */
  1202. value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
  1203. if (!cpu && (pic_mode || !value)) {
  1204. value = APIC_DM_EXTINT;
  1205. apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n", cpu);
  1206. } else {
  1207. value = APIC_DM_EXTINT | APIC_LVT_MASKED;
  1208. apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n", cpu);
  1209. }
  1210. apic_write(APIC_LVT0, value);
  1211. /*
  1212. * Only the BSP sees the LINT1 NMI signal by default. This can be
  1213. * modified by apic_extnmi= boot option.
  1214. */
  1215. if ((!cpu && apic_extnmi != APIC_EXTNMI_NONE) ||
  1216. apic_extnmi == APIC_EXTNMI_ALL)
  1217. value = APIC_DM_NMI;
  1218. else
  1219. value = APIC_DM_NMI | APIC_LVT_MASKED;
  1220. if (!lapic_is_integrated()) /* 82489DX */
  1221. value |= APIC_LVT_LEVEL_TRIGGER;
  1222. apic_write(APIC_LVT1, value);
  1223. #ifdef CONFIG_X86_MCE_INTEL
  1224. /* Recheck CMCI information after local APIC is up on CPU #0 */
  1225. if (!cpu)
  1226. cmci_recheck();
  1227. #endif
  1228. }
  1229. static void end_local_APIC_setup(void)
  1230. {
  1231. lapic_setup_esr();
  1232. #ifdef CONFIG_X86_32
  1233. {
  1234. unsigned int value;
  1235. /* Disable the local apic timer */
  1236. value = apic_read(APIC_LVTT);
  1237. value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
  1238. apic_write(APIC_LVTT, value);
  1239. }
  1240. #endif
  1241. apic_pm_activate();
  1242. }
  1243. /*
  1244. * APIC setup function for application processors. Called from smpboot.c
  1245. */
  1246. void apic_ap_setup(void)
  1247. {
  1248. setup_local_APIC();
  1249. end_local_APIC_setup();
  1250. }
  1251. #ifdef CONFIG_X86_X2APIC
  1252. int x2apic_mode;
  1253. enum {
  1254. X2APIC_OFF,
  1255. X2APIC_ON,
  1256. X2APIC_DISABLED,
  1257. };
  1258. static int x2apic_state;
  1259. static void __x2apic_disable(void)
  1260. {
  1261. u64 msr;
  1262. if (!boot_cpu_has(X86_FEATURE_APIC))
  1263. return;
  1264. rdmsrl(MSR_IA32_APICBASE, msr);
  1265. if (!(msr & X2APIC_ENABLE))
  1266. return;
  1267. /* Disable xapic and x2apic first and then reenable xapic mode */
  1268. wrmsrl(MSR_IA32_APICBASE, msr & ~(X2APIC_ENABLE | XAPIC_ENABLE));
  1269. wrmsrl(MSR_IA32_APICBASE, msr & ~X2APIC_ENABLE);
  1270. printk_once(KERN_INFO "x2apic disabled\n");
  1271. }
  1272. static void __x2apic_enable(void)
  1273. {
  1274. u64 msr;
  1275. rdmsrl(MSR_IA32_APICBASE, msr);
  1276. if (msr & X2APIC_ENABLE)
  1277. return;
  1278. wrmsrl(MSR_IA32_APICBASE, msr | X2APIC_ENABLE);
  1279. printk_once(KERN_INFO "x2apic enabled\n");
  1280. }
  1281. static int __init setup_nox2apic(char *str)
  1282. {
  1283. if (x2apic_enabled()) {
  1284. int apicid = native_apic_msr_read(APIC_ID);
  1285. if (apicid >= 255) {
  1286. pr_warning("Apicid: %08x, cannot enforce nox2apic\n",
  1287. apicid);
  1288. return 0;
  1289. }
  1290. pr_warning("x2apic already enabled.\n");
  1291. __x2apic_disable();
  1292. }
  1293. setup_clear_cpu_cap(X86_FEATURE_X2APIC);
  1294. x2apic_state = X2APIC_DISABLED;
  1295. x2apic_mode = 0;
  1296. return 0;
  1297. }
  1298. early_param("nox2apic", setup_nox2apic);
  1299. /* Called from cpu_init() to enable x2apic on (secondary) cpus */
  1300. void x2apic_setup(void)
  1301. {
  1302. /*
  1303. * If x2apic is not in ON state, disable it if already enabled
  1304. * from BIOS.
  1305. */
  1306. if (x2apic_state != X2APIC_ON) {
  1307. __x2apic_disable();
  1308. return;
  1309. }
  1310. __x2apic_enable();
  1311. }
  1312. static __init void x2apic_disable(void)
  1313. {
  1314. u32 x2apic_id, state = x2apic_state;
  1315. x2apic_mode = 0;
  1316. x2apic_state = X2APIC_DISABLED;
  1317. if (state != X2APIC_ON)
  1318. return;
  1319. x2apic_id = read_apic_id();
  1320. if (x2apic_id >= 255)
  1321. panic("Cannot disable x2apic, id: %08x\n", x2apic_id);
  1322. __x2apic_disable();
  1323. register_lapic_address(mp_lapic_addr);
  1324. }
  1325. static __init void x2apic_enable(void)
  1326. {
  1327. if (x2apic_state != X2APIC_OFF)
  1328. return;
  1329. x2apic_mode = 1;
  1330. x2apic_state = X2APIC_ON;
  1331. __x2apic_enable();
  1332. }
  1333. static __init void try_to_enable_x2apic(int remap_mode)
  1334. {
  1335. if (x2apic_state == X2APIC_DISABLED)
  1336. return;
  1337. if (remap_mode != IRQ_REMAP_X2APIC_MODE) {
  1338. /* IR is required if there is APIC ID > 255 even when running
  1339. * under KVM
  1340. */
  1341. if (max_physical_apicid > 255 ||
  1342. !hypervisor_x2apic_available()) {
  1343. pr_info("x2apic: IRQ remapping doesn't support X2APIC mode\n");
  1344. x2apic_disable();
  1345. return;
  1346. }
  1347. /*
  1348. * without IR all CPUs can be addressed by IOAPIC/MSI
  1349. * only in physical mode
  1350. */
  1351. x2apic_phys = 1;
  1352. }
  1353. x2apic_enable();
  1354. }
  1355. void __init check_x2apic(void)
  1356. {
  1357. if (x2apic_enabled()) {
  1358. pr_info("x2apic: enabled by BIOS, switching to x2apic ops\n");
  1359. x2apic_mode = 1;
  1360. x2apic_state = X2APIC_ON;
  1361. } else if (!boot_cpu_has(X86_FEATURE_X2APIC)) {
  1362. x2apic_state = X2APIC_DISABLED;
  1363. }
  1364. }
  1365. #else /* CONFIG_X86_X2APIC */
  1366. static int __init validate_x2apic(void)
  1367. {
  1368. if (!apic_is_x2apic_enabled())
  1369. return 0;
  1370. /*
  1371. * Checkme: Can we simply turn off x2apic here instead of panic?
  1372. */
  1373. panic("BIOS has enabled x2apic but kernel doesn't support x2apic, please disable x2apic in BIOS.\n");
  1374. }
  1375. early_initcall(validate_x2apic);
  1376. static inline void try_to_enable_x2apic(int remap_mode) { }
  1377. static inline void __x2apic_enable(void) { }
  1378. #endif /* !CONFIG_X86_X2APIC */
  1379. static int __init try_to_enable_IR(void)
  1380. {
  1381. #ifdef CONFIG_X86_IO_APIC
  1382. if (!x2apic_enabled() && skip_ioapic_setup) {
  1383. pr_info("Not enabling interrupt remapping due to skipped IO-APIC setup\n");
  1384. return -1;
  1385. }
  1386. #endif
  1387. return irq_remapping_enable();
  1388. }
  1389. void __init enable_IR_x2apic(void)
  1390. {
  1391. unsigned long flags;
  1392. int ret, ir_stat;
  1393. if (skip_ioapic_setup)
  1394. return;
  1395. ir_stat = irq_remapping_prepare();
  1396. if (ir_stat < 0 && !x2apic_supported())
  1397. return;
  1398. ret = save_ioapic_entries();
  1399. if (ret) {
  1400. pr_info("Saving IO-APIC state failed: %d\n", ret);
  1401. return;
  1402. }
  1403. local_irq_save(flags);
  1404. legacy_pic->mask_all();
  1405. mask_ioapic_entries();
  1406. /* If irq_remapping_prepare() succeeded, try to enable it */
  1407. if (ir_stat >= 0)
  1408. ir_stat = try_to_enable_IR();
  1409. /* ir_stat contains the remap mode or an error code */
  1410. try_to_enable_x2apic(ir_stat);
  1411. if (ir_stat < 0)
  1412. restore_ioapic_entries();
  1413. legacy_pic->restore_mask();
  1414. local_irq_restore(flags);
  1415. }
  1416. #ifdef CONFIG_X86_64
  1417. /*
  1418. * Detect and enable local APICs on non-SMP boards.
  1419. * Original code written by Keir Fraser.
  1420. * On AMD64 we trust the BIOS - if it says no APIC it is likely
  1421. * not correctly set up (usually the APIC timer won't work etc.)
  1422. */
  1423. static int __init detect_init_APIC(void)
  1424. {
  1425. if (!boot_cpu_has(X86_FEATURE_APIC)) {
  1426. pr_info("No local APIC present\n");
  1427. return -1;
  1428. }
  1429. mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
  1430. return 0;
  1431. }
  1432. #else
  1433. static int __init apic_verify(void)
  1434. {
  1435. u32 features, h, l;
  1436. /*
  1437. * The APIC feature bit should now be enabled
  1438. * in `cpuid'
  1439. */
  1440. features = cpuid_edx(1);
  1441. if (!(features & (1 << X86_FEATURE_APIC))) {
  1442. pr_warning("Could not enable APIC!\n");
  1443. return -1;
  1444. }
  1445. set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
  1446. mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
  1447. /* The BIOS may have set up the APIC at some other address */
  1448. if (boot_cpu_data.x86 >= 6) {
  1449. rdmsr(MSR_IA32_APICBASE, l, h);
  1450. if (l & MSR_IA32_APICBASE_ENABLE)
  1451. mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
  1452. }
  1453. pr_info("Found and enabled local APIC!\n");
  1454. return 0;
  1455. }
  1456. int __init apic_force_enable(unsigned long addr)
  1457. {
  1458. u32 h, l;
  1459. if (disable_apic)
  1460. return -1;
  1461. /*
  1462. * Some BIOSes disable the local APIC in the APIC_BASE
  1463. * MSR. This can only be done in software for Intel P6 or later
  1464. * and AMD K7 (Model > 1) or later.
  1465. */
  1466. if (boot_cpu_data.x86 >= 6) {
  1467. rdmsr(MSR_IA32_APICBASE, l, h);
  1468. if (!(l & MSR_IA32_APICBASE_ENABLE)) {
  1469. pr_info("Local APIC disabled by BIOS -- reenabling.\n");
  1470. l &= ~MSR_IA32_APICBASE_BASE;
  1471. l |= MSR_IA32_APICBASE_ENABLE | addr;
  1472. wrmsr(MSR_IA32_APICBASE, l, h);
  1473. enabled_via_apicbase = 1;
  1474. }
  1475. }
  1476. return apic_verify();
  1477. }
  1478. /*
  1479. * Detect and initialize APIC
  1480. */
  1481. static int __init detect_init_APIC(void)
  1482. {
  1483. /* Disabled by kernel option? */
  1484. if (disable_apic)
  1485. return -1;
  1486. switch (boot_cpu_data.x86_vendor) {
  1487. case X86_VENDOR_AMD:
  1488. if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
  1489. (boot_cpu_data.x86 >= 15))
  1490. break;
  1491. goto no_apic;
  1492. case X86_VENDOR_INTEL:
  1493. if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
  1494. (boot_cpu_data.x86 == 5 && boot_cpu_has(X86_FEATURE_APIC)))
  1495. break;
  1496. goto no_apic;
  1497. default:
  1498. goto no_apic;
  1499. }
  1500. if (!boot_cpu_has(X86_FEATURE_APIC)) {
  1501. /*
  1502. * Over-ride BIOS and try to enable the local APIC only if
  1503. * "lapic" specified.
  1504. */
  1505. if (!force_enable_local_apic) {
  1506. pr_info("Local APIC disabled by BIOS -- "
  1507. "you can enable it with \"lapic\"\n");
  1508. return -1;
  1509. }
  1510. if (apic_force_enable(APIC_DEFAULT_PHYS_BASE))
  1511. return -1;
  1512. } else {
  1513. if (apic_verify())
  1514. return -1;
  1515. }
  1516. apic_pm_activate();
  1517. return 0;
  1518. no_apic:
  1519. pr_info("No local APIC present or hardware disabled\n");
  1520. return -1;
  1521. }
  1522. #endif
  1523. /**
  1524. * init_apic_mappings - initialize APIC mappings
  1525. */
  1526. void __init init_apic_mappings(void)
  1527. {
  1528. unsigned int new_apicid;
  1529. if (x2apic_mode) {
  1530. boot_cpu_physical_apicid = read_apic_id();
  1531. return;
  1532. }
  1533. /* If no local APIC can be found return early */
  1534. if (!smp_found_config && detect_init_APIC()) {
  1535. /* lets NOP'ify apic operations */
  1536. pr_info("APIC: disable apic facility\n");
  1537. apic_disable();
  1538. } else {
  1539. apic_phys = mp_lapic_addr;
  1540. /*
  1541. * acpi lapic path already maps that address in
  1542. * acpi_register_lapic_address()
  1543. */
  1544. if (!acpi_lapic && !smp_found_config)
  1545. register_lapic_address(apic_phys);
  1546. }
  1547. /*
  1548. * Fetch the APIC ID of the BSP in case we have a
  1549. * default configuration (or the MP table is broken).
  1550. */
  1551. new_apicid = read_apic_id();
  1552. if (boot_cpu_physical_apicid != new_apicid) {
  1553. boot_cpu_physical_apicid = new_apicid;
  1554. /*
  1555. * yeah -- we lie about apic_version
  1556. * in case if apic was disabled via boot option
  1557. * but it's not a problem for SMP compiled kernel
  1558. * since smp_sanity_check is prepared for such a case
  1559. * and disable smp mode
  1560. */
  1561. apic_version[new_apicid] =
  1562. GET_APIC_VERSION(apic_read(APIC_LVR));
  1563. }
  1564. }
  1565. void __init register_lapic_address(unsigned long address)
  1566. {
  1567. mp_lapic_addr = address;
  1568. if (!x2apic_mode) {
  1569. set_fixmap_nocache(FIX_APIC_BASE, address);
  1570. apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
  1571. APIC_BASE, mp_lapic_addr);
  1572. }
  1573. if (boot_cpu_physical_apicid == -1U) {
  1574. boot_cpu_physical_apicid = read_apic_id();
  1575. apic_version[boot_cpu_physical_apicid] =
  1576. GET_APIC_VERSION(apic_read(APIC_LVR));
  1577. }
  1578. }
  1579. int apic_version[MAX_LOCAL_APIC];
  1580. /*
  1581. * Local APIC interrupts
  1582. */
  1583. /*
  1584. * This interrupt should _never_ happen with our APIC/SMP architecture
  1585. */
  1586. static void __smp_spurious_interrupt(u8 vector)
  1587. {
  1588. u32 v;
  1589. /*
  1590. * Check if this really is a spurious interrupt and ACK it
  1591. * if it is a vectored one. Just in case...
  1592. * Spurious interrupts should not be ACKed.
  1593. */
  1594. v = apic_read(APIC_ISR + ((vector & ~0x1f) >> 1));
  1595. if (v & (1 << (vector & 0x1f)))
  1596. ack_APIC_irq();
  1597. inc_irq_stat(irq_spurious_count);
  1598. /* see sw-dev-man vol 3, chapter 7.4.13.5 */
  1599. pr_info("spurious APIC interrupt through vector %02x on CPU#%d, "
  1600. "should never happen.\n", vector, smp_processor_id());
  1601. }
  1602. __visible void smp_spurious_interrupt(struct pt_regs *regs)
  1603. {
  1604. entering_irq();
  1605. __smp_spurious_interrupt(~regs->orig_ax);
  1606. exiting_irq();
  1607. }
  1608. __visible void smp_trace_spurious_interrupt(struct pt_regs *regs)
  1609. {
  1610. u8 vector = ~regs->orig_ax;
  1611. entering_irq();
  1612. trace_spurious_apic_entry(vector);
  1613. __smp_spurious_interrupt(vector);
  1614. trace_spurious_apic_exit(vector);
  1615. exiting_irq();
  1616. }
  1617. /*
  1618. * This interrupt should never happen with our APIC/SMP architecture
  1619. */
  1620. static void __smp_error_interrupt(struct pt_regs *regs)
  1621. {
  1622. u32 v;
  1623. u32 i = 0;
  1624. static const char * const error_interrupt_reason[] = {
  1625. "Send CS error", /* APIC Error Bit 0 */
  1626. "Receive CS error", /* APIC Error Bit 1 */
  1627. "Send accept error", /* APIC Error Bit 2 */
  1628. "Receive accept error", /* APIC Error Bit 3 */
  1629. "Redirectable IPI", /* APIC Error Bit 4 */
  1630. "Send illegal vector", /* APIC Error Bit 5 */
  1631. "Received illegal vector", /* APIC Error Bit 6 */
  1632. "Illegal register address", /* APIC Error Bit 7 */
  1633. };
  1634. /* First tickle the hardware, only then report what went on. -- REW */
  1635. if (lapic_get_maxlvt() > 3) /* Due to the Pentium erratum 3AP. */
  1636. apic_write(APIC_ESR, 0);
  1637. v = apic_read(APIC_ESR);
  1638. ack_APIC_irq();
  1639. atomic_inc(&irq_err_count);
  1640. apic_printk(APIC_DEBUG, KERN_DEBUG "APIC error on CPU%d: %02x",
  1641. smp_processor_id(), v);
  1642. v &= 0xff;
  1643. while (v) {
  1644. if (v & 0x1)
  1645. apic_printk(APIC_DEBUG, KERN_CONT " : %s", error_interrupt_reason[i]);
  1646. i++;
  1647. v >>= 1;
  1648. }
  1649. apic_printk(APIC_DEBUG, KERN_CONT "\n");
  1650. }
  1651. __visible void smp_error_interrupt(struct pt_regs *regs)
  1652. {
  1653. entering_irq();
  1654. __smp_error_interrupt(regs);
  1655. exiting_irq();
  1656. }
  1657. __visible void smp_trace_error_interrupt(struct pt_regs *regs)
  1658. {
  1659. entering_irq();
  1660. trace_error_apic_entry(ERROR_APIC_VECTOR);
  1661. __smp_error_interrupt(regs);
  1662. trace_error_apic_exit(ERROR_APIC_VECTOR);
  1663. exiting_irq();
  1664. }
  1665. /**
  1666. * connect_bsp_APIC - attach the APIC to the interrupt system
  1667. */
  1668. static void __init connect_bsp_APIC(void)
  1669. {
  1670. #ifdef CONFIG_X86_32
  1671. if (pic_mode) {
  1672. /*
  1673. * Do not trust the local APIC being empty at bootup.
  1674. */
  1675. clear_local_APIC();
  1676. /*
  1677. * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
  1678. * local APIC to INT and NMI lines.
  1679. */
  1680. apic_printk(APIC_VERBOSE, "leaving PIC mode, "
  1681. "enabling APIC mode.\n");
  1682. imcr_pic_to_apic();
  1683. }
  1684. #endif
  1685. }
  1686. /**
  1687. * disconnect_bsp_APIC - detach the APIC from the interrupt system
  1688. * @virt_wire_setup: indicates, whether virtual wire mode is selected
  1689. *
  1690. * Virtual wire mode is necessary to deliver legacy interrupts even when the
  1691. * APIC is disabled.
  1692. */
  1693. void disconnect_bsp_APIC(int virt_wire_setup)
  1694. {
  1695. unsigned int value;
  1696. #ifdef CONFIG_X86_32
  1697. if (pic_mode) {
  1698. /*
  1699. * Put the board back into PIC mode (has an effect only on
  1700. * certain older boards). Note that APIC interrupts, including
  1701. * IPIs, won't work beyond this point! The only exception are
  1702. * INIT IPIs.
  1703. */
  1704. apic_printk(APIC_VERBOSE, "disabling APIC mode, "
  1705. "entering PIC mode.\n");
  1706. imcr_apic_to_pic();
  1707. return;
  1708. }
  1709. #endif
  1710. /* Go back to Virtual Wire compatibility mode */
  1711. /* For the spurious interrupt use vector F, and enable it */
  1712. value = apic_read(APIC_SPIV);
  1713. value &= ~APIC_VECTOR_MASK;
  1714. value |= APIC_SPIV_APIC_ENABLED;
  1715. value |= 0xf;
  1716. apic_write(APIC_SPIV, value);
  1717. if (!virt_wire_setup) {
  1718. /*
  1719. * For LVT0 make it edge triggered, active high,
  1720. * external and enabled
  1721. */
  1722. value = apic_read(APIC_LVT0);
  1723. value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
  1724. APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
  1725. APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
  1726. value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
  1727. value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
  1728. apic_write(APIC_LVT0, value);
  1729. } else {
  1730. /* Disable LVT0 */
  1731. apic_write(APIC_LVT0, APIC_LVT_MASKED);
  1732. }
  1733. /*
  1734. * For LVT1 make it edge triggered, active high,
  1735. * nmi and enabled
  1736. */
  1737. value = apic_read(APIC_LVT1);
  1738. value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
  1739. APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
  1740. APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
  1741. value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
  1742. value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
  1743. apic_write(APIC_LVT1, value);
  1744. }
  1745. int generic_processor_info(int apicid, int version)
  1746. {
  1747. int cpu, max = nr_cpu_ids;
  1748. bool boot_cpu_detected = physid_isset(boot_cpu_physical_apicid,
  1749. phys_cpu_present_map);
  1750. /*
  1751. * boot_cpu_physical_apicid is designed to have the apicid
  1752. * returned by read_apic_id(), i.e, the apicid of the
  1753. * currently booting-up processor. However, on some platforms,
  1754. * it is temporarily modified by the apicid reported as BSP
  1755. * through MP table. Concretely:
  1756. *
  1757. * - arch/x86/kernel/mpparse.c: MP_processor_info()
  1758. * - arch/x86/mm/amdtopology.c: amd_numa_init()
  1759. *
  1760. * This function is executed with the modified
  1761. * boot_cpu_physical_apicid. So, disabled_cpu_apicid kernel
  1762. * parameter doesn't work to disable APs on kdump 2nd kernel.
  1763. *
  1764. * Since fixing handling of boot_cpu_physical_apicid requires
  1765. * another discussion and tests on each platform, we leave it
  1766. * for now and here we use read_apic_id() directly in this
  1767. * function, generic_processor_info().
  1768. */
  1769. if (disabled_cpu_apicid != BAD_APICID &&
  1770. disabled_cpu_apicid != read_apic_id() &&
  1771. disabled_cpu_apicid == apicid) {
  1772. int thiscpu = num_processors + disabled_cpus;
  1773. pr_warning("APIC: Disabling requested cpu."
  1774. " Processor %d/0x%x ignored.\n",
  1775. thiscpu, apicid);
  1776. disabled_cpus++;
  1777. return -ENODEV;
  1778. }
  1779. /*
  1780. * If boot cpu has not been detected yet, then only allow upto
  1781. * nr_cpu_ids - 1 processors and keep one slot free for boot cpu
  1782. */
  1783. if (!boot_cpu_detected && num_processors >= nr_cpu_ids - 1 &&
  1784. apicid != boot_cpu_physical_apicid) {
  1785. int thiscpu = max + disabled_cpus - 1;
  1786. pr_warning(
  1787. "APIC: NR_CPUS/possible_cpus limit of %i almost"
  1788. " reached. Keeping one slot for boot cpu."
  1789. " Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
  1790. disabled_cpus++;
  1791. return -ENODEV;
  1792. }
  1793. if (num_processors >= nr_cpu_ids) {
  1794. int thiscpu = max + disabled_cpus;
  1795. pr_warning(
  1796. "APIC: NR_CPUS/possible_cpus limit of %i reached."
  1797. " Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
  1798. disabled_cpus++;
  1799. return -EINVAL;
  1800. }
  1801. if (apicid == boot_cpu_physical_apicid) {
  1802. /*
  1803. * x86_bios_cpu_apicid is required to have processors listed
  1804. * in same order as logical cpu numbers. Hence the first
  1805. * entry is BSP, and so on.
  1806. * boot_cpu_init() already hold bit 0 in cpu_present_mask
  1807. * for BSP.
  1808. */
  1809. cpu = 0;
  1810. } else
  1811. cpu = cpumask_next_zero(-1, cpu_present_mask);
  1812. /*
  1813. * This can happen on physical hotplug. The sanity check at boot time
  1814. * is done from native_smp_prepare_cpus() after num_possible_cpus() is
  1815. * established.
  1816. */
  1817. if (topology_update_package_map(apicid, cpu) < 0) {
  1818. int thiscpu = max + disabled_cpus;
  1819. pr_warning("APIC: Package limit reached. Processor %d/0x%x ignored.\n",
  1820. thiscpu, apicid);
  1821. disabled_cpus++;
  1822. return -ENOSPC;
  1823. }
  1824. num_processors++;
  1825. /*
  1826. * Validate version
  1827. */
  1828. if (version == 0x0) {
  1829. pr_warning("BIOS bug: APIC version is 0 for CPU %d/0x%x, fixing up to 0x10\n",
  1830. cpu, apicid);
  1831. version = 0x10;
  1832. }
  1833. apic_version[apicid] = version;
  1834. if (version != apic_version[boot_cpu_physical_apicid]) {
  1835. pr_warning("BIOS bug: APIC version mismatch, boot CPU: %x, CPU %d: version %x\n",
  1836. apic_version[boot_cpu_physical_apicid], cpu, version);
  1837. }
  1838. physid_set(apicid, phys_cpu_present_map);
  1839. if (apicid > max_physical_apicid)
  1840. max_physical_apicid = apicid;
  1841. #if defined(CONFIG_SMP) || defined(CONFIG_X86_64)
  1842. early_per_cpu(x86_cpu_to_apicid, cpu) = apicid;
  1843. early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
  1844. #endif
  1845. #ifdef CONFIG_X86_32
  1846. early_per_cpu(x86_cpu_to_logical_apicid, cpu) =
  1847. apic->x86_32_early_logical_apicid(cpu);
  1848. #endif
  1849. set_cpu_possible(cpu, true);
  1850. set_cpu_present(cpu, true);
  1851. return cpu;
  1852. }
  1853. int hard_smp_processor_id(void)
  1854. {
  1855. return read_apic_id();
  1856. }
  1857. void default_init_apic_ldr(void)
  1858. {
  1859. unsigned long val;
  1860. apic_write(APIC_DFR, APIC_DFR_VALUE);
  1861. val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
  1862. val |= SET_APIC_LOGICAL_ID(1UL << smp_processor_id());
  1863. apic_write(APIC_LDR, val);
  1864. }
  1865. int default_cpu_mask_to_apicid_and(const struct cpumask *cpumask,
  1866. const struct cpumask *andmask,
  1867. unsigned int *apicid)
  1868. {
  1869. unsigned int cpu;
  1870. for_each_cpu_and(cpu, cpumask, andmask) {
  1871. if (cpumask_test_cpu(cpu, cpu_online_mask))
  1872. break;
  1873. }
  1874. if (likely(cpu < nr_cpu_ids)) {
  1875. *apicid = per_cpu(x86_cpu_to_apicid, cpu);
  1876. return 0;
  1877. }
  1878. return -EINVAL;
  1879. }
  1880. /*
  1881. * Override the generic EOI implementation with an optimized version.
  1882. * Only called during early boot when only one CPU is active and with
  1883. * interrupts disabled, so we know this does not race with actual APIC driver
  1884. * use.
  1885. */
  1886. void __init apic_set_eoi_write(void (*eoi_write)(u32 reg, u32 v))
  1887. {
  1888. struct apic **drv;
  1889. for (drv = __apicdrivers; drv < __apicdrivers_end; drv++) {
  1890. /* Should happen once for each apic */
  1891. WARN_ON((*drv)->eoi_write == eoi_write);
  1892. (*drv)->eoi_write = eoi_write;
  1893. }
  1894. }
  1895. static void __init apic_bsp_up_setup(void)
  1896. {
  1897. #ifdef CONFIG_X86_64
  1898. apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
  1899. #else
  1900. /*
  1901. * Hack: In case of kdump, after a crash, kernel might be booting
  1902. * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
  1903. * might be zero if read from MP tables. Get it from LAPIC.
  1904. */
  1905. # ifdef CONFIG_CRASH_DUMP
  1906. boot_cpu_physical_apicid = read_apic_id();
  1907. # endif
  1908. #endif
  1909. physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
  1910. }
  1911. /**
  1912. * apic_bsp_setup - Setup function for local apic and io-apic
  1913. * @upmode: Force UP mode (for APIC_init_uniprocessor)
  1914. *
  1915. * Returns:
  1916. * apic_id of BSP APIC
  1917. */
  1918. int __init apic_bsp_setup(bool upmode)
  1919. {
  1920. int id;
  1921. connect_bsp_APIC();
  1922. if (upmode)
  1923. apic_bsp_up_setup();
  1924. setup_local_APIC();
  1925. if (x2apic_mode)
  1926. id = apic_read(APIC_LDR);
  1927. else
  1928. id = GET_APIC_LOGICAL_ID(apic_read(APIC_LDR));
  1929. enable_IO_APIC();
  1930. end_local_APIC_setup();
  1931. irq_remap_enable_fault_handling();
  1932. setup_IO_APIC();
  1933. /* Setup local timer */
  1934. x86_init.timers.setup_percpu_clockev();
  1935. return id;
  1936. }
  1937. /*
  1938. * This initializes the IO-APIC and APIC hardware if this is
  1939. * a UP kernel.
  1940. */
  1941. int __init APIC_init_uniprocessor(void)
  1942. {
  1943. if (disable_apic) {
  1944. pr_info("Apic disabled\n");
  1945. return -1;
  1946. }
  1947. #ifdef CONFIG_X86_64
  1948. if (!boot_cpu_has(X86_FEATURE_APIC)) {
  1949. disable_apic = 1;
  1950. pr_info("Apic disabled by BIOS\n");
  1951. return -1;
  1952. }
  1953. #else
  1954. if (!smp_found_config && !boot_cpu_has(X86_FEATURE_APIC))
  1955. return -1;
  1956. /*
  1957. * Complain if the BIOS pretends there is one.
  1958. */
  1959. if (!boot_cpu_has(X86_FEATURE_APIC) &&
  1960. APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
  1961. pr_err("BIOS bug, local APIC 0x%x not detected!...\n",
  1962. boot_cpu_physical_apicid);
  1963. return -1;
  1964. }
  1965. #endif
  1966. if (!smp_found_config)
  1967. disable_ioapic_support();
  1968. default_setup_apic_routing();
  1969. apic_bsp_setup(true);
  1970. return 0;
  1971. }
  1972. #ifdef CONFIG_UP_LATE_INIT
  1973. void __init up_late_init(void)
  1974. {
  1975. APIC_init_uniprocessor();
  1976. }
  1977. #endif
  1978. /*
  1979. * Power management
  1980. */
  1981. #ifdef CONFIG_PM
  1982. static struct {
  1983. /*
  1984. * 'active' is true if the local APIC was enabled by us and
  1985. * not the BIOS; this signifies that we are also responsible
  1986. * for disabling it before entering apm/acpi suspend
  1987. */
  1988. int active;
  1989. /* r/w apic fields */
  1990. unsigned int apic_id;
  1991. unsigned int apic_taskpri;
  1992. unsigned int apic_ldr;
  1993. unsigned int apic_dfr;
  1994. unsigned int apic_spiv;
  1995. unsigned int apic_lvtt;
  1996. unsigned int apic_lvtpc;
  1997. unsigned int apic_lvt0;
  1998. unsigned int apic_lvt1;
  1999. unsigned int apic_lvterr;
  2000. unsigned int apic_tmict;
  2001. unsigned int apic_tdcr;
  2002. unsigned int apic_thmr;
  2003. unsigned int apic_cmci;
  2004. } apic_pm_state;
  2005. static int lapic_suspend(void)
  2006. {
  2007. unsigned long flags;
  2008. int maxlvt;
  2009. if (!apic_pm_state.active)
  2010. return 0;
  2011. maxlvt = lapic_get_maxlvt();
  2012. apic_pm_state.apic_id = apic_read(APIC_ID);
  2013. apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
  2014. apic_pm_state.apic_ldr = apic_read(APIC_LDR);
  2015. apic_pm_state.apic_dfr = apic_read(APIC_DFR);
  2016. apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
  2017. apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
  2018. if (maxlvt >= 4)
  2019. apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
  2020. apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
  2021. apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
  2022. apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
  2023. apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
  2024. apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
  2025. #ifdef CONFIG_X86_THERMAL_VECTOR
  2026. if (maxlvt >= 5)
  2027. apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
  2028. #endif
  2029. #ifdef CONFIG_X86_MCE_INTEL
  2030. if (maxlvt >= 6)
  2031. apic_pm_state.apic_cmci = apic_read(APIC_LVTCMCI);
  2032. #endif
  2033. local_irq_save(flags);
  2034. disable_local_APIC();
  2035. irq_remapping_disable();
  2036. local_irq_restore(flags);
  2037. return 0;
  2038. }
  2039. static void lapic_resume(void)
  2040. {
  2041. unsigned int l, h;
  2042. unsigned long flags;
  2043. int maxlvt;
  2044. if (!apic_pm_state.active)
  2045. return;
  2046. local_irq_save(flags);
  2047. /*
  2048. * IO-APIC and PIC have their own resume routines.
  2049. * We just mask them here to make sure the interrupt
  2050. * subsystem is completely quiet while we enable x2apic
  2051. * and interrupt-remapping.
  2052. */
  2053. mask_ioapic_entries();
  2054. legacy_pic->mask_all();
  2055. if (x2apic_mode) {
  2056. __x2apic_enable();
  2057. } else {
  2058. /*
  2059. * Make sure the APICBASE points to the right address
  2060. *
  2061. * FIXME! This will be wrong if we ever support suspend on
  2062. * SMP! We'll need to do this as part of the CPU restore!
  2063. */
  2064. if (boot_cpu_data.x86 >= 6) {
  2065. rdmsr(MSR_IA32_APICBASE, l, h);
  2066. l &= ~MSR_IA32_APICBASE_BASE;
  2067. l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
  2068. wrmsr(MSR_IA32_APICBASE, l, h);
  2069. }
  2070. }
  2071. maxlvt = lapic_get_maxlvt();
  2072. apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
  2073. apic_write(APIC_ID, apic_pm_state.apic_id);
  2074. apic_write(APIC_DFR, apic_pm_state.apic_dfr);
  2075. apic_write(APIC_LDR, apic_pm_state.apic_ldr);
  2076. apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
  2077. apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
  2078. apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
  2079. apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
  2080. #ifdef CONFIG_X86_THERMAL_VECTOR
  2081. if (maxlvt >= 5)
  2082. apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
  2083. #endif
  2084. #ifdef CONFIG_X86_MCE_INTEL
  2085. if (maxlvt >= 6)
  2086. apic_write(APIC_LVTCMCI, apic_pm_state.apic_cmci);
  2087. #endif
  2088. if (maxlvt >= 4)
  2089. apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
  2090. apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
  2091. apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
  2092. apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
  2093. apic_write(APIC_ESR, 0);
  2094. apic_read(APIC_ESR);
  2095. apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
  2096. apic_write(APIC_ESR, 0);
  2097. apic_read(APIC_ESR);
  2098. irq_remapping_reenable(x2apic_mode);
  2099. local_irq_restore(flags);
  2100. }
  2101. /*
  2102. * This device has no shutdown method - fully functioning local APICs
  2103. * are needed on every CPU up until machine_halt/restart/poweroff.
  2104. */
  2105. static struct syscore_ops lapic_syscore_ops = {
  2106. .resume = lapic_resume,
  2107. .suspend = lapic_suspend,
  2108. };
  2109. static void apic_pm_activate(void)
  2110. {
  2111. apic_pm_state.active = 1;
  2112. }
  2113. static int __init init_lapic_sysfs(void)
  2114. {
  2115. /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
  2116. if (boot_cpu_has(X86_FEATURE_APIC))
  2117. register_syscore_ops(&lapic_syscore_ops);
  2118. return 0;
  2119. }
  2120. /* local apic needs to resume before other devices access its registers. */
  2121. core_initcall(init_lapic_sysfs);
  2122. #else /* CONFIG_PM */
  2123. static void apic_pm_activate(void) { }
  2124. #endif /* CONFIG_PM */
  2125. #ifdef CONFIG_X86_64
  2126. static int multi_checked;
  2127. static int multi;
  2128. static int set_multi(const struct dmi_system_id *d)
  2129. {
  2130. if (multi)
  2131. return 0;
  2132. pr_info("APIC: %s detected, Multi Chassis\n", d->ident);
  2133. multi = 1;
  2134. return 0;
  2135. }
  2136. static const struct dmi_system_id multi_dmi_table[] = {
  2137. {
  2138. .callback = set_multi,
  2139. .ident = "IBM System Summit2",
  2140. .matches = {
  2141. DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
  2142. DMI_MATCH(DMI_PRODUCT_NAME, "Summit2"),
  2143. },
  2144. },
  2145. {}
  2146. };
  2147. static void dmi_check_multi(void)
  2148. {
  2149. if (multi_checked)
  2150. return;
  2151. dmi_check_system(multi_dmi_table);
  2152. multi_checked = 1;
  2153. }
  2154. /*
  2155. * apic_is_clustered_box() -- Check if we can expect good TSC
  2156. *
  2157. * Thus far, the major user of this is IBM's Summit2 series:
  2158. * Clustered boxes may have unsynced TSC problems if they are
  2159. * multi-chassis.
  2160. * Use DMI to check them
  2161. */
  2162. int apic_is_clustered_box(void)
  2163. {
  2164. dmi_check_multi();
  2165. return multi;
  2166. }
  2167. #endif
  2168. /*
  2169. * APIC command line parameters
  2170. */
  2171. static int __init setup_disableapic(char *arg)
  2172. {
  2173. disable_apic = 1;
  2174. setup_clear_cpu_cap(X86_FEATURE_APIC);
  2175. return 0;
  2176. }
  2177. early_param("disableapic", setup_disableapic);
  2178. /* same as disableapic, for compatibility */
  2179. static int __init setup_nolapic(char *arg)
  2180. {
  2181. return setup_disableapic(arg);
  2182. }
  2183. early_param("nolapic", setup_nolapic);
  2184. static int __init parse_lapic_timer_c2_ok(char *arg)
  2185. {
  2186. local_apic_timer_c2_ok = 1;
  2187. return 0;
  2188. }
  2189. early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
  2190. static int __init parse_disable_apic_timer(char *arg)
  2191. {
  2192. disable_apic_timer = 1;
  2193. return 0;
  2194. }
  2195. early_param("noapictimer", parse_disable_apic_timer);
  2196. static int __init parse_nolapic_timer(char *arg)
  2197. {
  2198. disable_apic_timer = 1;
  2199. return 0;
  2200. }
  2201. early_param("nolapic_timer", parse_nolapic_timer);
  2202. static int __init apic_set_verbosity(char *arg)
  2203. {
  2204. if (!arg) {
  2205. #ifdef CONFIG_X86_64
  2206. skip_ioapic_setup = 0;
  2207. return 0;
  2208. #endif
  2209. return -EINVAL;
  2210. }
  2211. if (strcmp("debug", arg) == 0)
  2212. apic_verbosity = APIC_DEBUG;
  2213. else if (strcmp("verbose", arg) == 0)
  2214. apic_verbosity = APIC_VERBOSE;
  2215. else {
  2216. pr_warning("APIC Verbosity level %s not recognised"
  2217. " use apic=verbose or apic=debug\n", arg);
  2218. return -EINVAL;
  2219. }
  2220. return 0;
  2221. }
  2222. early_param("apic", apic_set_verbosity);
  2223. static int __init lapic_insert_resource(void)
  2224. {
  2225. if (!apic_phys)
  2226. return -1;
  2227. /* Put local APIC into the resource map. */
  2228. lapic_resource.start = apic_phys;
  2229. lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
  2230. insert_resource(&iomem_resource, &lapic_resource);
  2231. return 0;
  2232. }
  2233. /*
  2234. * need call insert after e820_reserve_resources()
  2235. * that is using request_resource
  2236. */
  2237. late_initcall(lapic_insert_resource);
  2238. static int __init apic_set_disabled_cpu_apicid(char *arg)
  2239. {
  2240. if (!arg || !get_option(&arg, &disabled_cpu_apicid))
  2241. return -EINVAL;
  2242. return 0;
  2243. }
  2244. early_param("disable_cpu_apicid", apic_set_disabled_cpu_apicid);
  2245. static int __init apic_set_extnmi(char *arg)
  2246. {
  2247. if (!arg)
  2248. return -EINVAL;
  2249. if (!strncmp("all", arg, 3))
  2250. apic_extnmi = APIC_EXTNMI_ALL;
  2251. else if (!strncmp("none", arg, 4))
  2252. apic_extnmi = APIC_EXTNMI_NONE;
  2253. else if (!strncmp("bsp", arg, 3))
  2254. apic_extnmi = APIC_EXTNMI_BSP;
  2255. else {
  2256. pr_warn("Unknown external NMI delivery mode `%s' ignored\n", arg);
  2257. return -EINVAL;
  2258. }
  2259. return 0;
  2260. }
  2261. early_param("apic_extnmi", apic_set_extnmi);