apic.c 52 KB

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