apic.c 56 KB

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