processor_idle.c 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830
  1. /*
  2. * processor_idle - idle state submodule to the ACPI processor driver
  3. *
  4. * Copyright (C) 2001, 2002 Andy Grover <andrew.grover@intel.com>
  5. * Copyright (C) 2001, 2002 Paul Diefenbaugh <paul.s.diefenbaugh@intel.com>
  6. * Copyright (C) 2004, 2005 Dominik Brodowski <linux@brodo.de>
  7. * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
  8. * - Added processor hotplug support
  9. * Copyright (C) 2005 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
  10. * - Added support for C3 on SMP
  11. *
  12. * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2 of the License, or (at
  17. * your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful, but
  20. * WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  22. * General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License along
  25. * with this program; if not, write to the Free Software Foundation, Inc.,
  26. * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
  27. *
  28. * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  29. */
  30. #include <linux/kernel.h>
  31. #include <linux/module.h>
  32. #include <linux/init.h>
  33. #include <linux/cpufreq.h>
  34. #include <linux/proc_fs.h>
  35. #include <linux/seq_file.h>
  36. #include <linux/acpi.h>
  37. #include <linux/dmi.h>
  38. #include <linux/moduleparam.h>
  39. #include <linux/sched.h> /* need_resched() */
  40. #include <linux/pm_qos_params.h>
  41. #include <linux/clockchips.h>
  42. #include <linux/cpuidle.h>
  43. /*
  44. * Include the apic definitions for x86 to have the APIC timer related defines
  45. * available also for UP (on SMP it gets magically included via linux/smp.h).
  46. * asm/acpi.h is not an option, as it would require more include magic. Also
  47. * creating an empty asm-ia64/apic.h would just trade pest vs. cholera.
  48. */
  49. #ifdef CONFIG_X86
  50. #include <asm/apic.h>
  51. #endif
  52. #include <asm/io.h>
  53. #include <asm/uaccess.h>
  54. #include <acpi/acpi_bus.h>
  55. #include <acpi/processor.h>
  56. #define ACPI_PROCESSOR_COMPONENT 0x01000000
  57. #define ACPI_PROCESSOR_CLASS "processor"
  58. #define _COMPONENT ACPI_PROCESSOR_COMPONENT
  59. ACPI_MODULE_NAME("processor_idle");
  60. #define ACPI_PROCESSOR_FILE_POWER "power"
  61. #define US_TO_PM_TIMER_TICKS(t) ((t * (PM_TIMER_FREQUENCY/1000)) / 1000)
  62. #define PM_TIMER_TICK_NS (1000000000ULL/PM_TIMER_FREQUENCY)
  63. #ifndef CONFIG_CPU_IDLE
  64. #define C2_OVERHEAD 4 /* 1us (3.579 ticks per us) */
  65. #define C3_OVERHEAD 4 /* 1us (3.579 ticks per us) */
  66. static void (*pm_idle_save) (void) __read_mostly;
  67. #else
  68. #define C2_OVERHEAD 1 /* 1us */
  69. #define C3_OVERHEAD 1 /* 1us */
  70. #endif
  71. #define PM_TIMER_TICKS_TO_US(p) (((p) * 1000)/(PM_TIMER_FREQUENCY/1000))
  72. static unsigned int max_cstate __read_mostly = ACPI_PROCESSOR_MAX_POWER;
  73. #ifdef CONFIG_CPU_IDLE
  74. module_param(max_cstate, uint, 0000);
  75. #else
  76. module_param(max_cstate, uint, 0644);
  77. #endif
  78. static unsigned int nocst __read_mostly;
  79. module_param(nocst, uint, 0000);
  80. #ifndef CONFIG_CPU_IDLE
  81. /*
  82. * bm_history -- bit-mask with a bit per jiffy of bus-master activity
  83. * 1000 HZ: 0xFFFFFFFF: 32 jiffies = 32ms
  84. * 800 HZ: 0xFFFFFFFF: 32 jiffies = 40ms
  85. * 100 HZ: 0x0000000F: 4 jiffies = 40ms
  86. * reduce history for more aggressive entry into C3
  87. */
  88. static unsigned int bm_history __read_mostly =
  89. (HZ >= 800 ? 0xFFFFFFFF : ((1U << (HZ / 25)) - 1));
  90. module_param(bm_history, uint, 0644);
  91. static int acpi_processor_set_power_policy(struct acpi_processor *pr);
  92. #endif
  93. /*
  94. * IBM ThinkPad R40e crashes mysteriously when going into C2 or C3.
  95. * For now disable this. Probably a bug somewhere else.
  96. *
  97. * To skip this limit, boot/load with a large max_cstate limit.
  98. */
  99. static int set_max_cstate(const struct dmi_system_id *id)
  100. {
  101. if (max_cstate > ACPI_PROCESSOR_MAX_POWER)
  102. return 0;
  103. printk(KERN_NOTICE PREFIX "%s detected - limiting to C%ld max_cstate."
  104. " Override with \"processor.max_cstate=%d\"\n", id->ident,
  105. (long)id->driver_data, ACPI_PROCESSOR_MAX_POWER + 1);
  106. max_cstate = (long)id->driver_data;
  107. return 0;
  108. }
  109. /* Actually this shouldn't be __cpuinitdata, would be better to fix the
  110. callers to only run once -AK */
  111. static struct dmi_system_id __cpuinitdata processor_power_dmi_table[] = {
  112. { set_max_cstate, "IBM ThinkPad R40e", {
  113. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  114. DMI_MATCH(DMI_BIOS_VERSION,"1SET70WW")}, (void *)1},
  115. { set_max_cstate, "IBM ThinkPad R40e", {
  116. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  117. DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW")}, (void *)1},
  118. { set_max_cstate, "IBM ThinkPad R40e", {
  119. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  120. DMI_MATCH(DMI_BIOS_VERSION,"1SET43WW") }, (void*)1},
  121. { set_max_cstate, "IBM ThinkPad R40e", {
  122. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  123. DMI_MATCH(DMI_BIOS_VERSION,"1SET45WW") }, (void*)1},
  124. { set_max_cstate, "IBM ThinkPad R40e", {
  125. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  126. DMI_MATCH(DMI_BIOS_VERSION,"1SET47WW") }, (void*)1},
  127. { set_max_cstate, "IBM ThinkPad R40e", {
  128. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  129. DMI_MATCH(DMI_BIOS_VERSION,"1SET50WW") }, (void*)1},
  130. { set_max_cstate, "IBM ThinkPad R40e", {
  131. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  132. DMI_MATCH(DMI_BIOS_VERSION,"1SET52WW") }, (void*)1},
  133. { set_max_cstate, "IBM ThinkPad R40e", {
  134. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  135. DMI_MATCH(DMI_BIOS_VERSION,"1SET55WW") }, (void*)1},
  136. { set_max_cstate, "IBM ThinkPad R40e", {
  137. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  138. DMI_MATCH(DMI_BIOS_VERSION,"1SET56WW") }, (void*)1},
  139. { set_max_cstate, "IBM ThinkPad R40e", {
  140. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  141. DMI_MATCH(DMI_BIOS_VERSION,"1SET59WW") }, (void*)1},
  142. { set_max_cstate, "IBM ThinkPad R40e", {
  143. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  144. DMI_MATCH(DMI_BIOS_VERSION,"1SET60WW") }, (void*)1},
  145. { set_max_cstate, "IBM ThinkPad R40e", {
  146. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  147. DMI_MATCH(DMI_BIOS_VERSION,"1SET61WW") }, (void*)1},
  148. { set_max_cstate, "IBM ThinkPad R40e", {
  149. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  150. DMI_MATCH(DMI_BIOS_VERSION,"1SET62WW") }, (void*)1},
  151. { set_max_cstate, "IBM ThinkPad R40e", {
  152. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  153. DMI_MATCH(DMI_BIOS_VERSION,"1SET64WW") }, (void*)1},
  154. { set_max_cstate, "IBM ThinkPad R40e", {
  155. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  156. DMI_MATCH(DMI_BIOS_VERSION,"1SET65WW") }, (void*)1},
  157. { set_max_cstate, "IBM ThinkPad R40e", {
  158. DMI_MATCH(DMI_BIOS_VENDOR,"IBM"),
  159. DMI_MATCH(DMI_BIOS_VERSION,"1SET68WW") }, (void*)1},
  160. { set_max_cstate, "Medion 41700", {
  161. DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
  162. DMI_MATCH(DMI_BIOS_VERSION,"R01-A1J")}, (void *)1},
  163. { set_max_cstate, "Clevo 5600D", {
  164. DMI_MATCH(DMI_BIOS_VENDOR,"Phoenix Technologies LTD"),
  165. DMI_MATCH(DMI_BIOS_VERSION,"SHE845M0.86C.0013.D.0302131307")},
  166. (void *)2},
  167. {},
  168. };
  169. static inline u32 ticks_elapsed(u32 t1, u32 t2)
  170. {
  171. if (t2 >= t1)
  172. return (t2 - t1);
  173. else if (!(acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER))
  174. return (((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
  175. else
  176. return ((0xFFFFFFFF - t1) + t2);
  177. }
  178. static inline u32 ticks_elapsed_in_us(u32 t1, u32 t2)
  179. {
  180. if (t2 >= t1)
  181. return PM_TIMER_TICKS_TO_US(t2 - t1);
  182. else if (!(acpi_gbl_FADT.flags & ACPI_FADT_32BIT_TIMER))
  183. return PM_TIMER_TICKS_TO_US(((0x00FFFFFF - t1) + t2) & 0x00FFFFFF);
  184. else
  185. return PM_TIMER_TICKS_TO_US((0xFFFFFFFF - t1) + t2);
  186. }
  187. /*
  188. * Callers should disable interrupts before the call and enable
  189. * interrupts after return.
  190. */
  191. static void acpi_safe_halt(void)
  192. {
  193. current_thread_info()->status &= ~TS_POLLING;
  194. /*
  195. * TS_POLLING-cleared state must be visible before we
  196. * test NEED_RESCHED:
  197. */
  198. smp_mb();
  199. if (!need_resched())
  200. safe_halt();
  201. current_thread_info()->status |= TS_POLLING;
  202. }
  203. #ifndef CONFIG_CPU_IDLE
  204. static void
  205. acpi_processor_power_activate(struct acpi_processor *pr,
  206. struct acpi_processor_cx *new)
  207. {
  208. struct acpi_processor_cx *old;
  209. if (!pr || !new)
  210. return;
  211. old = pr->power.state;
  212. if (old)
  213. old->promotion.count = 0;
  214. new->demotion.count = 0;
  215. /* Cleanup from old state. */
  216. if (old) {
  217. switch (old->type) {
  218. case ACPI_STATE_C3:
  219. /* Disable bus master reload */
  220. if (new->type != ACPI_STATE_C3 && pr->flags.bm_check)
  221. acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
  222. break;
  223. }
  224. }
  225. /* Prepare to use new state. */
  226. switch (new->type) {
  227. case ACPI_STATE_C3:
  228. /* Enable bus master reload */
  229. if (old->type != ACPI_STATE_C3 && pr->flags.bm_check)
  230. acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
  231. break;
  232. }
  233. pr->power.state = new;
  234. return;
  235. }
  236. static atomic_t c3_cpu_count;
  237. /* Common C-state entry for C2, C3, .. */
  238. static void acpi_cstate_enter(struct acpi_processor_cx *cstate)
  239. {
  240. if (cstate->space_id == ACPI_CSTATE_FFH) {
  241. /* Call into architectural FFH based C-state */
  242. acpi_processor_ffh_cstate_enter(cstate);
  243. } else {
  244. int unused;
  245. /* IO port based C-state */
  246. inb(cstate->address);
  247. /* Dummy wait op - must do something useless after P_LVL2 read
  248. because chipsets cannot guarantee that STPCLK# signal
  249. gets asserted in time to freeze execution properly. */
  250. unused = inl(acpi_gbl_FADT.xpm_timer_block.address);
  251. }
  252. }
  253. #endif /* !CONFIG_CPU_IDLE */
  254. #ifdef ARCH_APICTIMER_STOPS_ON_C3
  255. /*
  256. * Some BIOS implementations switch to C3 in the published C2 state.
  257. * This seems to be a common problem on AMD boxen, but other vendors
  258. * are affected too. We pick the most conservative approach: we assume
  259. * that the local APIC stops in both C2 and C3.
  260. */
  261. static void acpi_timer_check_state(int state, struct acpi_processor *pr,
  262. struct acpi_processor_cx *cx)
  263. {
  264. struct acpi_processor_power *pwr = &pr->power;
  265. u8 type = local_apic_timer_c2_ok ? ACPI_STATE_C3 : ACPI_STATE_C2;
  266. /*
  267. * Check, if one of the previous states already marked the lapic
  268. * unstable
  269. */
  270. if (pwr->timer_broadcast_on_state < state)
  271. return;
  272. if (cx->type >= type)
  273. pr->power.timer_broadcast_on_state = state;
  274. }
  275. static void acpi_propagate_timer_broadcast(struct acpi_processor *pr)
  276. {
  277. unsigned long reason;
  278. reason = pr->power.timer_broadcast_on_state < INT_MAX ?
  279. CLOCK_EVT_NOTIFY_BROADCAST_ON : CLOCK_EVT_NOTIFY_BROADCAST_OFF;
  280. clockevents_notify(reason, &pr->id);
  281. }
  282. /* Power(C) State timer broadcast control */
  283. static void acpi_state_timer_broadcast(struct acpi_processor *pr,
  284. struct acpi_processor_cx *cx,
  285. int broadcast)
  286. {
  287. int state = cx - pr->power.states;
  288. if (state >= pr->power.timer_broadcast_on_state) {
  289. unsigned long reason;
  290. reason = broadcast ? CLOCK_EVT_NOTIFY_BROADCAST_ENTER :
  291. CLOCK_EVT_NOTIFY_BROADCAST_EXIT;
  292. clockevents_notify(reason, &pr->id);
  293. }
  294. }
  295. #else
  296. static void acpi_timer_check_state(int state, struct acpi_processor *pr,
  297. struct acpi_processor_cx *cstate) { }
  298. static void acpi_propagate_timer_broadcast(struct acpi_processor *pr) { }
  299. static void acpi_state_timer_broadcast(struct acpi_processor *pr,
  300. struct acpi_processor_cx *cx,
  301. int broadcast)
  302. {
  303. }
  304. #endif
  305. /*
  306. * Suspend / resume control
  307. */
  308. static int acpi_idle_suspend;
  309. int acpi_processor_suspend(struct acpi_device * device, pm_message_t state)
  310. {
  311. acpi_idle_suspend = 1;
  312. return 0;
  313. }
  314. int acpi_processor_resume(struct acpi_device * device)
  315. {
  316. acpi_idle_suspend = 0;
  317. return 0;
  318. }
  319. #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
  320. static int tsc_halts_in_c(int state)
  321. {
  322. switch (boot_cpu_data.x86_vendor) {
  323. case X86_VENDOR_AMD:
  324. /*
  325. * AMD Fam10h TSC will tick in all
  326. * C/P/S0/S1 states when this bit is set.
  327. */
  328. if (boot_cpu_has(X86_FEATURE_CONSTANT_TSC))
  329. return 0;
  330. /*FALL THROUGH*/
  331. case X86_VENDOR_INTEL:
  332. /* Several cases known where TSC halts in C2 too */
  333. default:
  334. return state > ACPI_STATE_C1;
  335. }
  336. }
  337. #endif
  338. #ifndef CONFIG_CPU_IDLE
  339. static void acpi_processor_idle(void)
  340. {
  341. struct acpi_processor *pr = NULL;
  342. struct acpi_processor_cx *cx = NULL;
  343. struct acpi_processor_cx *next_state = NULL;
  344. int sleep_ticks = 0;
  345. u32 t1, t2 = 0;
  346. /*
  347. * Interrupts must be disabled during bus mastering calculations and
  348. * for C2/C3 transitions.
  349. */
  350. local_irq_disable();
  351. pr = processors[smp_processor_id()];
  352. if (!pr) {
  353. local_irq_enable();
  354. return;
  355. }
  356. /*
  357. * Check whether we truly need to go idle, or should
  358. * reschedule:
  359. */
  360. if (unlikely(need_resched())) {
  361. local_irq_enable();
  362. return;
  363. }
  364. cx = pr->power.state;
  365. if (!cx || acpi_idle_suspend) {
  366. if (pm_idle_save)
  367. pm_idle_save();
  368. else
  369. acpi_safe_halt();
  370. local_irq_enable();
  371. return;
  372. }
  373. /*
  374. * Check BM Activity
  375. * -----------------
  376. * Check for bus mastering activity (if required), record, and check
  377. * for demotion.
  378. */
  379. if (pr->flags.bm_check) {
  380. u32 bm_status = 0;
  381. unsigned long diff = jiffies - pr->power.bm_check_timestamp;
  382. if (diff > 31)
  383. diff = 31;
  384. pr->power.bm_activity <<= diff;
  385. acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
  386. if (bm_status) {
  387. pr->power.bm_activity |= 0x1;
  388. acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
  389. }
  390. /*
  391. * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
  392. * the true state of bus mastering activity; forcing us to
  393. * manually check the BMIDEA bit of each IDE channel.
  394. */
  395. else if (errata.piix4.bmisx) {
  396. if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
  397. || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
  398. pr->power.bm_activity |= 0x1;
  399. }
  400. pr->power.bm_check_timestamp = jiffies;
  401. /*
  402. * If bus mastering is or was active this jiffy, demote
  403. * to avoid a faulty transition. Note that the processor
  404. * won't enter a low-power state during this call (to this
  405. * function) but should upon the next.
  406. *
  407. * TBD: A better policy might be to fallback to the demotion
  408. * state (use it for this quantum only) istead of
  409. * demoting -- and rely on duration as our sole demotion
  410. * qualification. This may, however, introduce DMA
  411. * issues (e.g. floppy DMA transfer overrun/underrun).
  412. */
  413. if ((pr->power.bm_activity & 0x1) &&
  414. cx->demotion.threshold.bm) {
  415. local_irq_enable();
  416. next_state = cx->demotion.state;
  417. goto end;
  418. }
  419. }
  420. #ifdef CONFIG_HOTPLUG_CPU
  421. /*
  422. * Check for P_LVL2_UP flag before entering C2 and above on
  423. * an SMP system. We do it here instead of doing it at _CST/P_LVL
  424. * detection phase, to work cleanly with logical CPU hotplug.
  425. */
  426. if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
  427. !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
  428. cx = &pr->power.states[ACPI_STATE_C1];
  429. #endif
  430. /*
  431. * Sleep:
  432. * ------
  433. * Invoke the current Cx state to put the processor to sleep.
  434. */
  435. if (cx->type == ACPI_STATE_C2 || cx->type == ACPI_STATE_C3) {
  436. current_thread_info()->status &= ~TS_POLLING;
  437. /*
  438. * TS_POLLING-cleared state must be visible before we
  439. * test NEED_RESCHED:
  440. */
  441. smp_mb();
  442. if (need_resched()) {
  443. current_thread_info()->status |= TS_POLLING;
  444. local_irq_enable();
  445. return;
  446. }
  447. }
  448. switch (cx->type) {
  449. case ACPI_STATE_C1:
  450. /*
  451. * Invoke C1.
  452. * Use the appropriate idle routine, the one that would
  453. * be used without acpi C-states.
  454. */
  455. if (pm_idle_save)
  456. pm_idle_save();
  457. else
  458. acpi_safe_halt();
  459. /*
  460. * TBD: Can't get time duration while in C1, as resumes
  461. * go to an ISR rather than here. Need to instrument
  462. * base interrupt handler.
  463. *
  464. * Note: the TSC better not stop in C1, sched_clock() will
  465. * skew otherwise.
  466. */
  467. sleep_ticks = 0xFFFFFFFF;
  468. local_irq_enable();
  469. break;
  470. case ACPI_STATE_C2:
  471. /* Get start time (ticks) */
  472. t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
  473. /* Tell the scheduler that we are going deep-idle: */
  474. sched_clock_idle_sleep_event();
  475. /* Invoke C2 */
  476. acpi_state_timer_broadcast(pr, cx, 1);
  477. acpi_cstate_enter(cx);
  478. /* Get end time (ticks) */
  479. t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
  480. #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
  481. /* TSC halts in C2, so notify users */
  482. if (tsc_halts_in_c(ACPI_STATE_C2))
  483. mark_tsc_unstable("possible TSC halt in C2");
  484. #endif
  485. /* Compute time (ticks) that we were actually asleep */
  486. sleep_ticks = ticks_elapsed(t1, t2);
  487. /* Tell the scheduler how much we idled: */
  488. sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
  489. /* Re-enable interrupts */
  490. local_irq_enable();
  491. /* Do not account our idle-switching overhead: */
  492. sleep_ticks -= cx->latency_ticks + C2_OVERHEAD;
  493. current_thread_info()->status |= TS_POLLING;
  494. acpi_state_timer_broadcast(pr, cx, 0);
  495. break;
  496. case ACPI_STATE_C3:
  497. acpi_unlazy_tlb(smp_processor_id());
  498. /*
  499. * Must be done before busmaster disable as we might
  500. * need to access HPET !
  501. */
  502. acpi_state_timer_broadcast(pr, cx, 1);
  503. /*
  504. * disable bus master
  505. * bm_check implies we need ARB_DIS
  506. * !bm_check implies we need cache flush
  507. * bm_control implies whether we can do ARB_DIS
  508. *
  509. * That leaves a case where bm_check is set and bm_control is
  510. * not set. In that case we cannot do much, we enter C3
  511. * without doing anything.
  512. */
  513. if (pr->flags.bm_check && pr->flags.bm_control) {
  514. if (atomic_inc_return(&c3_cpu_count) ==
  515. num_online_cpus()) {
  516. /*
  517. * All CPUs are trying to go to C3
  518. * Disable bus master arbitration
  519. */
  520. acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
  521. }
  522. } else if (!pr->flags.bm_check) {
  523. /* SMP with no shared cache... Invalidate cache */
  524. ACPI_FLUSH_CPU_CACHE();
  525. }
  526. /* Get start time (ticks) */
  527. t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
  528. /* Invoke C3 */
  529. /* Tell the scheduler that we are going deep-idle: */
  530. sched_clock_idle_sleep_event();
  531. acpi_cstate_enter(cx);
  532. /* Get end time (ticks) */
  533. t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
  534. if (pr->flags.bm_check && pr->flags.bm_control) {
  535. /* Enable bus master arbitration */
  536. atomic_dec(&c3_cpu_count);
  537. acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
  538. }
  539. #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
  540. /* TSC halts in C3, so notify users */
  541. if (tsc_halts_in_c(ACPI_STATE_C3))
  542. mark_tsc_unstable("TSC halts in C3");
  543. #endif
  544. /* Compute time (ticks) that we were actually asleep */
  545. sleep_ticks = ticks_elapsed(t1, t2);
  546. /* Tell the scheduler how much we idled: */
  547. sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
  548. /* Re-enable interrupts */
  549. local_irq_enable();
  550. /* Do not account our idle-switching overhead: */
  551. sleep_ticks -= cx->latency_ticks + C3_OVERHEAD;
  552. current_thread_info()->status |= TS_POLLING;
  553. acpi_state_timer_broadcast(pr, cx, 0);
  554. break;
  555. default:
  556. local_irq_enable();
  557. return;
  558. }
  559. cx->usage++;
  560. if ((cx->type != ACPI_STATE_C1) && (sleep_ticks > 0))
  561. cx->time += sleep_ticks;
  562. next_state = pr->power.state;
  563. #ifdef CONFIG_HOTPLUG_CPU
  564. /* Don't do promotion/demotion */
  565. if ((cx->type == ACPI_STATE_C1) && (num_online_cpus() > 1) &&
  566. !pr->flags.has_cst && !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED)) {
  567. next_state = cx;
  568. goto end;
  569. }
  570. #endif
  571. /*
  572. * Promotion?
  573. * ----------
  574. * Track the number of longs (time asleep is greater than threshold)
  575. * and promote when the count threshold is reached. Note that bus
  576. * mastering activity may prevent promotions.
  577. * Do not promote above max_cstate.
  578. */
  579. if (cx->promotion.state &&
  580. ((cx->promotion.state - pr->power.states) <= max_cstate)) {
  581. if (sleep_ticks > cx->promotion.threshold.ticks &&
  582. cx->promotion.state->latency <=
  583. pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY)) {
  584. cx->promotion.count++;
  585. cx->demotion.count = 0;
  586. if (cx->promotion.count >=
  587. cx->promotion.threshold.count) {
  588. if (pr->flags.bm_check) {
  589. if (!
  590. (pr->power.bm_activity & cx->
  591. promotion.threshold.bm)) {
  592. next_state =
  593. cx->promotion.state;
  594. goto end;
  595. }
  596. } else {
  597. next_state = cx->promotion.state;
  598. goto end;
  599. }
  600. }
  601. }
  602. }
  603. /*
  604. * Demotion?
  605. * ---------
  606. * Track the number of shorts (time asleep is less than time threshold)
  607. * and demote when the usage threshold is reached.
  608. */
  609. if (cx->demotion.state) {
  610. if (sleep_ticks < cx->demotion.threshold.ticks) {
  611. cx->demotion.count++;
  612. cx->promotion.count = 0;
  613. if (cx->demotion.count >= cx->demotion.threshold.count) {
  614. next_state = cx->demotion.state;
  615. goto end;
  616. }
  617. }
  618. }
  619. end:
  620. /*
  621. * Demote if current state exceeds max_cstate
  622. * or if the latency of the current state is unacceptable
  623. */
  624. if ((pr->power.state - pr->power.states) > max_cstate ||
  625. pr->power.state->latency >
  626. pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY)) {
  627. if (cx->demotion.state)
  628. next_state = cx->demotion.state;
  629. }
  630. /*
  631. * New Cx State?
  632. * -------------
  633. * If we're going to start using a new Cx state we must clean up
  634. * from the previous and prepare to use the new.
  635. */
  636. if (next_state != pr->power.state)
  637. acpi_processor_power_activate(pr, next_state);
  638. }
  639. static int acpi_processor_set_power_policy(struct acpi_processor *pr)
  640. {
  641. unsigned int i;
  642. unsigned int state_is_set = 0;
  643. struct acpi_processor_cx *lower = NULL;
  644. struct acpi_processor_cx *higher = NULL;
  645. struct acpi_processor_cx *cx;
  646. if (!pr)
  647. return -EINVAL;
  648. /*
  649. * This function sets the default Cx state policy (OS idle handler).
  650. * Our scheme is to promote quickly to C2 but more conservatively
  651. * to C3. We're favoring C2 for its characteristics of low latency
  652. * (quick response), good power savings, and ability to allow bus
  653. * mastering activity. Note that the Cx state policy is completely
  654. * customizable and can be altered dynamically.
  655. */
  656. /* startup state */
  657. for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
  658. cx = &pr->power.states[i];
  659. if (!cx->valid)
  660. continue;
  661. if (!state_is_set)
  662. pr->power.state = cx;
  663. state_is_set++;
  664. break;
  665. }
  666. if (!state_is_set)
  667. return -ENODEV;
  668. /* demotion */
  669. for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
  670. cx = &pr->power.states[i];
  671. if (!cx->valid)
  672. continue;
  673. if (lower) {
  674. cx->demotion.state = lower;
  675. cx->demotion.threshold.ticks = cx->latency_ticks;
  676. cx->demotion.threshold.count = 1;
  677. if (cx->type == ACPI_STATE_C3)
  678. cx->demotion.threshold.bm = bm_history;
  679. }
  680. lower = cx;
  681. }
  682. /* promotion */
  683. for (i = (ACPI_PROCESSOR_MAX_POWER - 1); i > 0; i--) {
  684. cx = &pr->power.states[i];
  685. if (!cx->valid)
  686. continue;
  687. if (higher) {
  688. cx->promotion.state = higher;
  689. cx->promotion.threshold.ticks = cx->latency_ticks;
  690. if (cx->type >= ACPI_STATE_C2)
  691. cx->promotion.threshold.count = 4;
  692. else
  693. cx->promotion.threshold.count = 10;
  694. if (higher->type == ACPI_STATE_C3)
  695. cx->promotion.threshold.bm = bm_history;
  696. }
  697. higher = cx;
  698. }
  699. return 0;
  700. }
  701. #endif /* !CONFIG_CPU_IDLE */
  702. static int acpi_processor_get_power_info_fadt(struct acpi_processor *pr)
  703. {
  704. if (!pr)
  705. return -EINVAL;
  706. if (!pr->pblk)
  707. return -ENODEV;
  708. /* if info is obtained from pblk/fadt, type equals state */
  709. pr->power.states[ACPI_STATE_C2].type = ACPI_STATE_C2;
  710. pr->power.states[ACPI_STATE_C3].type = ACPI_STATE_C3;
  711. #ifndef CONFIG_HOTPLUG_CPU
  712. /*
  713. * Check for P_LVL2_UP flag before entering C2 and above on
  714. * an SMP system.
  715. */
  716. if ((num_online_cpus() > 1) &&
  717. !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
  718. return -ENODEV;
  719. #endif
  720. /* determine C2 and C3 address from pblk */
  721. pr->power.states[ACPI_STATE_C2].address = pr->pblk + 4;
  722. pr->power.states[ACPI_STATE_C3].address = pr->pblk + 5;
  723. /* determine latencies from FADT */
  724. pr->power.states[ACPI_STATE_C2].latency = acpi_gbl_FADT.C2latency;
  725. pr->power.states[ACPI_STATE_C3].latency = acpi_gbl_FADT.C3latency;
  726. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  727. "lvl2[0x%08x] lvl3[0x%08x]\n",
  728. pr->power.states[ACPI_STATE_C2].address,
  729. pr->power.states[ACPI_STATE_C3].address));
  730. return 0;
  731. }
  732. static int acpi_processor_get_power_info_default(struct acpi_processor *pr)
  733. {
  734. if (!pr->power.states[ACPI_STATE_C1].valid) {
  735. /* set the first C-State to C1 */
  736. /* all processors need to support C1 */
  737. pr->power.states[ACPI_STATE_C1].type = ACPI_STATE_C1;
  738. pr->power.states[ACPI_STATE_C1].valid = 1;
  739. }
  740. /* the C0 state only exists as a filler in our array */
  741. pr->power.states[ACPI_STATE_C0].valid = 1;
  742. return 0;
  743. }
  744. static int acpi_processor_get_power_info_cst(struct acpi_processor *pr)
  745. {
  746. acpi_status status = 0;
  747. acpi_integer count;
  748. int current_count;
  749. int i;
  750. struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
  751. union acpi_object *cst;
  752. if (nocst)
  753. return -ENODEV;
  754. current_count = 0;
  755. status = acpi_evaluate_object(pr->handle, "_CST", NULL, &buffer);
  756. if (ACPI_FAILURE(status)) {
  757. ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No _CST, giving up\n"));
  758. return -ENODEV;
  759. }
  760. cst = buffer.pointer;
  761. /* There must be at least 2 elements */
  762. if (!cst || (cst->type != ACPI_TYPE_PACKAGE) || cst->package.count < 2) {
  763. printk(KERN_ERR PREFIX "not enough elements in _CST\n");
  764. status = -EFAULT;
  765. goto end;
  766. }
  767. count = cst->package.elements[0].integer.value;
  768. /* Validate number of power states. */
  769. if (count < 1 || count != cst->package.count - 1) {
  770. printk(KERN_ERR PREFIX "count given by _CST is not valid\n");
  771. status = -EFAULT;
  772. goto end;
  773. }
  774. /* Tell driver that at least _CST is supported. */
  775. pr->flags.has_cst = 1;
  776. for (i = 1; i <= count; i++) {
  777. union acpi_object *element;
  778. union acpi_object *obj;
  779. struct acpi_power_register *reg;
  780. struct acpi_processor_cx cx;
  781. memset(&cx, 0, sizeof(cx));
  782. element = &(cst->package.elements[i]);
  783. if (element->type != ACPI_TYPE_PACKAGE)
  784. continue;
  785. if (element->package.count != 4)
  786. continue;
  787. obj = &(element->package.elements[0]);
  788. if (obj->type != ACPI_TYPE_BUFFER)
  789. continue;
  790. reg = (struct acpi_power_register *)obj->buffer.pointer;
  791. if (reg->space_id != ACPI_ADR_SPACE_SYSTEM_IO &&
  792. (reg->space_id != ACPI_ADR_SPACE_FIXED_HARDWARE))
  793. continue;
  794. /* There should be an easy way to extract an integer... */
  795. obj = &(element->package.elements[1]);
  796. if (obj->type != ACPI_TYPE_INTEGER)
  797. continue;
  798. cx.type = obj->integer.value;
  799. /*
  800. * Some buggy BIOSes won't list C1 in _CST -
  801. * Let acpi_processor_get_power_info_default() handle them later
  802. */
  803. if (i == 1 && cx.type != ACPI_STATE_C1)
  804. current_count++;
  805. cx.address = reg->address;
  806. cx.index = current_count + 1;
  807. cx.space_id = ACPI_CSTATE_SYSTEMIO;
  808. if (reg->space_id == ACPI_ADR_SPACE_FIXED_HARDWARE) {
  809. if (acpi_processor_ffh_cstate_probe
  810. (pr->id, &cx, reg) == 0) {
  811. cx.space_id = ACPI_CSTATE_FFH;
  812. } else if (cx.type != ACPI_STATE_C1) {
  813. /*
  814. * C1 is a special case where FIXED_HARDWARE
  815. * can be handled in non-MWAIT way as well.
  816. * In that case, save this _CST entry info.
  817. * That is, we retain space_id of SYSTEM_IO for
  818. * halt based C1.
  819. * Otherwise, ignore this info and continue.
  820. */
  821. continue;
  822. }
  823. }
  824. obj = &(element->package.elements[2]);
  825. if (obj->type != ACPI_TYPE_INTEGER)
  826. continue;
  827. cx.latency = obj->integer.value;
  828. obj = &(element->package.elements[3]);
  829. if (obj->type != ACPI_TYPE_INTEGER)
  830. continue;
  831. cx.power = obj->integer.value;
  832. current_count++;
  833. memcpy(&(pr->power.states[current_count]), &cx, sizeof(cx));
  834. /*
  835. * We support total ACPI_PROCESSOR_MAX_POWER - 1
  836. * (From 1 through ACPI_PROCESSOR_MAX_POWER - 1)
  837. */
  838. if (current_count >= (ACPI_PROCESSOR_MAX_POWER - 1)) {
  839. printk(KERN_WARNING
  840. "Limiting number of power states to max (%d)\n",
  841. ACPI_PROCESSOR_MAX_POWER);
  842. printk(KERN_WARNING
  843. "Please increase ACPI_PROCESSOR_MAX_POWER if needed.\n");
  844. break;
  845. }
  846. }
  847. ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d power states\n",
  848. current_count));
  849. /* Validate number of power states discovered */
  850. if (current_count < 2)
  851. status = -EFAULT;
  852. end:
  853. kfree(buffer.pointer);
  854. return status;
  855. }
  856. static void acpi_processor_power_verify_c2(struct acpi_processor_cx *cx)
  857. {
  858. if (!cx->address)
  859. return;
  860. /*
  861. * C2 latency must be less than or equal to 100
  862. * microseconds.
  863. */
  864. else if (cx->latency > ACPI_PROCESSOR_MAX_C2_LATENCY) {
  865. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  866. "latency too large [%d]\n", cx->latency));
  867. return;
  868. }
  869. /*
  870. * Otherwise we've met all of our C2 requirements.
  871. * Normalize the C2 latency to expidite policy
  872. */
  873. cx->valid = 1;
  874. #ifndef CONFIG_CPU_IDLE
  875. cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
  876. #else
  877. cx->latency_ticks = cx->latency;
  878. #endif
  879. return;
  880. }
  881. static void acpi_processor_power_verify_c3(struct acpi_processor *pr,
  882. struct acpi_processor_cx *cx)
  883. {
  884. static int bm_check_flag;
  885. if (!cx->address)
  886. return;
  887. /*
  888. * C3 latency must be less than or equal to 1000
  889. * microseconds.
  890. */
  891. else if (cx->latency > ACPI_PROCESSOR_MAX_C3_LATENCY) {
  892. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  893. "latency too large [%d]\n", cx->latency));
  894. return;
  895. }
  896. /*
  897. * PIIX4 Erratum #18: We don't support C3 when Type-F (fast)
  898. * DMA transfers are used by any ISA device to avoid livelock.
  899. * Note that we could disable Type-F DMA (as recommended by
  900. * the erratum), but this is known to disrupt certain ISA
  901. * devices thus we take the conservative approach.
  902. */
  903. else if (errata.piix4.fdma) {
  904. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  905. "C3 not supported on PIIX4 with Type-F DMA\n"));
  906. return;
  907. }
  908. /* All the logic here assumes flags.bm_check is same across all CPUs */
  909. if (!bm_check_flag) {
  910. /* Determine whether bm_check is needed based on CPU */
  911. acpi_processor_power_init_bm_check(&(pr->flags), pr->id);
  912. bm_check_flag = pr->flags.bm_check;
  913. } else {
  914. pr->flags.bm_check = bm_check_flag;
  915. }
  916. if (pr->flags.bm_check) {
  917. if (!pr->flags.bm_control) {
  918. if (pr->flags.has_cst != 1) {
  919. /* bus mastering control is necessary */
  920. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  921. "C3 support requires BM control\n"));
  922. return;
  923. } else {
  924. /* Here we enter C3 without bus mastering */
  925. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  926. "C3 support without BM control\n"));
  927. }
  928. }
  929. } else {
  930. /*
  931. * WBINVD should be set in fadt, for C3 state to be
  932. * supported on when bm_check is not required.
  933. */
  934. if (!(acpi_gbl_FADT.flags & ACPI_FADT_WBINVD)) {
  935. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  936. "Cache invalidation should work properly"
  937. " for C3 to be enabled on SMP systems\n"));
  938. return;
  939. }
  940. acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
  941. }
  942. /*
  943. * Otherwise we've met all of our C3 requirements.
  944. * Normalize the C3 latency to expidite policy. Enable
  945. * checking of bus mastering status (bm_check) so we can
  946. * use this in our C3 policy
  947. */
  948. cx->valid = 1;
  949. #ifndef CONFIG_CPU_IDLE
  950. cx->latency_ticks = US_TO_PM_TIMER_TICKS(cx->latency);
  951. #else
  952. cx->latency_ticks = cx->latency;
  953. #endif
  954. return;
  955. }
  956. static int acpi_processor_power_verify(struct acpi_processor *pr)
  957. {
  958. unsigned int i;
  959. unsigned int working = 0;
  960. pr->power.timer_broadcast_on_state = INT_MAX;
  961. for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
  962. struct acpi_processor_cx *cx = &pr->power.states[i];
  963. switch (cx->type) {
  964. case ACPI_STATE_C1:
  965. cx->valid = 1;
  966. break;
  967. case ACPI_STATE_C2:
  968. acpi_processor_power_verify_c2(cx);
  969. if (cx->valid)
  970. acpi_timer_check_state(i, pr, cx);
  971. break;
  972. case ACPI_STATE_C3:
  973. acpi_processor_power_verify_c3(pr, cx);
  974. if (cx->valid)
  975. acpi_timer_check_state(i, pr, cx);
  976. break;
  977. }
  978. if (cx->valid)
  979. working++;
  980. }
  981. acpi_propagate_timer_broadcast(pr);
  982. return (working);
  983. }
  984. static int acpi_processor_get_power_info(struct acpi_processor *pr)
  985. {
  986. unsigned int i;
  987. int result;
  988. /* NOTE: the idle thread may not be running while calling
  989. * this function */
  990. /* Zero initialize all the C-states info. */
  991. memset(pr->power.states, 0, sizeof(pr->power.states));
  992. result = acpi_processor_get_power_info_cst(pr);
  993. if (result == -ENODEV)
  994. result = acpi_processor_get_power_info_fadt(pr);
  995. if (result)
  996. return result;
  997. acpi_processor_get_power_info_default(pr);
  998. pr->power.count = acpi_processor_power_verify(pr);
  999. #ifndef CONFIG_CPU_IDLE
  1000. /*
  1001. * Set Default Policy
  1002. * ------------------
  1003. * Now that we know which states are supported, set the default
  1004. * policy. Note that this policy can be changed dynamically
  1005. * (e.g. encourage deeper sleeps to conserve battery life when
  1006. * not on AC).
  1007. */
  1008. result = acpi_processor_set_power_policy(pr);
  1009. if (result)
  1010. return result;
  1011. #endif
  1012. /*
  1013. * if one state of type C2 or C3 is available, mark this
  1014. * CPU as being "idle manageable"
  1015. */
  1016. for (i = 1; i < ACPI_PROCESSOR_MAX_POWER; i++) {
  1017. if (pr->power.states[i].valid) {
  1018. pr->power.count = i;
  1019. if (pr->power.states[i].type >= ACPI_STATE_C2)
  1020. pr->flags.power = 1;
  1021. }
  1022. }
  1023. return 0;
  1024. }
  1025. static int acpi_processor_power_seq_show(struct seq_file *seq, void *offset)
  1026. {
  1027. struct acpi_processor *pr = seq->private;
  1028. unsigned int i;
  1029. if (!pr)
  1030. goto end;
  1031. seq_printf(seq, "active state: C%zd\n"
  1032. "max_cstate: C%d\n"
  1033. "bus master activity: %08x\n"
  1034. "maximum allowed latency: %d usec\n",
  1035. pr->power.state ? pr->power.state - pr->power.states : 0,
  1036. max_cstate, (unsigned)pr->power.bm_activity,
  1037. pm_qos_requirement(PM_QOS_CPU_DMA_LATENCY));
  1038. seq_puts(seq, "states:\n");
  1039. for (i = 1; i <= pr->power.count; i++) {
  1040. seq_printf(seq, " %cC%d: ",
  1041. (&pr->power.states[i] ==
  1042. pr->power.state ? '*' : ' '), i);
  1043. if (!pr->power.states[i].valid) {
  1044. seq_puts(seq, "<not supported>\n");
  1045. continue;
  1046. }
  1047. switch (pr->power.states[i].type) {
  1048. case ACPI_STATE_C1:
  1049. seq_printf(seq, "type[C1] ");
  1050. break;
  1051. case ACPI_STATE_C2:
  1052. seq_printf(seq, "type[C2] ");
  1053. break;
  1054. case ACPI_STATE_C3:
  1055. seq_printf(seq, "type[C3] ");
  1056. break;
  1057. default:
  1058. seq_printf(seq, "type[--] ");
  1059. break;
  1060. }
  1061. if (pr->power.states[i].promotion.state)
  1062. seq_printf(seq, "promotion[C%zd] ",
  1063. (pr->power.states[i].promotion.state -
  1064. pr->power.states));
  1065. else
  1066. seq_puts(seq, "promotion[--] ");
  1067. if (pr->power.states[i].demotion.state)
  1068. seq_printf(seq, "demotion[C%zd] ",
  1069. (pr->power.states[i].demotion.state -
  1070. pr->power.states));
  1071. else
  1072. seq_puts(seq, "demotion[--] ");
  1073. seq_printf(seq, "latency[%03d] usage[%08d] duration[%020llu]\n",
  1074. pr->power.states[i].latency,
  1075. pr->power.states[i].usage,
  1076. (unsigned long long)pr->power.states[i].time);
  1077. }
  1078. end:
  1079. return 0;
  1080. }
  1081. static int acpi_processor_power_open_fs(struct inode *inode, struct file *file)
  1082. {
  1083. return single_open(file, acpi_processor_power_seq_show,
  1084. PDE(inode)->data);
  1085. }
  1086. static const struct file_operations acpi_processor_power_fops = {
  1087. .open = acpi_processor_power_open_fs,
  1088. .read = seq_read,
  1089. .llseek = seq_lseek,
  1090. .release = single_release,
  1091. };
  1092. #ifndef CONFIG_CPU_IDLE
  1093. int acpi_processor_cst_has_changed(struct acpi_processor *pr)
  1094. {
  1095. int result = 0;
  1096. if (!pr)
  1097. return -EINVAL;
  1098. if (nocst) {
  1099. return -ENODEV;
  1100. }
  1101. if (!pr->flags.power_setup_done)
  1102. return -ENODEV;
  1103. /* Fall back to the default idle loop */
  1104. pm_idle = pm_idle_save;
  1105. synchronize_sched(); /* Relies on interrupts forcing exit from idle. */
  1106. pr->flags.power = 0;
  1107. result = acpi_processor_get_power_info(pr);
  1108. if ((pr->flags.power == 1) && (pr->flags.power_setup_done))
  1109. pm_idle = acpi_processor_idle;
  1110. return result;
  1111. }
  1112. #ifdef CONFIG_SMP
  1113. static void smp_callback(void *v)
  1114. {
  1115. /* we already woke the CPU up, nothing more to do */
  1116. }
  1117. /*
  1118. * This function gets called when a part of the kernel has a new latency
  1119. * requirement. This means we need to get all processors out of their C-state,
  1120. * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
  1121. * wakes them all right up.
  1122. */
  1123. static int acpi_processor_latency_notify(struct notifier_block *b,
  1124. unsigned long l, void *v)
  1125. {
  1126. smp_call_function(smp_callback, NULL, 0, 1);
  1127. return NOTIFY_OK;
  1128. }
  1129. static struct notifier_block acpi_processor_latency_notifier = {
  1130. .notifier_call = acpi_processor_latency_notify,
  1131. };
  1132. #endif
  1133. #else /* CONFIG_CPU_IDLE */
  1134. /**
  1135. * acpi_idle_bm_check - checks if bus master activity was detected
  1136. */
  1137. static int acpi_idle_bm_check(void)
  1138. {
  1139. u32 bm_status = 0;
  1140. acpi_get_register(ACPI_BITREG_BUS_MASTER_STATUS, &bm_status);
  1141. if (bm_status)
  1142. acpi_set_register(ACPI_BITREG_BUS_MASTER_STATUS, 1);
  1143. /*
  1144. * PIIX4 Erratum #18: Note that BM_STS doesn't always reflect
  1145. * the true state of bus mastering activity; forcing us to
  1146. * manually check the BMIDEA bit of each IDE channel.
  1147. */
  1148. else if (errata.piix4.bmisx) {
  1149. if ((inb_p(errata.piix4.bmisx + 0x02) & 0x01)
  1150. || (inb_p(errata.piix4.bmisx + 0x0A) & 0x01))
  1151. bm_status = 1;
  1152. }
  1153. return bm_status;
  1154. }
  1155. /**
  1156. * acpi_idle_update_bm_rld - updates the BM_RLD bit depending on target state
  1157. * @pr: the processor
  1158. * @target: the new target state
  1159. */
  1160. static inline void acpi_idle_update_bm_rld(struct acpi_processor *pr,
  1161. struct acpi_processor_cx *target)
  1162. {
  1163. if (pr->flags.bm_rld_set && target->type != ACPI_STATE_C3) {
  1164. acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 0);
  1165. pr->flags.bm_rld_set = 0;
  1166. }
  1167. if (!pr->flags.bm_rld_set && target->type == ACPI_STATE_C3) {
  1168. acpi_set_register(ACPI_BITREG_BUS_MASTER_RLD, 1);
  1169. pr->flags.bm_rld_set = 1;
  1170. }
  1171. }
  1172. /**
  1173. * acpi_idle_do_entry - a helper function that does C2 and C3 type entry
  1174. * @cx: cstate data
  1175. */
  1176. static inline void acpi_idle_do_entry(struct acpi_processor_cx *cx)
  1177. {
  1178. if (cx->space_id == ACPI_CSTATE_FFH) {
  1179. /* Call into architectural FFH based C-state */
  1180. acpi_processor_ffh_cstate_enter(cx);
  1181. } else {
  1182. int unused;
  1183. /* IO port based C-state */
  1184. inb(cx->address);
  1185. /* Dummy wait op - must do something useless after P_LVL2 read
  1186. because chipsets cannot guarantee that STPCLK# signal
  1187. gets asserted in time to freeze execution properly. */
  1188. unused = inl(acpi_gbl_FADT.xpm_timer_block.address);
  1189. }
  1190. }
  1191. /**
  1192. * acpi_idle_enter_c1 - enters an ACPI C1 state-type
  1193. * @dev: the target CPU
  1194. * @state: the state data
  1195. *
  1196. * This is equivalent to the HALT instruction.
  1197. */
  1198. static int acpi_idle_enter_c1(struct cpuidle_device *dev,
  1199. struct cpuidle_state *state)
  1200. {
  1201. struct acpi_processor *pr;
  1202. struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
  1203. pr = processors[smp_processor_id()];
  1204. if (unlikely(!pr))
  1205. return 0;
  1206. local_irq_disable();
  1207. if (pr->flags.bm_check)
  1208. acpi_idle_update_bm_rld(pr, cx);
  1209. acpi_safe_halt();
  1210. local_irq_enable();
  1211. cx->usage++;
  1212. return 0;
  1213. }
  1214. /**
  1215. * acpi_idle_enter_simple - enters an ACPI state without BM handling
  1216. * @dev: the target CPU
  1217. * @state: the state data
  1218. */
  1219. static int acpi_idle_enter_simple(struct cpuidle_device *dev,
  1220. struct cpuidle_state *state)
  1221. {
  1222. struct acpi_processor *pr;
  1223. struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
  1224. u32 t1, t2;
  1225. int sleep_ticks = 0;
  1226. pr = processors[smp_processor_id()];
  1227. if (unlikely(!pr))
  1228. return 0;
  1229. if (acpi_idle_suspend)
  1230. return(acpi_idle_enter_c1(dev, state));
  1231. local_irq_disable();
  1232. current_thread_info()->status &= ~TS_POLLING;
  1233. /*
  1234. * TS_POLLING-cleared state must be visible before we test
  1235. * NEED_RESCHED:
  1236. */
  1237. smp_mb();
  1238. if (unlikely(need_resched())) {
  1239. current_thread_info()->status |= TS_POLLING;
  1240. local_irq_enable();
  1241. return 0;
  1242. }
  1243. acpi_unlazy_tlb(smp_processor_id());
  1244. /*
  1245. * Must be done before busmaster disable as we might need to
  1246. * access HPET !
  1247. */
  1248. acpi_state_timer_broadcast(pr, cx, 1);
  1249. if (pr->flags.bm_check)
  1250. acpi_idle_update_bm_rld(pr, cx);
  1251. if (cx->type == ACPI_STATE_C3)
  1252. ACPI_FLUSH_CPU_CACHE();
  1253. t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
  1254. /* Tell the scheduler that we are going deep-idle: */
  1255. sched_clock_idle_sleep_event();
  1256. acpi_idle_do_entry(cx);
  1257. t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
  1258. #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
  1259. /* TSC could halt in idle, so notify users */
  1260. if (tsc_halts_in_c(cx->type))
  1261. mark_tsc_unstable("TSC halts in idle");;
  1262. #endif
  1263. sleep_ticks = ticks_elapsed(t1, t2);
  1264. /* Tell the scheduler how much we idled: */
  1265. sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
  1266. local_irq_enable();
  1267. current_thread_info()->status |= TS_POLLING;
  1268. cx->usage++;
  1269. acpi_state_timer_broadcast(pr, cx, 0);
  1270. cx->time += sleep_ticks;
  1271. return ticks_elapsed_in_us(t1, t2);
  1272. }
  1273. static int c3_cpu_count;
  1274. static DEFINE_SPINLOCK(c3_lock);
  1275. /**
  1276. * acpi_idle_enter_bm - enters C3 with proper BM handling
  1277. * @dev: the target CPU
  1278. * @state: the state data
  1279. *
  1280. * If BM is detected, the deepest non-C3 idle state is entered instead.
  1281. */
  1282. static int acpi_idle_enter_bm(struct cpuidle_device *dev,
  1283. struct cpuidle_state *state)
  1284. {
  1285. struct acpi_processor *pr;
  1286. struct acpi_processor_cx *cx = cpuidle_get_statedata(state);
  1287. u32 t1, t2;
  1288. int sleep_ticks = 0;
  1289. pr = processors[smp_processor_id()];
  1290. if (unlikely(!pr))
  1291. return 0;
  1292. if (acpi_idle_suspend)
  1293. return(acpi_idle_enter_c1(dev, state));
  1294. if (acpi_idle_bm_check()) {
  1295. if (dev->safe_state) {
  1296. return dev->safe_state->enter(dev, dev->safe_state);
  1297. } else {
  1298. local_irq_disable();
  1299. acpi_safe_halt();
  1300. local_irq_enable();
  1301. return 0;
  1302. }
  1303. }
  1304. local_irq_disable();
  1305. current_thread_info()->status &= ~TS_POLLING;
  1306. /*
  1307. * TS_POLLING-cleared state must be visible before we test
  1308. * NEED_RESCHED:
  1309. */
  1310. smp_mb();
  1311. if (unlikely(need_resched())) {
  1312. current_thread_info()->status |= TS_POLLING;
  1313. local_irq_enable();
  1314. return 0;
  1315. }
  1316. /* Tell the scheduler that we are going deep-idle: */
  1317. sched_clock_idle_sleep_event();
  1318. /*
  1319. * Must be done before busmaster disable as we might need to
  1320. * access HPET !
  1321. */
  1322. acpi_state_timer_broadcast(pr, cx, 1);
  1323. acpi_idle_update_bm_rld(pr, cx);
  1324. /*
  1325. * disable bus master
  1326. * bm_check implies we need ARB_DIS
  1327. * !bm_check implies we need cache flush
  1328. * bm_control implies whether we can do ARB_DIS
  1329. *
  1330. * That leaves a case where bm_check is set and bm_control is
  1331. * not set. In that case we cannot do much, we enter C3
  1332. * without doing anything.
  1333. */
  1334. if (pr->flags.bm_check && pr->flags.bm_control) {
  1335. spin_lock(&c3_lock);
  1336. c3_cpu_count++;
  1337. /* Disable bus master arbitration when all CPUs are in C3 */
  1338. if (c3_cpu_count == num_online_cpus())
  1339. acpi_set_register(ACPI_BITREG_ARB_DISABLE, 1);
  1340. spin_unlock(&c3_lock);
  1341. } else if (!pr->flags.bm_check) {
  1342. ACPI_FLUSH_CPU_CACHE();
  1343. }
  1344. t1 = inl(acpi_gbl_FADT.xpm_timer_block.address);
  1345. acpi_idle_do_entry(cx);
  1346. t2 = inl(acpi_gbl_FADT.xpm_timer_block.address);
  1347. /* Re-enable bus master arbitration */
  1348. if (pr->flags.bm_check && pr->flags.bm_control) {
  1349. spin_lock(&c3_lock);
  1350. acpi_set_register(ACPI_BITREG_ARB_DISABLE, 0);
  1351. c3_cpu_count--;
  1352. spin_unlock(&c3_lock);
  1353. }
  1354. #if defined (CONFIG_GENERIC_TIME) && defined (CONFIG_X86_TSC)
  1355. /* TSC could halt in idle, so notify users */
  1356. if (tsc_halts_in_c(ACPI_STATE_C3))
  1357. mark_tsc_unstable("TSC halts in idle");
  1358. #endif
  1359. sleep_ticks = ticks_elapsed(t1, t2);
  1360. /* Tell the scheduler how much we idled: */
  1361. sched_clock_idle_wakeup_event(sleep_ticks*PM_TIMER_TICK_NS);
  1362. local_irq_enable();
  1363. current_thread_info()->status |= TS_POLLING;
  1364. cx->usage++;
  1365. acpi_state_timer_broadcast(pr, cx, 0);
  1366. cx->time += sleep_ticks;
  1367. return ticks_elapsed_in_us(t1, t2);
  1368. }
  1369. struct cpuidle_driver acpi_idle_driver = {
  1370. .name = "acpi_idle",
  1371. .owner = THIS_MODULE,
  1372. };
  1373. /**
  1374. * acpi_processor_setup_cpuidle - prepares and configures CPUIDLE
  1375. * @pr: the ACPI processor
  1376. */
  1377. static int acpi_processor_setup_cpuidle(struct acpi_processor *pr)
  1378. {
  1379. int i, count = 0;
  1380. struct acpi_processor_cx *cx;
  1381. struct cpuidle_state *state;
  1382. struct cpuidle_device *dev = &pr->power.dev;
  1383. if (!pr->flags.power_setup_done)
  1384. return -EINVAL;
  1385. if (pr->flags.power == 0) {
  1386. return -EINVAL;
  1387. }
  1388. for (i = 1; i < ACPI_PROCESSOR_MAX_POWER && i <= max_cstate; i++) {
  1389. cx = &pr->power.states[i];
  1390. state = &dev->states[count];
  1391. if (!cx->valid)
  1392. continue;
  1393. #ifdef CONFIG_HOTPLUG_CPU
  1394. if ((cx->type != ACPI_STATE_C1) && (num_online_cpus() > 1) &&
  1395. !pr->flags.has_cst &&
  1396. !(acpi_gbl_FADT.flags & ACPI_FADT_C2_MP_SUPPORTED))
  1397. continue;
  1398. #endif
  1399. cpuidle_set_statedata(state, cx);
  1400. snprintf(state->name, CPUIDLE_NAME_LEN, "C%d", i);
  1401. state->exit_latency = cx->latency;
  1402. state->target_residency = cx->latency * 6;
  1403. state->power_usage = cx->power;
  1404. state->flags = 0;
  1405. switch (cx->type) {
  1406. case ACPI_STATE_C1:
  1407. state->flags |= CPUIDLE_FLAG_SHALLOW;
  1408. state->enter = acpi_idle_enter_c1;
  1409. dev->safe_state = state;
  1410. break;
  1411. case ACPI_STATE_C2:
  1412. state->flags |= CPUIDLE_FLAG_BALANCED;
  1413. state->flags |= CPUIDLE_FLAG_TIME_VALID;
  1414. state->enter = acpi_idle_enter_simple;
  1415. dev->safe_state = state;
  1416. break;
  1417. case ACPI_STATE_C3:
  1418. state->flags |= CPUIDLE_FLAG_DEEP;
  1419. state->flags |= CPUIDLE_FLAG_TIME_VALID;
  1420. state->flags |= CPUIDLE_FLAG_CHECK_BM;
  1421. state->enter = pr->flags.bm_check ?
  1422. acpi_idle_enter_bm :
  1423. acpi_idle_enter_simple;
  1424. break;
  1425. }
  1426. count++;
  1427. }
  1428. dev->state_count = count;
  1429. if (!count)
  1430. return -EINVAL;
  1431. return 0;
  1432. }
  1433. int acpi_processor_cst_has_changed(struct acpi_processor *pr)
  1434. {
  1435. int ret;
  1436. if (!pr)
  1437. return -EINVAL;
  1438. if (nocst) {
  1439. return -ENODEV;
  1440. }
  1441. if (!pr->flags.power_setup_done)
  1442. return -ENODEV;
  1443. cpuidle_pause_and_lock();
  1444. cpuidle_disable_device(&pr->power.dev);
  1445. acpi_processor_get_power_info(pr);
  1446. acpi_processor_setup_cpuidle(pr);
  1447. ret = cpuidle_enable_device(&pr->power.dev);
  1448. cpuidle_resume_and_unlock();
  1449. return ret;
  1450. }
  1451. #endif /* CONFIG_CPU_IDLE */
  1452. int __cpuinit acpi_processor_power_init(struct acpi_processor *pr,
  1453. struct acpi_device *device)
  1454. {
  1455. acpi_status status = 0;
  1456. static int first_run;
  1457. struct proc_dir_entry *entry = NULL;
  1458. unsigned int i;
  1459. if (!first_run) {
  1460. dmi_check_system(processor_power_dmi_table);
  1461. max_cstate = acpi_processor_cstate_check(max_cstate);
  1462. if (max_cstate < ACPI_C_STATES_MAX)
  1463. printk(KERN_NOTICE
  1464. "ACPI: processor limited to max C-state %d\n",
  1465. max_cstate);
  1466. first_run++;
  1467. #if !defined(CONFIG_CPU_IDLE) && defined(CONFIG_SMP)
  1468. pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY,
  1469. &acpi_processor_latency_notifier);
  1470. #endif
  1471. }
  1472. if (!pr)
  1473. return -EINVAL;
  1474. if (acpi_gbl_FADT.cst_control && !nocst) {
  1475. status =
  1476. acpi_os_write_port(acpi_gbl_FADT.smi_command, acpi_gbl_FADT.cst_control, 8);
  1477. if (ACPI_FAILURE(status)) {
  1478. ACPI_EXCEPTION((AE_INFO, status,
  1479. "Notifying BIOS of _CST ability failed"));
  1480. }
  1481. }
  1482. acpi_processor_get_power_info(pr);
  1483. pr->flags.power_setup_done = 1;
  1484. /*
  1485. * Install the idle handler if processor power management is supported.
  1486. * Note that we use previously set idle handler will be used on
  1487. * platforms that only support C1.
  1488. */
  1489. if ((pr->flags.power) && (!boot_option_idle_override)) {
  1490. #ifdef CONFIG_CPU_IDLE
  1491. acpi_processor_setup_cpuidle(pr);
  1492. pr->power.dev.cpu = pr->id;
  1493. if (cpuidle_register_device(&pr->power.dev))
  1494. return -EIO;
  1495. #endif
  1496. printk(KERN_INFO PREFIX "CPU%d (power states:", pr->id);
  1497. for (i = 1; i <= pr->power.count; i++)
  1498. if (pr->power.states[i].valid)
  1499. printk(" C%d[C%d]", i,
  1500. pr->power.states[i].type);
  1501. printk(")\n");
  1502. #ifndef CONFIG_CPU_IDLE
  1503. if (pr->id == 0) {
  1504. pm_idle_save = pm_idle;
  1505. pm_idle = acpi_processor_idle;
  1506. }
  1507. #endif
  1508. }
  1509. /* 'power' [R] */
  1510. entry = create_proc_entry(ACPI_PROCESSOR_FILE_POWER,
  1511. S_IRUGO, acpi_device_dir(device));
  1512. if (!entry)
  1513. return -EIO;
  1514. else {
  1515. entry->proc_fops = &acpi_processor_power_fops;
  1516. entry->data = acpi_driver_data(device);
  1517. entry->owner = THIS_MODULE;
  1518. }
  1519. return 0;
  1520. }
  1521. int acpi_processor_power_exit(struct acpi_processor *pr,
  1522. struct acpi_device *device)
  1523. {
  1524. #ifdef CONFIG_CPU_IDLE
  1525. if ((pr->flags.power) && (!boot_option_idle_override))
  1526. cpuidle_unregister_device(&pr->power.dev);
  1527. #endif
  1528. pr->flags.power_setup_done = 0;
  1529. if (acpi_device_dir(device))
  1530. remove_proc_entry(ACPI_PROCESSOR_FILE_POWER,
  1531. acpi_device_dir(device));
  1532. #ifndef CONFIG_CPU_IDLE
  1533. /* Unregister the idle handler when processor #0 is removed. */
  1534. if (pr->id == 0) {
  1535. pm_idle = pm_idle_save;
  1536. /*
  1537. * We are about to unload the current idle thread pm callback
  1538. * (pm_idle), Wait for all processors to update cached/local
  1539. * copies of pm_idle before proceeding.
  1540. */
  1541. cpu_idle_wait();
  1542. #ifdef CONFIG_SMP
  1543. pm_qos_remove_notifier(PM_QOS_CPU_DMA_LATENCY,
  1544. &acpi_processor_latency_notifier);
  1545. #endif
  1546. }
  1547. #endif
  1548. return 0;
  1549. }