apic.c 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385
  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/kvm_para.h>
  51. #include <asm/tsc.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(&current_cpu_data, 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(0x7FFFFF, &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. * Now that local APIC setup is completed for BP, configure the fault
  1192. * handling for interrupt remapping.
  1193. */
  1194. if (!smp_processor_id() && intr_remapping_enabled)
  1195. enable_drhd_fault_handling();
  1196. }
  1197. #ifdef CONFIG_X86_X2APIC
  1198. void check_x2apic(void)
  1199. {
  1200. if (x2apic_enabled()) {
  1201. pr_info("x2apic enabled by BIOS, switching to x2apic ops\n");
  1202. x2apic_preenabled = x2apic_mode = 1;
  1203. }
  1204. }
  1205. void enable_x2apic(void)
  1206. {
  1207. int msr, msr2;
  1208. if (!x2apic_mode)
  1209. return;
  1210. rdmsr(MSR_IA32_APICBASE, msr, msr2);
  1211. if (!(msr & X2APIC_ENABLE)) {
  1212. printk_once(KERN_INFO "Enabling x2apic\n");
  1213. wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
  1214. }
  1215. }
  1216. #endif /* CONFIG_X86_X2APIC */
  1217. int __init enable_IR(void)
  1218. {
  1219. #ifdef CONFIG_INTR_REMAP
  1220. if (!intr_remapping_supported()) {
  1221. pr_debug("intr-remapping not supported\n");
  1222. return 0;
  1223. }
  1224. if (!x2apic_preenabled && skip_ioapic_setup) {
  1225. pr_info("Skipped enabling intr-remap because of skipping "
  1226. "io-apic setup\n");
  1227. return 0;
  1228. }
  1229. if (enable_intr_remapping(x2apic_supported()))
  1230. return 0;
  1231. pr_info("Enabled Interrupt-remapping\n");
  1232. return 1;
  1233. #endif
  1234. return 0;
  1235. }
  1236. void __init enable_IR_x2apic(void)
  1237. {
  1238. unsigned long flags;
  1239. struct IO_APIC_route_entry **ioapic_entries = NULL;
  1240. int ret, x2apic_enabled = 0;
  1241. int dmar_table_init_ret;
  1242. dmar_table_init_ret = dmar_table_init();
  1243. if (dmar_table_init_ret && !x2apic_supported())
  1244. return;
  1245. ioapic_entries = alloc_ioapic_entries();
  1246. if (!ioapic_entries) {
  1247. pr_err("Allocate ioapic_entries failed\n");
  1248. goto out;
  1249. }
  1250. ret = save_IO_APIC_setup(ioapic_entries);
  1251. if (ret) {
  1252. pr_info("Saving IO-APIC state failed: %d\n", ret);
  1253. goto out;
  1254. }
  1255. local_irq_save(flags);
  1256. legacy_pic->mask_all();
  1257. mask_IO_APIC_setup(ioapic_entries);
  1258. if (dmar_table_init_ret)
  1259. ret = 0;
  1260. else
  1261. ret = enable_IR();
  1262. if (!ret) {
  1263. /* IR is required if there is APIC ID > 255 even when running
  1264. * under KVM
  1265. */
  1266. if (max_physical_apicid > 255 || !kvm_para_available())
  1267. goto nox2apic;
  1268. /*
  1269. * without IR all CPUs can be addressed by IOAPIC/MSI
  1270. * only in physical mode
  1271. */
  1272. x2apic_force_phys();
  1273. }
  1274. x2apic_enabled = 1;
  1275. if (x2apic_supported() && !x2apic_mode) {
  1276. x2apic_mode = 1;
  1277. enable_x2apic();
  1278. pr_info("Enabled x2apic\n");
  1279. }
  1280. nox2apic:
  1281. if (!ret) /* IR enabling failed */
  1282. restore_IO_APIC_setup(ioapic_entries);
  1283. legacy_pic->restore_mask();
  1284. local_irq_restore(flags);
  1285. out:
  1286. if (ioapic_entries)
  1287. free_ioapic_entries(ioapic_entries);
  1288. if (x2apic_enabled)
  1289. return;
  1290. if (x2apic_preenabled)
  1291. panic("x2apic: enabled by BIOS but kernel init failed.");
  1292. else if (cpu_has_x2apic)
  1293. pr_info("Not enabling x2apic, Intr-remapping init failed.\n");
  1294. }
  1295. #ifdef CONFIG_X86_64
  1296. /*
  1297. * Detect and enable local APICs on non-SMP boards.
  1298. * Original code written by Keir Fraser.
  1299. * On AMD64 we trust the BIOS - if it says no APIC it is likely
  1300. * not correctly set up (usually the APIC timer won't work etc.)
  1301. */
  1302. static int __init detect_init_APIC(void)
  1303. {
  1304. if (!cpu_has_apic) {
  1305. pr_info("No local APIC present\n");
  1306. return -1;
  1307. }
  1308. mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
  1309. return 0;
  1310. }
  1311. #else
  1312. static int apic_verify(void)
  1313. {
  1314. u32 features, h, l;
  1315. /*
  1316. * The APIC feature bit should now be enabled
  1317. * in `cpuid'
  1318. */
  1319. features = cpuid_edx(1);
  1320. if (!(features & (1 << X86_FEATURE_APIC))) {
  1321. pr_warning("Could not enable APIC!\n");
  1322. return -1;
  1323. }
  1324. set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
  1325. mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
  1326. /* The BIOS may have set up the APIC at some other address */
  1327. rdmsr(MSR_IA32_APICBASE, l, h);
  1328. if (l & MSR_IA32_APICBASE_ENABLE)
  1329. mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
  1330. pr_info("Found and enabled local APIC!\n");
  1331. return 0;
  1332. }
  1333. int apic_force_enable(void)
  1334. {
  1335. u32 h, l;
  1336. if (disable_apic)
  1337. return -1;
  1338. /*
  1339. * Some BIOSes disable the local APIC in the APIC_BASE
  1340. * MSR. This can only be done in software for Intel P6 or later
  1341. * and AMD K7 (Model > 1) or later.
  1342. */
  1343. rdmsr(MSR_IA32_APICBASE, l, h);
  1344. if (!(l & MSR_IA32_APICBASE_ENABLE)) {
  1345. pr_info("Local APIC disabled by BIOS -- reenabling.\n");
  1346. l &= ~MSR_IA32_APICBASE_BASE;
  1347. l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
  1348. wrmsr(MSR_IA32_APICBASE, l, h);
  1349. enabled_via_apicbase = 1;
  1350. }
  1351. return apic_verify();
  1352. }
  1353. /*
  1354. * Detect and initialize APIC
  1355. */
  1356. static int __init detect_init_APIC(void)
  1357. {
  1358. /* Disabled by kernel option? */
  1359. if (disable_apic)
  1360. return -1;
  1361. switch (boot_cpu_data.x86_vendor) {
  1362. case X86_VENDOR_AMD:
  1363. if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
  1364. (boot_cpu_data.x86 >= 15))
  1365. break;
  1366. goto no_apic;
  1367. case X86_VENDOR_INTEL:
  1368. if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
  1369. (boot_cpu_data.x86 == 5 && cpu_has_apic))
  1370. break;
  1371. goto no_apic;
  1372. default:
  1373. goto no_apic;
  1374. }
  1375. if (!cpu_has_apic) {
  1376. /*
  1377. * Over-ride BIOS and try to enable the local APIC only if
  1378. * "lapic" specified.
  1379. */
  1380. if (!force_enable_local_apic) {
  1381. pr_info("Local APIC disabled by BIOS -- "
  1382. "you can enable it with \"lapic\"\n");
  1383. return -1;
  1384. }
  1385. if (apic_force_enable())
  1386. return -1;
  1387. } else {
  1388. if (apic_verify())
  1389. return -1;
  1390. }
  1391. apic_pm_activate();
  1392. return 0;
  1393. no_apic:
  1394. pr_info("No local APIC present or hardware disabled\n");
  1395. return -1;
  1396. }
  1397. #endif
  1398. /**
  1399. * init_apic_mappings - initialize APIC mappings
  1400. */
  1401. void __init init_apic_mappings(void)
  1402. {
  1403. unsigned int new_apicid;
  1404. if (x2apic_mode) {
  1405. boot_cpu_physical_apicid = read_apic_id();
  1406. return;
  1407. }
  1408. /* If no local APIC can be found return early */
  1409. if (!smp_found_config && detect_init_APIC()) {
  1410. /* lets NOP'ify apic operations */
  1411. pr_info("APIC: disable apic facility\n");
  1412. apic_disable();
  1413. } else {
  1414. apic_phys = mp_lapic_addr;
  1415. /*
  1416. * acpi lapic path already maps that address in
  1417. * acpi_register_lapic_address()
  1418. */
  1419. if (!acpi_lapic && !smp_found_config)
  1420. register_lapic_address(apic_phys);
  1421. }
  1422. /*
  1423. * Fetch the APIC ID of the BSP in case we have a
  1424. * default configuration (or the MP table is broken).
  1425. */
  1426. new_apicid = read_apic_id();
  1427. if (boot_cpu_physical_apicid != new_apicid) {
  1428. boot_cpu_physical_apicid = new_apicid;
  1429. /*
  1430. * yeah -- we lie about apic_version
  1431. * in case if apic was disabled via boot option
  1432. * but it's not a problem for SMP compiled kernel
  1433. * since smp_sanity_check is prepared for such a case
  1434. * and disable smp mode
  1435. */
  1436. apic_version[new_apicid] =
  1437. GET_APIC_VERSION(apic_read(APIC_LVR));
  1438. }
  1439. }
  1440. void __init register_lapic_address(unsigned long address)
  1441. {
  1442. mp_lapic_addr = address;
  1443. if (!x2apic_mode) {
  1444. set_fixmap_nocache(FIX_APIC_BASE, address);
  1445. apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
  1446. APIC_BASE, mp_lapic_addr);
  1447. }
  1448. if (boot_cpu_physical_apicid == -1U) {
  1449. boot_cpu_physical_apicid = read_apic_id();
  1450. apic_version[boot_cpu_physical_apicid] =
  1451. GET_APIC_VERSION(apic_read(APIC_LVR));
  1452. }
  1453. }
  1454. /*
  1455. * This initializes the IO-APIC and APIC hardware if this is
  1456. * a UP kernel.
  1457. */
  1458. int apic_version[MAX_LOCAL_APIC];
  1459. int __init APIC_init_uniprocessor(void)
  1460. {
  1461. if (disable_apic) {
  1462. pr_info("Apic disabled\n");
  1463. return -1;
  1464. }
  1465. #ifdef CONFIG_X86_64
  1466. if (!cpu_has_apic) {
  1467. disable_apic = 1;
  1468. pr_info("Apic disabled by BIOS\n");
  1469. return -1;
  1470. }
  1471. #else
  1472. if (!smp_found_config && !cpu_has_apic)
  1473. return -1;
  1474. /*
  1475. * Complain if the BIOS pretends there is one.
  1476. */
  1477. if (!cpu_has_apic &&
  1478. APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
  1479. pr_err("BIOS bug, local APIC 0x%x not detected!...\n",
  1480. boot_cpu_physical_apicid);
  1481. return -1;
  1482. }
  1483. #endif
  1484. default_setup_apic_routing();
  1485. verify_local_APIC();
  1486. connect_bsp_APIC();
  1487. #ifdef CONFIG_X86_64
  1488. apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
  1489. #else
  1490. /*
  1491. * Hack: In case of kdump, after a crash, kernel might be booting
  1492. * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
  1493. * might be zero if read from MP tables. Get it from LAPIC.
  1494. */
  1495. # ifdef CONFIG_CRASH_DUMP
  1496. boot_cpu_physical_apicid = read_apic_id();
  1497. # endif
  1498. #endif
  1499. physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
  1500. setup_local_APIC();
  1501. #ifdef CONFIG_X86_IO_APIC
  1502. /*
  1503. * Now enable IO-APICs, actually call clear_IO_APIC
  1504. * We need clear_IO_APIC before enabling error vector
  1505. */
  1506. if (!skip_ioapic_setup && nr_ioapics)
  1507. enable_IO_APIC();
  1508. #endif
  1509. end_local_APIC_setup();
  1510. #ifdef CONFIG_X86_IO_APIC
  1511. if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
  1512. setup_IO_APIC();
  1513. else {
  1514. nr_ioapics = 0;
  1515. }
  1516. #endif
  1517. x86_init.timers.setup_percpu_clockev();
  1518. return 0;
  1519. }
  1520. /*
  1521. * Local APIC interrupts
  1522. */
  1523. /*
  1524. * This interrupt should _never_ happen with our APIC/SMP architecture
  1525. */
  1526. void smp_spurious_interrupt(struct pt_regs *regs)
  1527. {
  1528. u32 v;
  1529. exit_idle();
  1530. irq_enter();
  1531. /*
  1532. * Check if this really is a spurious interrupt and ACK it
  1533. * if it is a vectored one. Just in case...
  1534. * Spurious interrupts should not be ACKed.
  1535. */
  1536. v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
  1537. if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
  1538. ack_APIC_irq();
  1539. inc_irq_stat(irq_spurious_count);
  1540. /* see sw-dev-man vol 3, chapter 7.4.13.5 */
  1541. pr_info("spurious APIC interrupt on CPU#%d, "
  1542. "should never happen.\n", smp_processor_id());
  1543. irq_exit();
  1544. }
  1545. /*
  1546. * This interrupt should never happen with our APIC/SMP architecture
  1547. */
  1548. void smp_error_interrupt(struct pt_regs *regs)
  1549. {
  1550. u32 v, v1;
  1551. exit_idle();
  1552. irq_enter();
  1553. /* First tickle the hardware, only then report what went on. -- REW */
  1554. v = apic_read(APIC_ESR);
  1555. apic_write(APIC_ESR, 0);
  1556. v1 = apic_read(APIC_ESR);
  1557. ack_APIC_irq();
  1558. atomic_inc(&irq_err_count);
  1559. /*
  1560. * Here is what the APIC error bits mean:
  1561. * 0: Send CS error
  1562. * 1: Receive CS error
  1563. * 2: Send accept error
  1564. * 3: Receive accept error
  1565. * 4: Reserved
  1566. * 5: Send illegal vector
  1567. * 6: Received illegal vector
  1568. * 7: Illegal register address
  1569. */
  1570. pr_debug("APIC error on CPU%d: %02x(%02x)\n",
  1571. smp_processor_id(), v , v1);
  1572. irq_exit();
  1573. }
  1574. /**
  1575. * connect_bsp_APIC - attach the APIC to the interrupt system
  1576. */
  1577. void __init connect_bsp_APIC(void)
  1578. {
  1579. #ifdef CONFIG_X86_32
  1580. if (pic_mode) {
  1581. /*
  1582. * Do not trust the local APIC being empty at bootup.
  1583. */
  1584. clear_local_APIC();
  1585. /*
  1586. * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
  1587. * local APIC to INT and NMI lines.
  1588. */
  1589. apic_printk(APIC_VERBOSE, "leaving PIC mode, "
  1590. "enabling APIC mode.\n");
  1591. imcr_pic_to_apic();
  1592. }
  1593. #endif
  1594. if (apic->enable_apic_mode)
  1595. apic->enable_apic_mode();
  1596. }
  1597. /**
  1598. * disconnect_bsp_APIC - detach the APIC from the interrupt system
  1599. * @virt_wire_setup: indicates, whether virtual wire mode is selected
  1600. *
  1601. * Virtual wire mode is necessary to deliver legacy interrupts even when the
  1602. * APIC is disabled.
  1603. */
  1604. void disconnect_bsp_APIC(int virt_wire_setup)
  1605. {
  1606. unsigned int value;
  1607. #ifdef CONFIG_X86_32
  1608. if (pic_mode) {
  1609. /*
  1610. * Put the board back into PIC mode (has an effect only on
  1611. * certain older boards). Note that APIC interrupts, including
  1612. * IPIs, won't work beyond this point! The only exception are
  1613. * INIT IPIs.
  1614. */
  1615. apic_printk(APIC_VERBOSE, "disabling APIC mode, "
  1616. "entering PIC mode.\n");
  1617. imcr_apic_to_pic();
  1618. return;
  1619. }
  1620. #endif
  1621. /* Go back to Virtual Wire compatibility mode */
  1622. /* For the spurious interrupt use vector F, and enable it */
  1623. value = apic_read(APIC_SPIV);
  1624. value &= ~APIC_VECTOR_MASK;
  1625. value |= APIC_SPIV_APIC_ENABLED;
  1626. value |= 0xf;
  1627. apic_write(APIC_SPIV, value);
  1628. if (!virt_wire_setup) {
  1629. /*
  1630. * For LVT0 make it edge triggered, active high,
  1631. * external and enabled
  1632. */
  1633. value = apic_read(APIC_LVT0);
  1634. value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
  1635. APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
  1636. APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
  1637. value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
  1638. value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
  1639. apic_write(APIC_LVT0, value);
  1640. } else {
  1641. /* Disable LVT0 */
  1642. apic_write(APIC_LVT0, APIC_LVT_MASKED);
  1643. }
  1644. /*
  1645. * For LVT1 make it edge triggered, active high,
  1646. * nmi and enabled
  1647. */
  1648. value = apic_read(APIC_LVT1);
  1649. value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
  1650. APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
  1651. APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
  1652. value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
  1653. value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
  1654. apic_write(APIC_LVT1, value);
  1655. }
  1656. void __cpuinit generic_processor_info(int apicid, int version)
  1657. {
  1658. int cpu;
  1659. /*
  1660. * Validate version
  1661. */
  1662. if (version == 0x0) {
  1663. pr_warning("BIOS bug, APIC version is 0 for CPU#%d! "
  1664. "fixing up to 0x10. (tell your hw vendor)\n",
  1665. version);
  1666. version = 0x10;
  1667. }
  1668. apic_version[apicid] = version;
  1669. if (num_processors >= nr_cpu_ids) {
  1670. int max = nr_cpu_ids;
  1671. int thiscpu = max + disabled_cpus;
  1672. pr_warning(
  1673. "ACPI: NR_CPUS/possible_cpus limit of %i reached."
  1674. " Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
  1675. disabled_cpus++;
  1676. return;
  1677. }
  1678. num_processors++;
  1679. cpu = cpumask_next_zero(-1, cpu_present_mask);
  1680. if (version != apic_version[boot_cpu_physical_apicid])
  1681. WARN_ONCE(1,
  1682. "ACPI: apic version mismatch, bootcpu: %x cpu %d: %x\n",
  1683. apic_version[boot_cpu_physical_apicid], cpu, version);
  1684. physid_set(apicid, phys_cpu_present_map);
  1685. if (apicid == boot_cpu_physical_apicid) {
  1686. /*
  1687. * x86_bios_cpu_apicid is required to have processors listed
  1688. * in same order as logical cpu numbers. Hence the first
  1689. * entry is BSP, and so on.
  1690. */
  1691. cpu = 0;
  1692. }
  1693. if (apicid > max_physical_apicid)
  1694. max_physical_apicid = apicid;
  1695. #if defined(CONFIG_SMP) || defined(CONFIG_X86_64)
  1696. early_per_cpu(x86_cpu_to_apicid, cpu) = apicid;
  1697. early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
  1698. #endif
  1699. set_cpu_possible(cpu, true);
  1700. set_cpu_present(cpu, true);
  1701. }
  1702. int hard_smp_processor_id(void)
  1703. {
  1704. return read_apic_id();
  1705. }
  1706. void default_init_apic_ldr(void)
  1707. {
  1708. unsigned long val;
  1709. apic_write(APIC_DFR, APIC_DFR_VALUE);
  1710. val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
  1711. val |= SET_APIC_LOGICAL_ID(1UL << smp_processor_id());
  1712. apic_write(APIC_LDR, val);
  1713. }
  1714. #ifdef CONFIG_X86_32
  1715. int default_apicid_to_node(int logical_apicid)
  1716. {
  1717. #ifdef CONFIG_SMP
  1718. return apicid_2_node[hard_smp_processor_id()];
  1719. #else
  1720. return 0;
  1721. #endif
  1722. }
  1723. #endif
  1724. /*
  1725. * Power management
  1726. */
  1727. #ifdef CONFIG_PM
  1728. static struct {
  1729. /*
  1730. * 'active' is true if the local APIC was enabled by us and
  1731. * not the BIOS; this signifies that we are also responsible
  1732. * for disabling it before entering apm/acpi suspend
  1733. */
  1734. int active;
  1735. /* r/w apic fields */
  1736. unsigned int apic_id;
  1737. unsigned int apic_taskpri;
  1738. unsigned int apic_ldr;
  1739. unsigned int apic_dfr;
  1740. unsigned int apic_spiv;
  1741. unsigned int apic_lvtt;
  1742. unsigned int apic_lvtpc;
  1743. unsigned int apic_lvt0;
  1744. unsigned int apic_lvt1;
  1745. unsigned int apic_lvterr;
  1746. unsigned int apic_tmict;
  1747. unsigned int apic_tdcr;
  1748. unsigned int apic_thmr;
  1749. } apic_pm_state;
  1750. static int lapic_suspend(struct sys_device *dev, pm_message_t state)
  1751. {
  1752. unsigned long flags;
  1753. int maxlvt;
  1754. if (!apic_pm_state.active)
  1755. return 0;
  1756. maxlvt = lapic_get_maxlvt();
  1757. apic_pm_state.apic_id = apic_read(APIC_ID);
  1758. apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
  1759. apic_pm_state.apic_ldr = apic_read(APIC_LDR);
  1760. apic_pm_state.apic_dfr = apic_read(APIC_DFR);
  1761. apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
  1762. apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
  1763. if (maxlvt >= 4)
  1764. apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
  1765. apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
  1766. apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
  1767. apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
  1768. apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
  1769. apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
  1770. #ifdef CONFIG_X86_THERMAL_VECTOR
  1771. if (maxlvt >= 5)
  1772. apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
  1773. #endif
  1774. local_irq_save(flags);
  1775. disable_local_APIC();
  1776. if (intr_remapping_enabled)
  1777. disable_intr_remapping();
  1778. local_irq_restore(flags);
  1779. return 0;
  1780. }
  1781. static int lapic_resume(struct sys_device *dev)
  1782. {
  1783. unsigned int l, h;
  1784. unsigned long flags;
  1785. int maxlvt;
  1786. int ret = 0;
  1787. struct IO_APIC_route_entry **ioapic_entries = NULL;
  1788. if (!apic_pm_state.active)
  1789. return 0;
  1790. local_irq_save(flags);
  1791. if (intr_remapping_enabled) {
  1792. ioapic_entries = alloc_ioapic_entries();
  1793. if (!ioapic_entries) {
  1794. WARN(1, "Alloc ioapic_entries in lapic resume failed.");
  1795. ret = -ENOMEM;
  1796. goto restore;
  1797. }
  1798. ret = save_IO_APIC_setup(ioapic_entries);
  1799. if (ret) {
  1800. WARN(1, "Saving IO-APIC state failed: %d\n", ret);
  1801. free_ioapic_entries(ioapic_entries);
  1802. goto restore;
  1803. }
  1804. mask_IO_APIC_setup(ioapic_entries);
  1805. legacy_pic->mask_all();
  1806. }
  1807. if (x2apic_mode)
  1808. enable_x2apic();
  1809. else {
  1810. /*
  1811. * Make sure the APICBASE points to the right address
  1812. *
  1813. * FIXME! This will be wrong if we ever support suspend on
  1814. * SMP! We'll need to do this as part of the CPU restore!
  1815. */
  1816. rdmsr(MSR_IA32_APICBASE, l, h);
  1817. l &= ~MSR_IA32_APICBASE_BASE;
  1818. l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
  1819. wrmsr(MSR_IA32_APICBASE, l, h);
  1820. }
  1821. maxlvt = lapic_get_maxlvt();
  1822. apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
  1823. apic_write(APIC_ID, apic_pm_state.apic_id);
  1824. apic_write(APIC_DFR, apic_pm_state.apic_dfr);
  1825. apic_write(APIC_LDR, apic_pm_state.apic_ldr);
  1826. apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
  1827. apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
  1828. apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
  1829. apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
  1830. #if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
  1831. if (maxlvt >= 5)
  1832. apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
  1833. #endif
  1834. if (maxlvt >= 4)
  1835. apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
  1836. apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
  1837. apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
  1838. apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
  1839. apic_write(APIC_ESR, 0);
  1840. apic_read(APIC_ESR);
  1841. apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
  1842. apic_write(APIC_ESR, 0);
  1843. apic_read(APIC_ESR);
  1844. if (intr_remapping_enabled) {
  1845. reenable_intr_remapping(x2apic_mode);
  1846. legacy_pic->restore_mask();
  1847. restore_IO_APIC_setup(ioapic_entries);
  1848. free_ioapic_entries(ioapic_entries);
  1849. }
  1850. restore:
  1851. local_irq_restore(flags);
  1852. return ret;
  1853. }
  1854. /*
  1855. * This device has no shutdown method - fully functioning local APICs
  1856. * are needed on every CPU up until machine_halt/restart/poweroff.
  1857. */
  1858. static struct sysdev_class lapic_sysclass = {
  1859. .name = "lapic",
  1860. .resume = lapic_resume,
  1861. .suspend = lapic_suspend,
  1862. };
  1863. static struct sys_device device_lapic = {
  1864. .id = 0,
  1865. .cls = &lapic_sysclass,
  1866. };
  1867. static void __cpuinit apic_pm_activate(void)
  1868. {
  1869. apic_pm_state.active = 1;
  1870. }
  1871. static int __init init_lapic_sysfs(void)
  1872. {
  1873. int error;
  1874. if (!cpu_has_apic)
  1875. return 0;
  1876. /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
  1877. error = sysdev_class_register(&lapic_sysclass);
  1878. if (!error)
  1879. error = sysdev_register(&device_lapic);
  1880. return error;
  1881. }
  1882. /* local apic needs to resume before other devices access its registers. */
  1883. core_initcall(init_lapic_sysfs);
  1884. #else /* CONFIG_PM */
  1885. static void apic_pm_activate(void) { }
  1886. #endif /* CONFIG_PM */
  1887. #ifdef CONFIG_X86_64
  1888. static int __cpuinit apic_cluster_num(void)
  1889. {
  1890. int i, clusters, zeros;
  1891. unsigned id;
  1892. u16 *bios_cpu_apicid;
  1893. DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
  1894. bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
  1895. bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
  1896. for (i = 0; i < nr_cpu_ids; i++) {
  1897. /* are we being called early in kernel startup? */
  1898. if (bios_cpu_apicid) {
  1899. id = bios_cpu_apicid[i];
  1900. } else if (i < nr_cpu_ids) {
  1901. if (cpu_present(i))
  1902. id = per_cpu(x86_bios_cpu_apicid, i);
  1903. else
  1904. continue;
  1905. } else
  1906. break;
  1907. if (id != BAD_APICID)
  1908. __set_bit(APIC_CLUSTERID(id), clustermap);
  1909. }
  1910. /* Problem: Partially populated chassis may not have CPUs in some of
  1911. * the APIC clusters they have been allocated. Only present CPUs have
  1912. * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
  1913. * Since clusters are allocated sequentially, count zeros only if
  1914. * they are bounded by ones.
  1915. */
  1916. clusters = 0;
  1917. zeros = 0;
  1918. for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
  1919. if (test_bit(i, clustermap)) {
  1920. clusters += 1 + zeros;
  1921. zeros = 0;
  1922. } else
  1923. ++zeros;
  1924. }
  1925. return clusters;
  1926. }
  1927. static int __cpuinitdata multi_checked;
  1928. static int __cpuinitdata multi;
  1929. static int __cpuinit set_multi(const struct dmi_system_id *d)
  1930. {
  1931. if (multi)
  1932. return 0;
  1933. pr_info("APIC: %s detected, Multi Chassis\n", d->ident);
  1934. multi = 1;
  1935. return 0;
  1936. }
  1937. static const __cpuinitconst struct dmi_system_id multi_dmi_table[] = {
  1938. {
  1939. .callback = set_multi,
  1940. .ident = "IBM System Summit2",
  1941. .matches = {
  1942. DMI_MATCH(DMI_SYS_VENDOR, "IBM"),
  1943. DMI_MATCH(DMI_PRODUCT_NAME, "Summit2"),
  1944. },
  1945. },
  1946. {}
  1947. };
  1948. static void __cpuinit dmi_check_multi(void)
  1949. {
  1950. if (multi_checked)
  1951. return;
  1952. dmi_check_system(multi_dmi_table);
  1953. multi_checked = 1;
  1954. }
  1955. /*
  1956. * apic_is_clustered_box() -- Check if we can expect good TSC
  1957. *
  1958. * Thus far, the major user of this is IBM's Summit2 series:
  1959. * Clustered boxes may have unsynced TSC problems if they are
  1960. * multi-chassis.
  1961. * Use DMI to check them
  1962. */
  1963. __cpuinit int apic_is_clustered_box(void)
  1964. {
  1965. dmi_check_multi();
  1966. if (multi)
  1967. return 1;
  1968. if (!is_vsmp_box())
  1969. return 0;
  1970. /*
  1971. * ScaleMP vSMPowered boxes have one cluster per board and TSCs are
  1972. * not guaranteed to be synced between boards
  1973. */
  1974. if (apic_cluster_num() > 1)
  1975. return 1;
  1976. return 0;
  1977. }
  1978. #endif
  1979. /*
  1980. * APIC command line parameters
  1981. */
  1982. static int __init setup_disableapic(char *arg)
  1983. {
  1984. disable_apic = 1;
  1985. setup_clear_cpu_cap(X86_FEATURE_APIC);
  1986. return 0;
  1987. }
  1988. early_param("disableapic", setup_disableapic);
  1989. /* same as disableapic, for compatibility */
  1990. static int __init setup_nolapic(char *arg)
  1991. {
  1992. return setup_disableapic(arg);
  1993. }
  1994. early_param("nolapic", setup_nolapic);
  1995. static int __init parse_lapic_timer_c2_ok(char *arg)
  1996. {
  1997. local_apic_timer_c2_ok = 1;
  1998. return 0;
  1999. }
  2000. early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
  2001. static int __init parse_disable_apic_timer(char *arg)
  2002. {
  2003. disable_apic_timer = 1;
  2004. return 0;
  2005. }
  2006. early_param("noapictimer", parse_disable_apic_timer);
  2007. static int __init parse_nolapic_timer(char *arg)
  2008. {
  2009. disable_apic_timer = 1;
  2010. return 0;
  2011. }
  2012. early_param("nolapic_timer", parse_nolapic_timer);
  2013. static int __init apic_set_verbosity(char *arg)
  2014. {
  2015. if (!arg) {
  2016. #ifdef CONFIG_X86_64
  2017. skip_ioapic_setup = 0;
  2018. return 0;
  2019. #endif
  2020. return -EINVAL;
  2021. }
  2022. if (strcmp("debug", arg) == 0)
  2023. apic_verbosity = APIC_DEBUG;
  2024. else if (strcmp("verbose", arg) == 0)
  2025. apic_verbosity = APIC_VERBOSE;
  2026. else {
  2027. pr_warning("APIC Verbosity level %s not recognised"
  2028. " use apic=verbose or apic=debug\n", arg);
  2029. return -EINVAL;
  2030. }
  2031. return 0;
  2032. }
  2033. early_param("apic", apic_set_verbosity);
  2034. static int __init lapic_insert_resource(void)
  2035. {
  2036. if (!apic_phys)
  2037. return -1;
  2038. /* Put local APIC into the resource map. */
  2039. lapic_resource.start = apic_phys;
  2040. lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
  2041. insert_resource(&iomem_resource, &lapic_resource);
  2042. return 0;
  2043. }
  2044. /*
  2045. * need call insert after e820_reserve_resources()
  2046. * that is using request_resource
  2047. */
  2048. late_initcall(lapic_insert_resource);