cpuidle.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550
  1. /*
  2. * cpuidle.c - core cpuidle infrastructure
  3. *
  4. * (C) 2006-2007 Venkatesh Pallipadi <venkatesh.pallipadi@intel.com>
  5. * Shaohua Li <shaohua.li@intel.com>
  6. * Adam Belay <abelay@novell.com>
  7. *
  8. * This code is licenced under the GPL.
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/mutex.h>
  12. #include <linux/sched.h>
  13. #include <linux/notifier.h>
  14. #include <linux/pm_qos.h>
  15. #include <linux/cpu.h>
  16. #include <linux/cpuidle.h>
  17. #include <linux/ktime.h>
  18. #include <linux/hrtimer.h>
  19. #include <linux/module.h>
  20. #include <trace/events/power.h>
  21. #include "cpuidle.h"
  22. DEFINE_PER_CPU(struct cpuidle_device *, cpuidle_devices);
  23. DEFINE_MUTEX(cpuidle_lock);
  24. LIST_HEAD(cpuidle_detected_devices);
  25. static int enabled_devices;
  26. static int off __read_mostly;
  27. static int initialized __read_mostly;
  28. int cpuidle_disabled(void)
  29. {
  30. return off;
  31. }
  32. void disable_cpuidle(void)
  33. {
  34. off = 1;
  35. }
  36. static int __cpuidle_register_device(struct cpuidle_device *dev);
  37. static inline int cpuidle_enter(struct cpuidle_device *dev,
  38. struct cpuidle_driver *drv, int index)
  39. {
  40. struct cpuidle_state *target_state = &drv->states[index];
  41. return target_state->enter(dev, drv, index);
  42. }
  43. static inline int cpuidle_enter_tk(struct cpuidle_device *dev,
  44. struct cpuidle_driver *drv, int index)
  45. {
  46. return cpuidle_wrap_enter(dev, drv, index, cpuidle_enter);
  47. }
  48. typedef int (*cpuidle_enter_t)(struct cpuidle_device *dev,
  49. struct cpuidle_driver *drv, int index);
  50. static cpuidle_enter_t cpuidle_enter_ops;
  51. /**
  52. * cpuidle_play_dead - cpu off-lining
  53. *
  54. * Returns in case of an error or no driver
  55. */
  56. int cpuidle_play_dead(void)
  57. {
  58. struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
  59. struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
  60. int i, dead_state = -1;
  61. int power_usage = -1;
  62. if (!drv)
  63. return -ENODEV;
  64. /* Find lowest-power state that supports long-term idle */
  65. for (i = CPUIDLE_DRIVER_STATE_START; i < drv->state_count; i++) {
  66. struct cpuidle_state *s = &drv->states[i];
  67. if (s->power_usage < power_usage && s->enter_dead) {
  68. power_usage = s->power_usage;
  69. dead_state = i;
  70. }
  71. }
  72. if (dead_state != -1)
  73. return drv->states[dead_state].enter_dead(dev, dead_state);
  74. return -ENODEV;
  75. }
  76. /**
  77. * cpuidle_enter_state - enter the state and update stats
  78. * @dev: cpuidle device for this cpu
  79. * @drv: cpuidle driver for this cpu
  80. * @next_state: index into drv->states of the state to enter
  81. */
  82. int cpuidle_enter_state(struct cpuidle_device *dev, struct cpuidle_driver *drv,
  83. int next_state)
  84. {
  85. int entered_state;
  86. entered_state = cpuidle_enter_ops(dev, drv, next_state);
  87. if (entered_state >= 0) {
  88. /* Update cpuidle counters */
  89. /* This can be moved to within driver enter routine
  90. * but that results in multiple copies of same code.
  91. */
  92. dev->states_usage[entered_state].time +=
  93. (unsigned long long)dev->last_residency;
  94. dev->states_usage[entered_state].usage++;
  95. } else {
  96. dev->last_residency = 0;
  97. }
  98. return entered_state;
  99. }
  100. /**
  101. * cpuidle_idle_call - the main idle loop
  102. *
  103. * NOTE: no locks or semaphores should be used here
  104. * return non-zero on failure
  105. */
  106. int cpuidle_idle_call(void)
  107. {
  108. struct cpuidle_device *dev = __this_cpu_read(cpuidle_devices);
  109. struct cpuidle_driver *drv;
  110. int next_state, entered_state;
  111. if (off)
  112. return -ENODEV;
  113. if (!initialized)
  114. return -ENODEV;
  115. /* check if the device is ready */
  116. if (!dev || !dev->enabled)
  117. return -EBUSY;
  118. drv = cpuidle_get_cpu_driver(dev);
  119. /* ask the governor for the next state */
  120. next_state = cpuidle_curr_governor->select(drv, dev);
  121. if (need_resched()) {
  122. dev->last_residency = 0;
  123. /* give the governor an opportunity to reflect on the outcome */
  124. if (cpuidle_curr_governor->reflect)
  125. cpuidle_curr_governor->reflect(dev, next_state);
  126. local_irq_enable();
  127. return 0;
  128. }
  129. trace_power_start_rcuidle(POWER_CSTATE, next_state, dev->cpu);
  130. trace_cpu_idle_rcuidle(next_state, dev->cpu);
  131. if (cpuidle_state_is_coupled(dev, drv, next_state))
  132. entered_state = cpuidle_enter_state_coupled(dev, drv,
  133. next_state);
  134. else
  135. entered_state = cpuidle_enter_state(dev, drv, next_state);
  136. trace_power_end_rcuidle(dev->cpu);
  137. trace_cpu_idle_rcuidle(PWR_EVENT_EXIT, dev->cpu);
  138. /* give the governor an opportunity to reflect on the outcome */
  139. if (cpuidle_curr_governor->reflect)
  140. cpuidle_curr_governor->reflect(dev, entered_state);
  141. return 0;
  142. }
  143. /**
  144. * cpuidle_install_idle_handler - installs the cpuidle idle loop handler
  145. */
  146. void cpuidle_install_idle_handler(void)
  147. {
  148. if (enabled_devices) {
  149. /* Make sure all changes finished before we switch to new idle */
  150. smp_wmb();
  151. initialized = 1;
  152. }
  153. }
  154. /**
  155. * cpuidle_uninstall_idle_handler - uninstalls the cpuidle idle loop handler
  156. */
  157. void cpuidle_uninstall_idle_handler(void)
  158. {
  159. if (enabled_devices) {
  160. initialized = 0;
  161. kick_all_cpus_sync();
  162. }
  163. }
  164. /**
  165. * cpuidle_pause_and_lock - temporarily disables CPUIDLE
  166. */
  167. void cpuidle_pause_and_lock(void)
  168. {
  169. mutex_lock(&cpuidle_lock);
  170. cpuidle_uninstall_idle_handler();
  171. }
  172. EXPORT_SYMBOL_GPL(cpuidle_pause_and_lock);
  173. /**
  174. * cpuidle_resume_and_unlock - resumes CPUIDLE operation
  175. */
  176. void cpuidle_resume_and_unlock(void)
  177. {
  178. cpuidle_install_idle_handler();
  179. mutex_unlock(&cpuidle_lock);
  180. }
  181. EXPORT_SYMBOL_GPL(cpuidle_resume_and_unlock);
  182. /* Currently used in suspend/resume path to suspend cpuidle */
  183. void cpuidle_pause(void)
  184. {
  185. mutex_lock(&cpuidle_lock);
  186. cpuidle_uninstall_idle_handler();
  187. mutex_unlock(&cpuidle_lock);
  188. }
  189. /* Currently used in suspend/resume path to resume cpuidle */
  190. void cpuidle_resume(void)
  191. {
  192. mutex_lock(&cpuidle_lock);
  193. cpuidle_install_idle_handler();
  194. mutex_unlock(&cpuidle_lock);
  195. }
  196. /**
  197. * cpuidle_wrap_enter - performs timekeeping and irqen around enter function
  198. * @dev: pointer to a valid cpuidle_device object
  199. * @drv: pointer to a valid cpuidle_driver object
  200. * @index: index of the target cpuidle state.
  201. */
  202. int cpuidle_wrap_enter(struct cpuidle_device *dev,
  203. struct cpuidle_driver *drv, int index,
  204. int (*enter)(struct cpuidle_device *dev,
  205. struct cpuidle_driver *drv, int index))
  206. {
  207. ktime_t time_start, time_end;
  208. s64 diff;
  209. time_start = ktime_get();
  210. index = enter(dev, drv, index);
  211. time_end = ktime_get();
  212. local_irq_enable();
  213. diff = ktime_to_us(ktime_sub(time_end, time_start));
  214. if (diff > INT_MAX)
  215. diff = INT_MAX;
  216. dev->last_residency = (int) diff;
  217. return index;
  218. }
  219. #ifdef CONFIG_ARCH_HAS_CPU_RELAX
  220. static int poll_idle(struct cpuidle_device *dev,
  221. struct cpuidle_driver *drv, int index)
  222. {
  223. ktime_t t1, t2;
  224. s64 diff;
  225. t1 = ktime_get();
  226. local_irq_enable();
  227. while (!need_resched())
  228. cpu_relax();
  229. t2 = ktime_get();
  230. diff = ktime_to_us(ktime_sub(t2, t1));
  231. if (diff > INT_MAX)
  232. diff = INT_MAX;
  233. dev->last_residency = (int) diff;
  234. return index;
  235. }
  236. static void poll_idle_init(struct cpuidle_driver *drv)
  237. {
  238. struct cpuidle_state *state = &drv->states[0];
  239. snprintf(state->name, CPUIDLE_NAME_LEN, "POLL");
  240. snprintf(state->desc, CPUIDLE_DESC_LEN, "CPUIDLE CORE POLL IDLE");
  241. state->exit_latency = 0;
  242. state->target_residency = 0;
  243. state->power_usage = -1;
  244. state->flags = 0;
  245. state->enter = poll_idle;
  246. state->disabled = false;
  247. }
  248. #else
  249. static void poll_idle_init(struct cpuidle_driver *drv) {}
  250. #endif /* CONFIG_ARCH_HAS_CPU_RELAX */
  251. /**
  252. * cpuidle_enable_device - enables idle PM for a CPU
  253. * @dev: the CPU
  254. *
  255. * This function must be called between cpuidle_pause_and_lock and
  256. * cpuidle_resume_and_unlock when used externally.
  257. */
  258. int cpuidle_enable_device(struct cpuidle_device *dev)
  259. {
  260. int ret, i;
  261. struct cpuidle_driver *drv;
  262. if (!dev)
  263. return -EINVAL;
  264. if (dev->enabled)
  265. return 0;
  266. drv = cpuidle_get_cpu_driver(dev);
  267. if (!drv || !cpuidle_curr_governor)
  268. return -EIO;
  269. if (!dev->state_count)
  270. dev->state_count = drv->state_count;
  271. if (dev->registered == 0) {
  272. ret = __cpuidle_register_device(dev);
  273. if (ret)
  274. return ret;
  275. }
  276. cpuidle_enter_ops = drv->en_core_tk_irqen ?
  277. cpuidle_enter_tk : cpuidle_enter;
  278. poll_idle_init(drv);
  279. ret = cpuidle_add_device_sysfs(dev);
  280. if (ret)
  281. return ret;
  282. if (cpuidle_curr_governor->enable &&
  283. (ret = cpuidle_curr_governor->enable(drv, dev)))
  284. goto fail_sysfs;
  285. for (i = 0; i < dev->state_count; i++) {
  286. dev->states_usage[i].usage = 0;
  287. dev->states_usage[i].time = 0;
  288. }
  289. dev->last_residency = 0;
  290. smp_wmb();
  291. dev->enabled = 1;
  292. enabled_devices++;
  293. return 0;
  294. fail_sysfs:
  295. cpuidle_remove_device_sysfs(dev);
  296. return ret;
  297. }
  298. EXPORT_SYMBOL_GPL(cpuidle_enable_device);
  299. /**
  300. * cpuidle_disable_device - disables idle PM for a CPU
  301. * @dev: the CPU
  302. *
  303. * This function must be called between cpuidle_pause_and_lock and
  304. * cpuidle_resume_and_unlock when used externally.
  305. */
  306. void cpuidle_disable_device(struct cpuidle_device *dev)
  307. {
  308. struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
  309. if (!dev || !dev->enabled)
  310. return;
  311. if (!drv || !cpuidle_curr_governor)
  312. return;
  313. dev->enabled = 0;
  314. if (cpuidle_curr_governor->disable)
  315. cpuidle_curr_governor->disable(drv, dev);
  316. cpuidle_remove_device_sysfs(dev);
  317. enabled_devices--;
  318. }
  319. EXPORT_SYMBOL_GPL(cpuidle_disable_device);
  320. /**
  321. * __cpuidle_register_device - internal register function called before register
  322. * and enable routines
  323. * @dev: the cpu
  324. *
  325. * cpuidle_lock mutex must be held before this is called
  326. */
  327. static int __cpuidle_register_device(struct cpuidle_device *dev)
  328. {
  329. int ret;
  330. struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
  331. if (!try_module_get(drv->owner))
  332. return -EINVAL;
  333. per_cpu(cpuidle_devices, dev->cpu) = dev;
  334. list_add(&dev->device_list, &cpuidle_detected_devices);
  335. ret = cpuidle_add_sysfs(dev);
  336. if (ret)
  337. goto err_sysfs;
  338. ret = cpuidle_coupled_register_device(dev);
  339. if (ret)
  340. goto err_coupled;
  341. dev->registered = 1;
  342. return 0;
  343. err_coupled:
  344. cpuidle_remove_sysfs(dev);
  345. err_sysfs:
  346. list_del(&dev->device_list);
  347. per_cpu(cpuidle_devices, dev->cpu) = NULL;
  348. module_put(drv->owner);
  349. return ret;
  350. }
  351. /**
  352. * cpuidle_register_device - registers a CPU's idle PM feature
  353. * @dev: the cpu
  354. */
  355. int cpuidle_register_device(struct cpuidle_device *dev)
  356. {
  357. int ret;
  358. if (!dev)
  359. return -EINVAL;
  360. mutex_lock(&cpuidle_lock);
  361. if ((ret = __cpuidle_register_device(dev))) {
  362. mutex_unlock(&cpuidle_lock);
  363. return ret;
  364. }
  365. cpuidle_enable_device(dev);
  366. cpuidle_install_idle_handler();
  367. mutex_unlock(&cpuidle_lock);
  368. return 0;
  369. }
  370. EXPORT_SYMBOL_GPL(cpuidle_register_device);
  371. /**
  372. * cpuidle_unregister_device - unregisters a CPU's idle PM feature
  373. * @dev: the cpu
  374. */
  375. void cpuidle_unregister_device(struct cpuidle_device *dev)
  376. {
  377. struct cpuidle_driver *drv = cpuidle_get_cpu_driver(dev);
  378. if (dev->registered == 0)
  379. return;
  380. cpuidle_pause_and_lock();
  381. cpuidle_disable_device(dev);
  382. cpuidle_remove_sysfs(dev);
  383. list_del(&dev->device_list);
  384. per_cpu(cpuidle_devices, dev->cpu) = NULL;
  385. cpuidle_coupled_unregister_device(dev);
  386. cpuidle_resume_and_unlock();
  387. module_put(drv->owner);
  388. }
  389. EXPORT_SYMBOL_GPL(cpuidle_unregister_device);
  390. #ifdef CONFIG_SMP
  391. static void smp_callback(void *v)
  392. {
  393. /* we already woke the CPU up, nothing more to do */
  394. }
  395. /*
  396. * This function gets called when a part of the kernel has a new latency
  397. * requirement. This means we need to get all processors out of their C-state,
  398. * and then recalculate a new suitable C-state. Just do a cross-cpu IPI; that
  399. * wakes them all right up.
  400. */
  401. static int cpuidle_latency_notify(struct notifier_block *b,
  402. unsigned long l, void *v)
  403. {
  404. smp_call_function(smp_callback, NULL, 1);
  405. return NOTIFY_OK;
  406. }
  407. static struct notifier_block cpuidle_latency_notifier = {
  408. .notifier_call = cpuidle_latency_notify,
  409. };
  410. static inline void latency_notifier_init(struct notifier_block *n)
  411. {
  412. pm_qos_add_notifier(PM_QOS_CPU_DMA_LATENCY, n);
  413. }
  414. #else /* CONFIG_SMP */
  415. #define latency_notifier_init(x) do { } while (0)
  416. #endif /* CONFIG_SMP */
  417. /**
  418. * cpuidle_init - core initializer
  419. */
  420. static int __init cpuidle_init(void)
  421. {
  422. int ret;
  423. if (cpuidle_disabled())
  424. return -ENODEV;
  425. ret = cpuidle_add_interface(cpu_subsys.dev_root);
  426. if (ret)
  427. return ret;
  428. latency_notifier_init(&cpuidle_latency_notifier);
  429. return 0;
  430. }
  431. module_param(off, int, 0444);
  432. core_initcall(cpuidle_init);