apic.c 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205
  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/arch_hooks.h>
  36. #include <asm/pgalloc.h>
  37. #include <asm/atomic.h>
  38. #include <asm/mpspec.h>
  39. #include <asm/i8253.h>
  40. #include <asm/i8259.h>
  41. #include <asm/proto.h>
  42. #include <asm/apic.h>
  43. #include <asm/desc.h>
  44. #include <asm/hpet.h>
  45. #include <asm/idle.h>
  46. #include <asm/mtrr.h>
  47. #include <asm/smp.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 (!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. /*
  720. * Clean APIC state for other OSs:
  721. */
  722. apic_write(APIC_LVTT, APIC_LVT_MASKED);
  723. apic_write(APIC_LVT0, APIC_LVT_MASKED);
  724. apic_write(APIC_LVT1, APIC_LVT_MASKED);
  725. if (maxlvt >= 3)
  726. apic_write(APIC_LVTERR, APIC_LVT_MASKED);
  727. if (maxlvt >= 4)
  728. apic_write(APIC_LVTPC, APIC_LVT_MASKED);
  729. /* Integrated APIC (!82489DX) ? */
  730. if (lapic_is_integrated()) {
  731. if (maxlvt > 3)
  732. /* Clear ESR due to Pentium errata 3AP and 11AP */
  733. apic_write(APIC_ESR, 0);
  734. apic_read(APIC_ESR);
  735. }
  736. }
  737. /**
  738. * disable_local_APIC - clear and disable the local APIC
  739. */
  740. void disable_local_APIC(void)
  741. {
  742. unsigned int value;
  743. /* APIC hasn't been mapped yet */
  744. if (!apic_phys)
  745. return;
  746. clear_local_APIC();
  747. /*
  748. * Disable APIC (implies clearing of registers
  749. * for 82489DX!).
  750. */
  751. value = apic_read(APIC_SPIV);
  752. value &= ~APIC_SPIV_APIC_ENABLED;
  753. apic_write(APIC_SPIV, value);
  754. #ifdef CONFIG_X86_32
  755. /*
  756. * When LAPIC was disabled by the BIOS and enabled by the kernel,
  757. * restore the disabled state.
  758. */
  759. if (enabled_via_apicbase) {
  760. unsigned int l, h;
  761. rdmsr(MSR_IA32_APICBASE, l, h);
  762. l &= ~MSR_IA32_APICBASE_ENABLE;
  763. wrmsr(MSR_IA32_APICBASE, l, h);
  764. }
  765. #endif
  766. }
  767. /*
  768. * If Linux enabled the LAPIC against the BIOS default disable it down before
  769. * re-entering the BIOS on shutdown. Otherwise the BIOS may get confused and
  770. * not power-off. Additionally clear all LVT entries before disable_local_APIC
  771. * for the case where Linux didn't enable the LAPIC.
  772. */
  773. void lapic_shutdown(void)
  774. {
  775. unsigned long flags;
  776. if (!cpu_has_apic)
  777. return;
  778. local_irq_save(flags);
  779. #ifdef CONFIG_X86_32
  780. if (!enabled_via_apicbase)
  781. clear_local_APIC();
  782. else
  783. #endif
  784. disable_local_APIC();
  785. local_irq_restore(flags);
  786. }
  787. /*
  788. * This is to verify that we're looking at a real local APIC.
  789. * Check these against your board if the CPUs aren't getting
  790. * started for no apparent reason.
  791. */
  792. int __init verify_local_APIC(void)
  793. {
  794. unsigned int reg0, reg1;
  795. /*
  796. * The version register is read-only in a real APIC.
  797. */
  798. reg0 = apic_read(APIC_LVR);
  799. apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg0);
  800. apic_write(APIC_LVR, reg0 ^ APIC_LVR_MASK);
  801. reg1 = apic_read(APIC_LVR);
  802. apic_printk(APIC_DEBUG, "Getting VERSION: %x\n", reg1);
  803. /*
  804. * The two version reads above should print the same
  805. * numbers. If the second one is different, then we
  806. * poke at a non-APIC.
  807. */
  808. if (reg1 != reg0)
  809. return 0;
  810. /*
  811. * Check if the version looks reasonably.
  812. */
  813. reg1 = GET_APIC_VERSION(reg0);
  814. if (reg1 == 0x00 || reg1 == 0xff)
  815. return 0;
  816. reg1 = lapic_get_maxlvt();
  817. if (reg1 < 0x02 || reg1 == 0xff)
  818. return 0;
  819. /*
  820. * The ID register is read/write in a real APIC.
  821. */
  822. reg0 = apic_read(APIC_ID);
  823. apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg0);
  824. apic_write(APIC_ID, reg0 ^ apic->apic_id_mask);
  825. reg1 = apic_read(APIC_ID);
  826. apic_printk(APIC_DEBUG, "Getting ID: %x\n", reg1);
  827. apic_write(APIC_ID, reg0);
  828. if (reg1 != (reg0 ^ apic->apic_id_mask))
  829. return 0;
  830. /*
  831. * The next two are just to see if we have sane values.
  832. * They're only really relevant if we're in Virtual Wire
  833. * compatibility mode, but most boxes are anymore.
  834. */
  835. reg0 = apic_read(APIC_LVT0);
  836. apic_printk(APIC_DEBUG, "Getting LVT0: %x\n", reg0);
  837. reg1 = apic_read(APIC_LVT1);
  838. apic_printk(APIC_DEBUG, "Getting LVT1: %x\n", reg1);
  839. return 1;
  840. }
  841. /**
  842. * sync_Arb_IDs - synchronize APIC bus arbitration IDs
  843. */
  844. void __init sync_Arb_IDs(void)
  845. {
  846. /*
  847. * Unsupported on P4 - see Intel Dev. Manual Vol. 3, Ch. 8.6.1 And not
  848. * needed on AMD.
  849. */
  850. if (modern_apic() || boot_cpu_data.x86_vendor == X86_VENDOR_AMD)
  851. return;
  852. /*
  853. * Wait for idle.
  854. */
  855. apic_wait_icr_idle();
  856. apic_printk(APIC_DEBUG, "Synchronizing Arb IDs.\n");
  857. apic_write(APIC_ICR, APIC_DEST_ALLINC |
  858. APIC_INT_LEVELTRIG | APIC_DM_INIT);
  859. }
  860. /*
  861. * An initial setup of the virtual wire mode.
  862. */
  863. void __init init_bsp_APIC(void)
  864. {
  865. unsigned int value;
  866. /*
  867. * Don't do the setup now if we have a SMP BIOS as the
  868. * through-I/O-APIC virtual wire mode might be active.
  869. */
  870. if (smp_found_config || !cpu_has_apic)
  871. return;
  872. /*
  873. * Do not trust the local APIC being empty at bootup.
  874. */
  875. clear_local_APIC();
  876. /*
  877. * Enable APIC.
  878. */
  879. value = apic_read(APIC_SPIV);
  880. value &= ~APIC_VECTOR_MASK;
  881. value |= APIC_SPIV_APIC_ENABLED;
  882. #ifdef CONFIG_X86_32
  883. /* This bit is reserved on P4/Xeon and should be cleared */
  884. if ((boot_cpu_data.x86_vendor == X86_VENDOR_INTEL) &&
  885. (boot_cpu_data.x86 == 15))
  886. value &= ~APIC_SPIV_FOCUS_DISABLED;
  887. else
  888. #endif
  889. value |= APIC_SPIV_FOCUS_DISABLED;
  890. value |= SPURIOUS_APIC_VECTOR;
  891. apic_write(APIC_SPIV, value);
  892. /*
  893. * Set up the virtual wire mode.
  894. */
  895. apic_write(APIC_LVT0, APIC_DM_EXTINT);
  896. value = APIC_DM_NMI;
  897. if (!lapic_is_integrated()) /* 82489DX */
  898. value |= APIC_LVT_LEVEL_TRIGGER;
  899. apic_write(APIC_LVT1, value);
  900. }
  901. static void __cpuinit lapic_setup_esr(void)
  902. {
  903. unsigned int oldvalue, value, maxlvt;
  904. if (!lapic_is_integrated()) {
  905. pr_info("No ESR for 82489DX.\n");
  906. return;
  907. }
  908. if (apic->disable_esr) {
  909. /*
  910. * Something untraceable is creating bad interrupts on
  911. * secondary quads ... for the moment, just leave the
  912. * ESR disabled - we can't do anything useful with the
  913. * errors anyway - mbligh
  914. */
  915. pr_info("Leaving ESR disabled.\n");
  916. return;
  917. }
  918. maxlvt = lapic_get_maxlvt();
  919. if (maxlvt > 3) /* Due to the Pentium erratum 3AP. */
  920. apic_write(APIC_ESR, 0);
  921. oldvalue = apic_read(APIC_ESR);
  922. /* enables sending errors */
  923. value = ERROR_APIC_VECTOR;
  924. apic_write(APIC_LVTERR, value);
  925. /*
  926. * spec says clear errors after enabling vector.
  927. */
  928. if (maxlvt > 3)
  929. apic_write(APIC_ESR, 0);
  930. value = apic_read(APIC_ESR);
  931. if (value != oldvalue)
  932. apic_printk(APIC_VERBOSE, "ESR value before enabling "
  933. "vector: 0x%08x after: 0x%08x\n",
  934. oldvalue, value);
  935. }
  936. /**
  937. * setup_local_APIC - setup the local APIC
  938. */
  939. void __cpuinit setup_local_APIC(void)
  940. {
  941. unsigned int value;
  942. int i, j;
  943. if (disable_apic) {
  944. arch_disable_smp_support();
  945. return;
  946. }
  947. #ifdef CONFIG_X86_32
  948. /* Pound the ESR really hard over the head with a big hammer - mbligh */
  949. if (lapic_is_integrated() && apic->disable_esr) {
  950. apic_write(APIC_ESR, 0);
  951. apic_write(APIC_ESR, 0);
  952. apic_write(APIC_ESR, 0);
  953. apic_write(APIC_ESR, 0);
  954. }
  955. #endif
  956. preempt_disable();
  957. /*
  958. * Double-check whether this APIC is really registered.
  959. * This is meaningless in clustered apic mode, so we skip it.
  960. */
  961. if (!apic->apic_id_registered())
  962. BUG();
  963. /*
  964. * Intel recommends to set DFR, LDR and TPR before enabling
  965. * an APIC. See e.g. "AP-388 82489DX User's Manual" (Intel
  966. * document number 292116). So here it goes...
  967. */
  968. apic->init_apic_ldr();
  969. /*
  970. * Set Task Priority to 'accept all'. We never change this
  971. * later on.
  972. */
  973. value = apic_read(APIC_TASKPRI);
  974. value &= ~APIC_TPRI_MASK;
  975. apic_write(APIC_TASKPRI, value);
  976. /*
  977. * After a crash, we no longer service the interrupts and a pending
  978. * interrupt from previous kernel might still have ISR bit set.
  979. *
  980. * Most probably by now CPU has serviced that pending interrupt and
  981. * it might not have done the ack_APIC_irq() because it thought,
  982. * interrupt came from i8259 as ExtInt. LAPIC did not get EOI so it
  983. * does not clear the ISR bit and cpu thinks it has already serivced
  984. * the interrupt. Hence a vector might get locked. It was noticed
  985. * for timer irq (vector 0x31). Issue an extra EOI to clear ISR.
  986. */
  987. for (i = APIC_ISR_NR - 1; i >= 0; i--) {
  988. value = apic_read(APIC_ISR + i*0x10);
  989. for (j = 31; j >= 0; j--) {
  990. if (value & (1<<j))
  991. ack_APIC_irq();
  992. }
  993. }
  994. /*
  995. * Now that we are all set up, enable the APIC
  996. */
  997. value = apic_read(APIC_SPIV);
  998. value &= ~APIC_VECTOR_MASK;
  999. /*
  1000. * Enable APIC
  1001. */
  1002. value |= APIC_SPIV_APIC_ENABLED;
  1003. #ifdef CONFIG_X86_32
  1004. /*
  1005. * Some unknown Intel IO/APIC (or APIC) errata is biting us with
  1006. * certain networking cards. If high frequency interrupts are
  1007. * happening on a particular IOAPIC pin, plus the IOAPIC routing
  1008. * entry is masked/unmasked at a high rate as well then sooner or
  1009. * later IOAPIC line gets 'stuck', no more interrupts are received
  1010. * from the device. If focus CPU is disabled then the hang goes
  1011. * away, oh well :-(
  1012. *
  1013. * [ This bug can be reproduced easily with a level-triggered
  1014. * PCI Ne2000 networking cards and PII/PIII processors, dual
  1015. * BX chipset. ]
  1016. */
  1017. /*
  1018. * Actually disabling the focus CPU check just makes the hang less
  1019. * frequent as it makes the interrupt distributon model be more
  1020. * like LRU than MRU (the short-term load is more even across CPUs).
  1021. * See also the comment in end_level_ioapic_irq(). --macro
  1022. */
  1023. /*
  1024. * - enable focus processor (bit==0)
  1025. * - 64bit mode always use processor focus
  1026. * so no need to set it
  1027. */
  1028. value &= ~APIC_SPIV_FOCUS_DISABLED;
  1029. #endif
  1030. /*
  1031. * Set spurious IRQ vector
  1032. */
  1033. value |= SPURIOUS_APIC_VECTOR;
  1034. apic_write(APIC_SPIV, value);
  1035. /*
  1036. * Set up LVT0, LVT1:
  1037. *
  1038. * set up through-local-APIC on the BP's LINT0. This is not
  1039. * strictly necessary in pure symmetric-IO mode, but sometimes
  1040. * we delegate interrupts to the 8259A.
  1041. */
  1042. /*
  1043. * TODO: set up through-local-APIC from through-I/O-APIC? --macro
  1044. */
  1045. value = apic_read(APIC_LVT0) & APIC_LVT_MASKED;
  1046. if (!smp_processor_id() && (pic_mode || !value)) {
  1047. value = APIC_DM_EXTINT;
  1048. apic_printk(APIC_VERBOSE, "enabled ExtINT on CPU#%d\n",
  1049. smp_processor_id());
  1050. } else {
  1051. value = APIC_DM_EXTINT | APIC_LVT_MASKED;
  1052. apic_printk(APIC_VERBOSE, "masked ExtINT on CPU#%d\n",
  1053. smp_processor_id());
  1054. }
  1055. apic_write(APIC_LVT0, value);
  1056. /*
  1057. * only the BP should see the LINT1 NMI signal, obviously.
  1058. */
  1059. if (!smp_processor_id())
  1060. value = APIC_DM_NMI;
  1061. else
  1062. value = APIC_DM_NMI | APIC_LVT_MASKED;
  1063. if (!lapic_is_integrated()) /* 82489DX */
  1064. value |= APIC_LVT_LEVEL_TRIGGER;
  1065. apic_write(APIC_LVT1, value);
  1066. preempt_enable();
  1067. }
  1068. void __cpuinit end_local_APIC_setup(void)
  1069. {
  1070. lapic_setup_esr();
  1071. #ifdef CONFIG_X86_32
  1072. {
  1073. unsigned int value;
  1074. /* Disable the local apic timer */
  1075. value = apic_read(APIC_LVTT);
  1076. value |= (APIC_LVT_MASKED | LOCAL_TIMER_VECTOR);
  1077. apic_write(APIC_LVTT, value);
  1078. }
  1079. #endif
  1080. setup_apic_nmi_watchdog(NULL);
  1081. apic_pm_activate();
  1082. }
  1083. #ifdef CONFIG_X86_X2APIC
  1084. void check_x2apic(void)
  1085. {
  1086. if (x2apic_enabled()) {
  1087. pr_info("x2apic enabled by BIOS, switching to x2apic ops\n");
  1088. x2apic_preenabled = x2apic = 1;
  1089. }
  1090. }
  1091. void enable_x2apic(void)
  1092. {
  1093. int msr, msr2;
  1094. if (!x2apic)
  1095. return;
  1096. rdmsr(MSR_IA32_APICBASE, msr, msr2);
  1097. if (!(msr & X2APIC_ENABLE)) {
  1098. pr_info("Enabling x2apic\n");
  1099. wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0);
  1100. }
  1101. }
  1102. void __init enable_IR_x2apic(void)
  1103. {
  1104. #ifdef CONFIG_INTR_REMAP
  1105. int ret;
  1106. unsigned long flags;
  1107. if (!cpu_has_x2apic)
  1108. return;
  1109. if (!x2apic_preenabled && disable_x2apic) {
  1110. pr_info("Skipped enabling x2apic and Interrupt-remapping "
  1111. "because of nox2apic\n");
  1112. return;
  1113. }
  1114. if (x2apic_preenabled && disable_x2apic)
  1115. panic("Bios already enabled x2apic, can't enforce nox2apic");
  1116. if (!x2apic_preenabled && skip_ioapic_setup) {
  1117. pr_info("Skipped enabling x2apic and Interrupt-remapping "
  1118. "because of skipping io-apic setup\n");
  1119. return;
  1120. }
  1121. ret = dmar_table_init();
  1122. if (ret) {
  1123. pr_info("dmar_table_init() failed with %d:\n", ret);
  1124. if (x2apic_preenabled)
  1125. panic("x2apic enabled by bios. But IR enabling failed");
  1126. else
  1127. pr_info("Not enabling x2apic,Intr-remapping\n");
  1128. return;
  1129. }
  1130. local_irq_save(flags);
  1131. mask_8259A();
  1132. ret = save_mask_IO_APIC_setup();
  1133. if (ret) {
  1134. pr_info("Saving IO-APIC state failed: %d\n", ret);
  1135. goto end;
  1136. }
  1137. ret = enable_intr_remapping(1);
  1138. if (ret && x2apic_preenabled) {
  1139. local_irq_restore(flags);
  1140. panic("x2apic enabled by bios. But IR enabling failed");
  1141. }
  1142. if (ret)
  1143. goto end_restore;
  1144. if (!x2apic) {
  1145. x2apic = 1;
  1146. enable_x2apic();
  1147. }
  1148. end_restore:
  1149. if (ret)
  1150. /*
  1151. * IR enabling failed
  1152. */
  1153. restore_IO_APIC_setup();
  1154. else
  1155. reinit_intr_remapped_IO_APIC(x2apic_preenabled);
  1156. end:
  1157. unmask_8259A();
  1158. local_irq_restore(flags);
  1159. if (!ret) {
  1160. if (!x2apic_preenabled)
  1161. pr_info("Enabled x2apic and interrupt-remapping\n");
  1162. else
  1163. pr_info("Enabled Interrupt-remapping\n");
  1164. } else
  1165. pr_err("Failed to enable Interrupt-remapping and x2apic\n");
  1166. #else
  1167. if (!cpu_has_x2apic)
  1168. return;
  1169. if (x2apic_preenabled)
  1170. panic("x2apic enabled prior OS handover,"
  1171. " enable CONFIG_INTR_REMAP");
  1172. pr_info("Enable CONFIG_INTR_REMAP for enabling intr-remapping "
  1173. " and x2apic\n");
  1174. #endif
  1175. return;
  1176. }
  1177. #endif /* CONFIG_X86_X2APIC */
  1178. #ifdef CONFIG_X86_64
  1179. /*
  1180. * Detect and enable local APICs on non-SMP boards.
  1181. * Original code written by Keir Fraser.
  1182. * On AMD64 we trust the BIOS - if it says no APIC it is likely
  1183. * not correctly set up (usually the APIC timer won't work etc.)
  1184. */
  1185. static int __init detect_init_APIC(void)
  1186. {
  1187. if (!cpu_has_apic) {
  1188. pr_info("No local APIC present\n");
  1189. return -1;
  1190. }
  1191. mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
  1192. boot_cpu_physical_apicid = 0;
  1193. return 0;
  1194. }
  1195. #else
  1196. /*
  1197. * Detect and initialize APIC
  1198. */
  1199. static int __init detect_init_APIC(void)
  1200. {
  1201. u32 h, l, features;
  1202. /* Disabled by kernel option? */
  1203. if (disable_apic)
  1204. return -1;
  1205. switch (boot_cpu_data.x86_vendor) {
  1206. case X86_VENDOR_AMD:
  1207. if ((boot_cpu_data.x86 == 6 && boot_cpu_data.x86_model > 1) ||
  1208. (boot_cpu_data.x86 >= 15))
  1209. break;
  1210. goto no_apic;
  1211. case X86_VENDOR_INTEL:
  1212. if (boot_cpu_data.x86 == 6 || boot_cpu_data.x86 == 15 ||
  1213. (boot_cpu_data.x86 == 5 && cpu_has_apic))
  1214. break;
  1215. goto no_apic;
  1216. default:
  1217. goto no_apic;
  1218. }
  1219. if (!cpu_has_apic) {
  1220. /*
  1221. * Over-ride BIOS and try to enable the local APIC only if
  1222. * "lapic" specified.
  1223. */
  1224. if (!force_enable_local_apic) {
  1225. pr_info("Local APIC disabled by BIOS -- "
  1226. "you can enable it with \"lapic\"\n");
  1227. return -1;
  1228. }
  1229. /*
  1230. * Some BIOSes disable the local APIC in the APIC_BASE
  1231. * MSR. This can only be done in software for Intel P6 or later
  1232. * and AMD K7 (Model > 1) or later.
  1233. */
  1234. rdmsr(MSR_IA32_APICBASE, l, h);
  1235. if (!(l & MSR_IA32_APICBASE_ENABLE)) {
  1236. pr_info("Local APIC disabled by BIOS -- reenabling.\n");
  1237. l &= ~MSR_IA32_APICBASE_BASE;
  1238. l |= MSR_IA32_APICBASE_ENABLE | APIC_DEFAULT_PHYS_BASE;
  1239. wrmsr(MSR_IA32_APICBASE, l, h);
  1240. enabled_via_apicbase = 1;
  1241. }
  1242. }
  1243. /*
  1244. * The APIC feature bit should now be enabled
  1245. * in `cpuid'
  1246. */
  1247. features = cpuid_edx(1);
  1248. if (!(features & (1 << X86_FEATURE_APIC))) {
  1249. pr_warning("Could not enable APIC!\n");
  1250. return -1;
  1251. }
  1252. set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
  1253. mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
  1254. /* The BIOS may have set up the APIC at some other address */
  1255. rdmsr(MSR_IA32_APICBASE, l, h);
  1256. if (l & MSR_IA32_APICBASE_ENABLE)
  1257. mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
  1258. pr_info("Found and enabled local APIC!\n");
  1259. apic_pm_activate();
  1260. return 0;
  1261. no_apic:
  1262. pr_info("No local APIC present or hardware disabled\n");
  1263. return -1;
  1264. }
  1265. #endif
  1266. #ifdef CONFIG_X86_64
  1267. void __init early_init_lapic_mapping(void)
  1268. {
  1269. unsigned long phys_addr;
  1270. /*
  1271. * If no local APIC can be found then go out
  1272. * : it means there is no mpatable and MADT
  1273. */
  1274. if (!smp_found_config)
  1275. return;
  1276. phys_addr = mp_lapic_addr;
  1277. set_fixmap_nocache(FIX_APIC_BASE, phys_addr);
  1278. apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
  1279. APIC_BASE, phys_addr);
  1280. /*
  1281. * Fetch the APIC ID of the BSP in case we have a
  1282. * default configuration (or the MP table is broken).
  1283. */
  1284. boot_cpu_physical_apicid = read_apic_id();
  1285. }
  1286. #endif
  1287. /**
  1288. * init_apic_mappings - initialize APIC mappings
  1289. */
  1290. void __init init_apic_mappings(void)
  1291. {
  1292. #ifdef CONFIG_X86_X2APIC
  1293. if (x2apic) {
  1294. boot_cpu_physical_apicid = read_apic_id();
  1295. return;
  1296. }
  1297. #endif
  1298. /*
  1299. * If no local APIC can be found then set up a fake all
  1300. * zeroes page to simulate the local APIC and another
  1301. * one for the IO-APIC.
  1302. */
  1303. if (!smp_found_config && detect_init_APIC()) {
  1304. apic_phys = (unsigned long) alloc_bootmem_pages(PAGE_SIZE);
  1305. apic_phys = __pa(apic_phys);
  1306. } else
  1307. apic_phys = mp_lapic_addr;
  1308. set_fixmap_nocache(FIX_APIC_BASE, apic_phys);
  1309. apic_printk(APIC_VERBOSE, "mapped APIC to %08lx (%08lx)\n",
  1310. APIC_BASE, apic_phys);
  1311. /*
  1312. * Fetch the APIC ID of the BSP in case we have a
  1313. * default configuration (or the MP table is broken).
  1314. */
  1315. if (boot_cpu_physical_apicid == -1U)
  1316. boot_cpu_physical_apicid = read_apic_id();
  1317. }
  1318. /*
  1319. * This initializes the IO-APIC and APIC hardware if this is
  1320. * a UP kernel.
  1321. */
  1322. int apic_version[MAX_APICS];
  1323. int __init APIC_init_uniprocessor(void)
  1324. {
  1325. if (disable_apic) {
  1326. pr_info("Apic disabled\n");
  1327. return -1;
  1328. }
  1329. #ifdef CONFIG_X86_64
  1330. if (!cpu_has_apic) {
  1331. disable_apic = 1;
  1332. pr_info("Apic disabled by BIOS\n");
  1333. return -1;
  1334. }
  1335. #else
  1336. if (!smp_found_config && !cpu_has_apic)
  1337. return -1;
  1338. /*
  1339. * Complain if the BIOS pretends there is one.
  1340. */
  1341. if (!cpu_has_apic &&
  1342. APIC_INTEGRATED(apic_version[boot_cpu_physical_apicid])) {
  1343. pr_err("BIOS bug, local APIC 0x%x not detected!...\n",
  1344. boot_cpu_physical_apicid);
  1345. clear_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
  1346. return -1;
  1347. }
  1348. #endif
  1349. enable_IR_x2apic();
  1350. #ifdef CONFIG_X86_64
  1351. default_setup_apic_routing();
  1352. #endif
  1353. verify_local_APIC();
  1354. connect_bsp_APIC();
  1355. #ifdef CONFIG_X86_64
  1356. apic_write(APIC_ID, SET_APIC_ID(boot_cpu_physical_apicid));
  1357. #else
  1358. /*
  1359. * Hack: In case of kdump, after a crash, kernel might be booting
  1360. * on a cpu with non-zero lapic id. But boot_cpu_physical_apicid
  1361. * might be zero if read from MP tables. Get it from LAPIC.
  1362. */
  1363. # ifdef CONFIG_CRASH_DUMP
  1364. boot_cpu_physical_apicid = read_apic_id();
  1365. # endif
  1366. #endif
  1367. physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
  1368. setup_local_APIC();
  1369. #ifdef CONFIG_X86_IO_APIC
  1370. /*
  1371. * Now enable IO-APICs, actually call clear_IO_APIC
  1372. * We need clear_IO_APIC before enabling error vector
  1373. */
  1374. if (!skip_ioapic_setup && nr_ioapics)
  1375. enable_IO_APIC();
  1376. #endif
  1377. end_local_APIC_setup();
  1378. #ifdef CONFIG_X86_IO_APIC
  1379. if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
  1380. setup_IO_APIC();
  1381. else {
  1382. nr_ioapics = 0;
  1383. localise_nmi_watchdog();
  1384. }
  1385. #else
  1386. localise_nmi_watchdog();
  1387. #endif
  1388. setup_boot_clock();
  1389. #ifdef CONFIG_X86_64
  1390. check_nmi_watchdog();
  1391. #endif
  1392. return 0;
  1393. }
  1394. /*
  1395. * Local APIC interrupts
  1396. */
  1397. /*
  1398. * This interrupt should _never_ happen with our APIC/SMP architecture
  1399. */
  1400. void smp_spurious_interrupt(struct pt_regs *regs)
  1401. {
  1402. u32 v;
  1403. exit_idle();
  1404. irq_enter();
  1405. /*
  1406. * Check if this really is a spurious interrupt and ACK it
  1407. * if it is a vectored one. Just in case...
  1408. * Spurious interrupts should not be ACKed.
  1409. */
  1410. v = apic_read(APIC_ISR + ((SPURIOUS_APIC_VECTOR & ~0x1f) >> 1));
  1411. if (v & (1 << (SPURIOUS_APIC_VECTOR & 0x1f)))
  1412. ack_APIC_irq();
  1413. inc_irq_stat(irq_spurious_count);
  1414. /* see sw-dev-man vol 3, chapter 7.4.13.5 */
  1415. pr_info("spurious APIC interrupt on CPU#%d, "
  1416. "should never happen.\n", smp_processor_id());
  1417. irq_exit();
  1418. }
  1419. /*
  1420. * This interrupt should never happen with our APIC/SMP architecture
  1421. */
  1422. void smp_error_interrupt(struct pt_regs *regs)
  1423. {
  1424. u32 v, v1;
  1425. exit_idle();
  1426. irq_enter();
  1427. /* First tickle the hardware, only then report what went on. -- REW */
  1428. v = apic_read(APIC_ESR);
  1429. apic_write(APIC_ESR, 0);
  1430. v1 = apic_read(APIC_ESR);
  1431. ack_APIC_irq();
  1432. atomic_inc(&irq_err_count);
  1433. /*
  1434. * Here is what the APIC error bits mean:
  1435. * 0: Send CS error
  1436. * 1: Receive CS error
  1437. * 2: Send accept error
  1438. * 3: Receive accept error
  1439. * 4: Reserved
  1440. * 5: Send illegal vector
  1441. * 6: Received illegal vector
  1442. * 7: Illegal register address
  1443. */
  1444. pr_debug("APIC error on CPU%d: %02x(%02x)\n",
  1445. smp_processor_id(), v , v1);
  1446. irq_exit();
  1447. }
  1448. /**
  1449. * connect_bsp_APIC - attach the APIC to the interrupt system
  1450. */
  1451. void __init connect_bsp_APIC(void)
  1452. {
  1453. #ifdef CONFIG_X86_32
  1454. if (pic_mode) {
  1455. /*
  1456. * Do not trust the local APIC being empty at bootup.
  1457. */
  1458. clear_local_APIC();
  1459. /*
  1460. * PIC mode, enable APIC mode in the IMCR, i.e. connect BSP's
  1461. * local APIC to INT and NMI lines.
  1462. */
  1463. apic_printk(APIC_VERBOSE, "leaving PIC mode, "
  1464. "enabling APIC mode.\n");
  1465. outb(0x70, 0x22);
  1466. outb(0x01, 0x23);
  1467. }
  1468. #endif
  1469. if (apic->enable_apic_mode)
  1470. apic->enable_apic_mode();
  1471. }
  1472. /**
  1473. * disconnect_bsp_APIC - detach the APIC from the interrupt system
  1474. * @virt_wire_setup: indicates, whether virtual wire mode is selected
  1475. *
  1476. * Virtual wire mode is necessary to deliver legacy interrupts even when the
  1477. * APIC is disabled.
  1478. */
  1479. void disconnect_bsp_APIC(int virt_wire_setup)
  1480. {
  1481. unsigned int value;
  1482. #ifdef CONFIG_X86_32
  1483. if (pic_mode) {
  1484. /*
  1485. * Put the board back into PIC mode (has an effect only on
  1486. * certain older boards). Note that APIC interrupts, including
  1487. * IPIs, won't work beyond this point! The only exception are
  1488. * INIT IPIs.
  1489. */
  1490. apic_printk(APIC_VERBOSE, "disabling APIC mode, "
  1491. "entering PIC mode.\n");
  1492. outb(0x70, 0x22);
  1493. outb(0x00, 0x23);
  1494. return;
  1495. }
  1496. #endif
  1497. /* Go back to Virtual Wire compatibility mode */
  1498. /* For the spurious interrupt use vector F, and enable it */
  1499. value = apic_read(APIC_SPIV);
  1500. value &= ~APIC_VECTOR_MASK;
  1501. value |= APIC_SPIV_APIC_ENABLED;
  1502. value |= 0xf;
  1503. apic_write(APIC_SPIV, value);
  1504. if (!virt_wire_setup) {
  1505. /*
  1506. * For LVT0 make it edge triggered, active high,
  1507. * external and enabled
  1508. */
  1509. value = apic_read(APIC_LVT0);
  1510. value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
  1511. APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
  1512. APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
  1513. value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
  1514. value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_EXTINT);
  1515. apic_write(APIC_LVT0, value);
  1516. } else {
  1517. /* Disable LVT0 */
  1518. apic_write(APIC_LVT0, APIC_LVT_MASKED);
  1519. }
  1520. /*
  1521. * For LVT1 make it edge triggered, active high,
  1522. * nmi and enabled
  1523. */
  1524. value = apic_read(APIC_LVT1);
  1525. value &= ~(APIC_MODE_MASK | APIC_SEND_PENDING |
  1526. APIC_INPUT_POLARITY | APIC_LVT_REMOTE_IRR |
  1527. APIC_LVT_LEVEL_TRIGGER | APIC_LVT_MASKED);
  1528. value |= APIC_LVT_REMOTE_IRR | APIC_SEND_PENDING;
  1529. value = SET_APIC_DELIVERY_MODE(value, APIC_MODE_NMI);
  1530. apic_write(APIC_LVT1, value);
  1531. }
  1532. void __cpuinit generic_processor_info(int apicid, int version)
  1533. {
  1534. int cpu;
  1535. /*
  1536. * Validate version
  1537. */
  1538. if (version == 0x0) {
  1539. pr_warning("BIOS bug, APIC version is 0 for CPU#%d! "
  1540. "fixing up to 0x10. (tell your hw vendor)\n",
  1541. version);
  1542. version = 0x10;
  1543. }
  1544. apic_version[apicid] = version;
  1545. if (num_processors >= nr_cpu_ids) {
  1546. int max = nr_cpu_ids;
  1547. int thiscpu = max + disabled_cpus;
  1548. pr_warning(
  1549. "ACPI: NR_CPUS/possible_cpus limit of %i reached."
  1550. " Processor %d/0x%x ignored.\n", max, thiscpu, apicid);
  1551. disabled_cpus++;
  1552. return;
  1553. }
  1554. num_processors++;
  1555. cpu = cpumask_next_zero(-1, cpu_present_mask);
  1556. if (version != apic_version[boot_cpu_physical_apicid])
  1557. WARN_ONCE(1,
  1558. "ACPI: apic version mismatch, bootcpu: %x cpu %d: %x\n",
  1559. apic_version[boot_cpu_physical_apicid], cpu, version);
  1560. physid_set(apicid, phys_cpu_present_map);
  1561. if (apicid == boot_cpu_physical_apicid) {
  1562. /*
  1563. * x86_bios_cpu_apicid is required to have processors listed
  1564. * in same order as logical cpu numbers. Hence the first
  1565. * entry is BSP, and so on.
  1566. */
  1567. cpu = 0;
  1568. }
  1569. if (apicid > max_physical_apicid)
  1570. max_physical_apicid = apicid;
  1571. #ifdef CONFIG_X86_32
  1572. /*
  1573. * Would be preferable to switch to bigsmp when CONFIG_HOTPLUG_CPU=y
  1574. * but we need to work other dependencies like SMP_SUSPEND etc
  1575. * before this can be done without some confusion.
  1576. * if (CPU_HOTPLUG_ENABLED || num_processors > 8)
  1577. * - Ashok Raj <ashok.raj@intel.com>
  1578. */
  1579. if (max_physical_apicid >= 8) {
  1580. switch (boot_cpu_data.x86_vendor) {
  1581. case X86_VENDOR_INTEL:
  1582. if (!APIC_XAPIC(version)) {
  1583. def_to_bigsmp = 0;
  1584. break;
  1585. }
  1586. /* If P4 and above fall through */
  1587. case X86_VENDOR_AMD:
  1588. def_to_bigsmp = 1;
  1589. }
  1590. }
  1591. #endif
  1592. #if defined(CONFIG_SMP) || defined(CONFIG_X86_64)
  1593. early_per_cpu(x86_cpu_to_apicid, cpu) = apicid;
  1594. early_per_cpu(x86_bios_cpu_apicid, cpu) = apicid;
  1595. #endif
  1596. set_cpu_possible(cpu, true);
  1597. set_cpu_present(cpu, true);
  1598. }
  1599. int hard_smp_processor_id(void)
  1600. {
  1601. return read_apic_id();
  1602. }
  1603. void default_init_apic_ldr(void)
  1604. {
  1605. unsigned long val;
  1606. apic_write(APIC_DFR, APIC_DFR_VALUE);
  1607. val = apic_read(APIC_LDR) & ~APIC_LDR_MASK;
  1608. val |= SET_APIC_LOGICAL_ID(1UL << smp_processor_id());
  1609. apic_write(APIC_LDR, val);
  1610. }
  1611. #ifdef CONFIG_X86_32
  1612. int default_apicid_to_node(int logical_apicid)
  1613. {
  1614. #ifdef CONFIG_SMP
  1615. return apicid_2_node[hard_smp_processor_id()];
  1616. #else
  1617. return 0;
  1618. #endif
  1619. }
  1620. #endif
  1621. /*
  1622. * Power management
  1623. */
  1624. #ifdef CONFIG_PM
  1625. static struct {
  1626. /*
  1627. * 'active' is true if the local APIC was enabled by us and
  1628. * not the BIOS; this signifies that we are also responsible
  1629. * for disabling it before entering apm/acpi suspend
  1630. */
  1631. int active;
  1632. /* r/w apic fields */
  1633. unsigned int apic_id;
  1634. unsigned int apic_taskpri;
  1635. unsigned int apic_ldr;
  1636. unsigned int apic_dfr;
  1637. unsigned int apic_spiv;
  1638. unsigned int apic_lvtt;
  1639. unsigned int apic_lvtpc;
  1640. unsigned int apic_lvt0;
  1641. unsigned int apic_lvt1;
  1642. unsigned int apic_lvterr;
  1643. unsigned int apic_tmict;
  1644. unsigned int apic_tdcr;
  1645. unsigned int apic_thmr;
  1646. } apic_pm_state;
  1647. static int lapic_suspend(struct sys_device *dev, pm_message_t state)
  1648. {
  1649. unsigned long flags;
  1650. int maxlvt;
  1651. if (!apic_pm_state.active)
  1652. return 0;
  1653. maxlvt = lapic_get_maxlvt();
  1654. apic_pm_state.apic_id = apic_read(APIC_ID);
  1655. apic_pm_state.apic_taskpri = apic_read(APIC_TASKPRI);
  1656. apic_pm_state.apic_ldr = apic_read(APIC_LDR);
  1657. apic_pm_state.apic_dfr = apic_read(APIC_DFR);
  1658. apic_pm_state.apic_spiv = apic_read(APIC_SPIV);
  1659. apic_pm_state.apic_lvtt = apic_read(APIC_LVTT);
  1660. if (maxlvt >= 4)
  1661. apic_pm_state.apic_lvtpc = apic_read(APIC_LVTPC);
  1662. apic_pm_state.apic_lvt0 = apic_read(APIC_LVT0);
  1663. apic_pm_state.apic_lvt1 = apic_read(APIC_LVT1);
  1664. apic_pm_state.apic_lvterr = apic_read(APIC_LVTERR);
  1665. apic_pm_state.apic_tmict = apic_read(APIC_TMICT);
  1666. apic_pm_state.apic_tdcr = apic_read(APIC_TDCR);
  1667. #if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
  1668. if (maxlvt >= 5)
  1669. apic_pm_state.apic_thmr = apic_read(APIC_LVTTHMR);
  1670. #endif
  1671. local_irq_save(flags);
  1672. disable_local_APIC();
  1673. local_irq_restore(flags);
  1674. return 0;
  1675. }
  1676. static int lapic_resume(struct sys_device *dev)
  1677. {
  1678. unsigned int l, h;
  1679. unsigned long flags;
  1680. int maxlvt;
  1681. if (!apic_pm_state.active)
  1682. return 0;
  1683. maxlvt = lapic_get_maxlvt();
  1684. local_irq_save(flags);
  1685. #ifdef CONFIG_X86_X2APIC
  1686. if (x2apic)
  1687. enable_x2apic();
  1688. else
  1689. #endif
  1690. {
  1691. /*
  1692. * Make sure the APICBASE points to the right address
  1693. *
  1694. * FIXME! This will be wrong if we ever support suspend on
  1695. * SMP! We'll need to do this as part of the CPU restore!
  1696. */
  1697. rdmsr(MSR_IA32_APICBASE, l, h);
  1698. l &= ~MSR_IA32_APICBASE_BASE;
  1699. l |= MSR_IA32_APICBASE_ENABLE | mp_lapic_addr;
  1700. wrmsr(MSR_IA32_APICBASE, l, h);
  1701. }
  1702. apic_write(APIC_LVTERR, ERROR_APIC_VECTOR | APIC_LVT_MASKED);
  1703. apic_write(APIC_ID, apic_pm_state.apic_id);
  1704. apic_write(APIC_DFR, apic_pm_state.apic_dfr);
  1705. apic_write(APIC_LDR, apic_pm_state.apic_ldr);
  1706. apic_write(APIC_TASKPRI, apic_pm_state.apic_taskpri);
  1707. apic_write(APIC_SPIV, apic_pm_state.apic_spiv);
  1708. apic_write(APIC_LVT0, apic_pm_state.apic_lvt0);
  1709. apic_write(APIC_LVT1, apic_pm_state.apic_lvt1);
  1710. #if defined(CONFIG_X86_MCE_P4THERMAL) || defined(CONFIG_X86_MCE_INTEL)
  1711. if (maxlvt >= 5)
  1712. apic_write(APIC_LVTTHMR, apic_pm_state.apic_thmr);
  1713. #endif
  1714. if (maxlvt >= 4)
  1715. apic_write(APIC_LVTPC, apic_pm_state.apic_lvtpc);
  1716. apic_write(APIC_LVTT, apic_pm_state.apic_lvtt);
  1717. apic_write(APIC_TDCR, apic_pm_state.apic_tdcr);
  1718. apic_write(APIC_TMICT, apic_pm_state.apic_tmict);
  1719. apic_write(APIC_ESR, 0);
  1720. apic_read(APIC_ESR);
  1721. apic_write(APIC_LVTERR, apic_pm_state.apic_lvterr);
  1722. apic_write(APIC_ESR, 0);
  1723. apic_read(APIC_ESR);
  1724. local_irq_restore(flags);
  1725. return 0;
  1726. }
  1727. /*
  1728. * This device has no shutdown method - fully functioning local APICs
  1729. * are needed on every CPU up until machine_halt/restart/poweroff.
  1730. */
  1731. static struct sysdev_class lapic_sysclass = {
  1732. .name = "lapic",
  1733. .resume = lapic_resume,
  1734. .suspend = lapic_suspend,
  1735. };
  1736. static struct sys_device device_lapic = {
  1737. .id = 0,
  1738. .cls = &lapic_sysclass,
  1739. };
  1740. static void __cpuinit apic_pm_activate(void)
  1741. {
  1742. apic_pm_state.active = 1;
  1743. }
  1744. static int __init init_lapic_sysfs(void)
  1745. {
  1746. int error;
  1747. if (!cpu_has_apic)
  1748. return 0;
  1749. /* XXX: remove suspend/resume procs if !apic_pm_state.active? */
  1750. error = sysdev_class_register(&lapic_sysclass);
  1751. if (!error)
  1752. error = sysdev_register(&device_lapic);
  1753. return error;
  1754. }
  1755. device_initcall(init_lapic_sysfs);
  1756. #else /* CONFIG_PM */
  1757. static void apic_pm_activate(void) { }
  1758. #endif /* CONFIG_PM */
  1759. #ifdef CONFIG_X86_64
  1760. /*
  1761. * apic_is_clustered_box() -- Check if we can expect good TSC
  1762. *
  1763. * Thus far, the major user of this is IBM's Summit2 series:
  1764. *
  1765. * Clustered boxes may have unsynced TSC problems if they are
  1766. * multi-chassis. Use available data to take a good guess.
  1767. * If in doubt, go HPET.
  1768. */
  1769. __cpuinit int apic_is_clustered_box(void)
  1770. {
  1771. int i, clusters, zeros;
  1772. unsigned id;
  1773. u16 *bios_cpu_apicid;
  1774. DECLARE_BITMAP(clustermap, NUM_APIC_CLUSTERS);
  1775. /*
  1776. * there is not this kind of box with AMD CPU yet.
  1777. * Some AMD box with quadcore cpu and 8 sockets apicid
  1778. * will be [4, 0x23] or [8, 0x27] could be thought to
  1779. * vsmp box still need checking...
  1780. */
  1781. if ((boot_cpu_data.x86_vendor == X86_VENDOR_AMD) && !is_vsmp_box())
  1782. return 0;
  1783. bios_cpu_apicid = early_per_cpu_ptr(x86_bios_cpu_apicid);
  1784. bitmap_zero(clustermap, NUM_APIC_CLUSTERS);
  1785. for (i = 0; i < nr_cpu_ids; i++) {
  1786. /* are we being called early in kernel startup? */
  1787. if (bios_cpu_apicid) {
  1788. id = bios_cpu_apicid[i];
  1789. } else if (i < nr_cpu_ids) {
  1790. if (cpu_present(i))
  1791. id = per_cpu(x86_bios_cpu_apicid, i);
  1792. else
  1793. continue;
  1794. } else
  1795. break;
  1796. if (id != BAD_APICID)
  1797. __set_bit(APIC_CLUSTERID(id), clustermap);
  1798. }
  1799. /* Problem: Partially populated chassis may not have CPUs in some of
  1800. * the APIC clusters they have been allocated. Only present CPUs have
  1801. * x86_bios_cpu_apicid entries, thus causing zeroes in the bitmap.
  1802. * Since clusters are allocated sequentially, count zeros only if
  1803. * they are bounded by ones.
  1804. */
  1805. clusters = 0;
  1806. zeros = 0;
  1807. for (i = 0; i < NUM_APIC_CLUSTERS; i++) {
  1808. if (test_bit(i, clustermap)) {
  1809. clusters += 1 + zeros;
  1810. zeros = 0;
  1811. } else
  1812. ++zeros;
  1813. }
  1814. /* ScaleMP vSMPowered boxes have one cluster per board and TSCs are
  1815. * not guaranteed to be synced between boards
  1816. */
  1817. if (is_vsmp_box() && clusters > 1)
  1818. return 1;
  1819. /*
  1820. * If clusters > 2, then should be multi-chassis.
  1821. * May have to revisit this when multi-core + hyperthreaded CPUs come
  1822. * out, but AFAIK this will work even for them.
  1823. */
  1824. return (clusters > 2);
  1825. }
  1826. #endif
  1827. /*
  1828. * APIC command line parameters
  1829. */
  1830. static int __init setup_disableapic(char *arg)
  1831. {
  1832. disable_apic = 1;
  1833. setup_clear_cpu_cap(X86_FEATURE_APIC);
  1834. return 0;
  1835. }
  1836. early_param("disableapic", setup_disableapic);
  1837. /* same as disableapic, for compatibility */
  1838. static int __init setup_nolapic(char *arg)
  1839. {
  1840. return setup_disableapic(arg);
  1841. }
  1842. early_param("nolapic", setup_nolapic);
  1843. static int __init parse_lapic_timer_c2_ok(char *arg)
  1844. {
  1845. local_apic_timer_c2_ok = 1;
  1846. return 0;
  1847. }
  1848. early_param("lapic_timer_c2_ok", parse_lapic_timer_c2_ok);
  1849. static int __init parse_disable_apic_timer(char *arg)
  1850. {
  1851. disable_apic_timer = 1;
  1852. return 0;
  1853. }
  1854. early_param("noapictimer", parse_disable_apic_timer);
  1855. static int __init parse_nolapic_timer(char *arg)
  1856. {
  1857. disable_apic_timer = 1;
  1858. return 0;
  1859. }
  1860. early_param("nolapic_timer", parse_nolapic_timer);
  1861. static int __init apic_set_verbosity(char *arg)
  1862. {
  1863. if (!arg) {
  1864. #ifdef CONFIG_X86_64
  1865. skip_ioapic_setup = 0;
  1866. return 0;
  1867. #endif
  1868. return -EINVAL;
  1869. }
  1870. if (strcmp("debug", arg) == 0)
  1871. apic_verbosity = APIC_DEBUG;
  1872. else if (strcmp("verbose", arg) == 0)
  1873. apic_verbosity = APIC_VERBOSE;
  1874. else {
  1875. pr_warning("APIC Verbosity level %s not recognised"
  1876. " use apic=verbose or apic=debug\n", arg);
  1877. return -EINVAL;
  1878. }
  1879. return 0;
  1880. }
  1881. early_param("apic", apic_set_verbosity);
  1882. static int __init lapic_insert_resource(void)
  1883. {
  1884. if (!apic_phys)
  1885. return -1;
  1886. /* Put local APIC into the resource map. */
  1887. lapic_resource.start = apic_phys;
  1888. lapic_resource.end = lapic_resource.start + PAGE_SIZE - 1;
  1889. insert_resource(&iomem_resource, &lapic_resource);
  1890. return 0;
  1891. }
  1892. /*
  1893. * need call insert after e820_reserve_resources()
  1894. * that is using request_resource
  1895. */
  1896. late_initcall(lapic_insert_resource);