cpuidle.c 14 KB

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