acpi_pad.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505
  1. /*
  2. * acpi_pad.c ACPI Processor Aggregator Driver
  3. *
  4. * Copyright (c) 2009, Intel Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or modify it
  7. * under the terms and conditions of the GNU General Public License,
  8. * version 2, as published by the Free Software Foundation.
  9. *
  10. * This program is distributed in the hope it will be useful, but WITHOUT
  11. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  12. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  13. * more details.
  14. *
  15. */
  16. #include <linux/kernel.h>
  17. #include <linux/cpumask.h>
  18. #include <linux/module.h>
  19. #include <linux/init.h>
  20. #include <linux/types.h>
  21. #include <linux/kthread.h>
  22. #include <uapi/linux/sched/types.h>
  23. #include <linux/freezer.h>
  24. #include <linux/cpu.h>
  25. #include <linux/tick.h>
  26. #include <linux/slab.h>
  27. #include <linux/acpi.h>
  28. #include <asm/mwait.h>
  29. #include <xen/xen.h>
  30. #define ACPI_PROCESSOR_AGGREGATOR_CLASS "acpi_pad"
  31. #define ACPI_PROCESSOR_AGGREGATOR_DEVICE_NAME "Processor Aggregator"
  32. #define ACPI_PROCESSOR_AGGREGATOR_NOTIFY 0x80
  33. static DEFINE_MUTEX(isolated_cpus_lock);
  34. static DEFINE_MUTEX(round_robin_lock);
  35. static unsigned long power_saving_mwait_eax;
  36. static unsigned char tsc_detected_unstable;
  37. static unsigned char tsc_marked_unstable;
  38. static void power_saving_mwait_init(void)
  39. {
  40. unsigned int eax, ebx, ecx, edx;
  41. unsigned int highest_cstate = 0;
  42. unsigned int highest_subcstate = 0;
  43. int i;
  44. if (!boot_cpu_has(X86_FEATURE_MWAIT))
  45. return;
  46. if (boot_cpu_data.cpuid_level < CPUID_MWAIT_LEAF)
  47. return;
  48. cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &edx);
  49. if (!(ecx & CPUID5_ECX_EXTENSIONS_SUPPORTED) ||
  50. !(ecx & CPUID5_ECX_INTERRUPT_BREAK))
  51. return;
  52. edx >>= MWAIT_SUBSTATE_SIZE;
  53. for (i = 0; i < 7 && edx; i++, edx >>= MWAIT_SUBSTATE_SIZE) {
  54. if (edx & MWAIT_SUBSTATE_MASK) {
  55. highest_cstate = i;
  56. highest_subcstate = edx & MWAIT_SUBSTATE_MASK;
  57. }
  58. }
  59. power_saving_mwait_eax = (highest_cstate << MWAIT_SUBSTATE_SIZE) |
  60. (highest_subcstate - 1);
  61. #if defined(CONFIG_X86)
  62. switch (boot_cpu_data.x86_vendor) {
  63. case X86_VENDOR_AMD:
  64. case X86_VENDOR_INTEL:
  65. /*
  66. * AMD Fam10h TSC will tick in all
  67. * C/P/S0/S1 states when this bit is set.
  68. */
  69. if (!boot_cpu_has(X86_FEATURE_NONSTOP_TSC))
  70. tsc_detected_unstable = 1;
  71. break;
  72. default:
  73. /* TSC could halt in idle */
  74. tsc_detected_unstable = 1;
  75. }
  76. #endif
  77. }
  78. static unsigned long cpu_weight[NR_CPUS];
  79. static int tsk_in_cpu[NR_CPUS] = {[0 ... NR_CPUS-1] = -1};
  80. static DECLARE_BITMAP(pad_busy_cpus_bits, NR_CPUS);
  81. static void round_robin_cpu(unsigned int tsk_index)
  82. {
  83. struct cpumask *pad_busy_cpus = to_cpumask(pad_busy_cpus_bits);
  84. cpumask_var_t tmp;
  85. int cpu;
  86. unsigned long min_weight = -1;
  87. unsigned long uninitialized_var(preferred_cpu);
  88. if (!alloc_cpumask_var(&tmp, GFP_KERNEL))
  89. return;
  90. mutex_lock(&round_robin_lock);
  91. cpumask_clear(tmp);
  92. for_each_cpu(cpu, pad_busy_cpus)
  93. cpumask_or(tmp, tmp, topology_sibling_cpumask(cpu));
  94. cpumask_andnot(tmp, cpu_online_mask, tmp);
  95. /* avoid HT sibilings if possible */
  96. if (cpumask_empty(tmp))
  97. cpumask_andnot(tmp, cpu_online_mask, pad_busy_cpus);
  98. if (cpumask_empty(tmp)) {
  99. mutex_unlock(&round_robin_lock);
  100. free_cpumask_var(tmp);
  101. return;
  102. }
  103. for_each_cpu(cpu, tmp) {
  104. if (cpu_weight[cpu] < min_weight) {
  105. min_weight = cpu_weight[cpu];
  106. preferred_cpu = cpu;
  107. }
  108. }
  109. if (tsk_in_cpu[tsk_index] != -1)
  110. cpumask_clear_cpu(tsk_in_cpu[tsk_index], pad_busy_cpus);
  111. tsk_in_cpu[tsk_index] = preferred_cpu;
  112. cpumask_set_cpu(preferred_cpu, pad_busy_cpus);
  113. cpu_weight[preferred_cpu]++;
  114. mutex_unlock(&round_robin_lock);
  115. set_cpus_allowed_ptr(current, cpumask_of(preferred_cpu));
  116. free_cpumask_var(tmp);
  117. }
  118. static void exit_round_robin(unsigned int tsk_index)
  119. {
  120. struct cpumask *pad_busy_cpus = to_cpumask(pad_busy_cpus_bits);
  121. cpumask_clear_cpu(tsk_in_cpu[tsk_index], pad_busy_cpus);
  122. tsk_in_cpu[tsk_index] = -1;
  123. }
  124. static unsigned int idle_pct = 5; /* percentage */
  125. static unsigned int round_robin_time = 1; /* second */
  126. static int power_saving_thread(void *data)
  127. {
  128. struct sched_param param = {.sched_priority = 1};
  129. int do_sleep;
  130. unsigned int tsk_index = (unsigned long)data;
  131. u64 last_jiffies = 0;
  132. sched_setscheduler(current, SCHED_RR, &param);
  133. while (!kthread_should_stop()) {
  134. unsigned long expire_time;
  135. /* round robin to cpus */
  136. expire_time = last_jiffies + round_robin_time * HZ;
  137. if (time_before(expire_time, jiffies)) {
  138. last_jiffies = jiffies;
  139. round_robin_cpu(tsk_index);
  140. }
  141. do_sleep = 0;
  142. expire_time = jiffies + HZ * (100 - idle_pct) / 100;
  143. while (!need_resched()) {
  144. if (tsc_detected_unstable && !tsc_marked_unstable) {
  145. /* TSC could halt in idle, so notify users */
  146. mark_tsc_unstable("TSC halts in idle");
  147. tsc_marked_unstable = 1;
  148. }
  149. local_irq_disable();
  150. tick_broadcast_enable();
  151. tick_broadcast_enter();
  152. stop_critical_timings();
  153. mwait_idle_with_hints(power_saving_mwait_eax, 1);
  154. start_critical_timings();
  155. tick_broadcast_exit();
  156. local_irq_enable();
  157. if (time_before(expire_time, jiffies)) {
  158. do_sleep = 1;
  159. break;
  160. }
  161. }
  162. /*
  163. * current sched_rt has threshold for rt task running time.
  164. * When a rt task uses 95% CPU time, the rt thread will be
  165. * scheduled out for 5% CPU time to not starve other tasks. But
  166. * the mechanism only works when all CPUs have RT task running,
  167. * as if one CPU hasn't RT task, RT task from other CPUs will
  168. * borrow CPU time from this CPU and cause RT task use > 95%
  169. * CPU time. To make 'avoid starvation' work, takes a nap here.
  170. */
  171. if (unlikely(do_sleep))
  172. schedule_timeout_killable(HZ * idle_pct / 100);
  173. /* If an external event has set the need_resched flag, then
  174. * we need to deal with it, or this loop will continue to
  175. * spin without calling __mwait().
  176. */
  177. if (unlikely(need_resched()))
  178. schedule();
  179. }
  180. exit_round_robin(tsk_index);
  181. return 0;
  182. }
  183. static struct task_struct *ps_tsks[NR_CPUS];
  184. static unsigned int ps_tsk_num;
  185. static int create_power_saving_task(void)
  186. {
  187. int rc;
  188. ps_tsks[ps_tsk_num] = kthread_run(power_saving_thread,
  189. (void *)(unsigned long)ps_tsk_num,
  190. "acpi_pad/%d", ps_tsk_num);
  191. if (IS_ERR(ps_tsks[ps_tsk_num])) {
  192. rc = PTR_ERR(ps_tsks[ps_tsk_num]);
  193. ps_tsks[ps_tsk_num] = NULL;
  194. } else {
  195. rc = 0;
  196. ps_tsk_num++;
  197. }
  198. return rc;
  199. }
  200. static void destroy_power_saving_task(void)
  201. {
  202. if (ps_tsk_num > 0) {
  203. ps_tsk_num--;
  204. kthread_stop(ps_tsks[ps_tsk_num]);
  205. ps_tsks[ps_tsk_num] = NULL;
  206. }
  207. }
  208. static void set_power_saving_task_num(unsigned int num)
  209. {
  210. if (num > ps_tsk_num) {
  211. while (ps_tsk_num < num) {
  212. if (create_power_saving_task())
  213. return;
  214. }
  215. } else if (num < ps_tsk_num) {
  216. while (ps_tsk_num > num)
  217. destroy_power_saving_task();
  218. }
  219. }
  220. static void acpi_pad_idle_cpus(unsigned int num_cpus)
  221. {
  222. get_online_cpus();
  223. num_cpus = min_t(unsigned int, num_cpus, num_online_cpus());
  224. set_power_saving_task_num(num_cpus);
  225. put_online_cpus();
  226. }
  227. static uint32_t acpi_pad_idle_cpus_num(void)
  228. {
  229. return ps_tsk_num;
  230. }
  231. static ssize_t acpi_pad_rrtime_store(struct device *dev,
  232. struct device_attribute *attr, const char *buf, size_t count)
  233. {
  234. unsigned long num;
  235. if (kstrtoul(buf, 0, &num))
  236. return -EINVAL;
  237. if (num < 1 || num >= 100)
  238. return -EINVAL;
  239. mutex_lock(&isolated_cpus_lock);
  240. round_robin_time = num;
  241. mutex_unlock(&isolated_cpus_lock);
  242. return count;
  243. }
  244. static ssize_t acpi_pad_rrtime_show(struct device *dev,
  245. struct device_attribute *attr, char *buf)
  246. {
  247. return scnprintf(buf, PAGE_SIZE, "%d\n", round_robin_time);
  248. }
  249. static DEVICE_ATTR(rrtime, S_IRUGO|S_IWUSR,
  250. acpi_pad_rrtime_show,
  251. acpi_pad_rrtime_store);
  252. static ssize_t acpi_pad_idlepct_store(struct device *dev,
  253. struct device_attribute *attr, const char *buf, size_t count)
  254. {
  255. unsigned long num;
  256. if (kstrtoul(buf, 0, &num))
  257. return -EINVAL;
  258. if (num < 1 || num >= 100)
  259. return -EINVAL;
  260. mutex_lock(&isolated_cpus_lock);
  261. idle_pct = num;
  262. mutex_unlock(&isolated_cpus_lock);
  263. return count;
  264. }
  265. static ssize_t acpi_pad_idlepct_show(struct device *dev,
  266. struct device_attribute *attr, char *buf)
  267. {
  268. return scnprintf(buf, PAGE_SIZE, "%d\n", idle_pct);
  269. }
  270. static DEVICE_ATTR(idlepct, S_IRUGO|S_IWUSR,
  271. acpi_pad_idlepct_show,
  272. acpi_pad_idlepct_store);
  273. static ssize_t acpi_pad_idlecpus_store(struct device *dev,
  274. struct device_attribute *attr, const char *buf, size_t count)
  275. {
  276. unsigned long num;
  277. if (kstrtoul(buf, 0, &num))
  278. return -EINVAL;
  279. mutex_lock(&isolated_cpus_lock);
  280. acpi_pad_idle_cpus(num);
  281. mutex_unlock(&isolated_cpus_lock);
  282. return count;
  283. }
  284. static ssize_t acpi_pad_idlecpus_show(struct device *dev,
  285. struct device_attribute *attr, char *buf)
  286. {
  287. return cpumap_print_to_pagebuf(false, buf,
  288. to_cpumask(pad_busy_cpus_bits));
  289. }
  290. static DEVICE_ATTR(idlecpus, S_IRUGO|S_IWUSR,
  291. acpi_pad_idlecpus_show,
  292. acpi_pad_idlecpus_store);
  293. static int acpi_pad_add_sysfs(struct acpi_device *device)
  294. {
  295. int result;
  296. result = device_create_file(&device->dev, &dev_attr_idlecpus);
  297. if (result)
  298. return -ENODEV;
  299. result = device_create_file(&device->dev, &dev_attr_idlepct);
  300. if (result) {
  301. device_remove_file(&device->dev, &dev_attr_idlecpus);
  302. return -ENODEV;
  303. }
  304. result = device_create_file(&device->dev, &dev_attr_rrtime);
  305. if (result) {
  306. device_remove_file(&device->dev, &dev_attr_idlecpus);
  307. device_remove_file(&device->dev, &dev_attr_idlepct);
  308. return -ENODEV;
  309. }
  310. return 0;
  311. }
  312. static void acpi_pad_remove_sysfs(struct acpi_device *device)
  313. {
  314. device_remove_file(&device->dev, &dev_attr_idlecpus);
  315. device_remove_file(&device->dev, &dev_attr_idlepct);
  316. device_remove_file(&device->dev, &dev_attr_rrtime);
  317. }
  318. /*
  319. * Query firmware how many CPUs should be idle
  320. * return -1 on failure
  321. */
  322. static int acpi_pad_pur(acpi_handle handle)
  323. {
  324. struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
  325. union acpi_object *package;
  326. int num = -1;
  327. if (ACPI_FAILURE(acpi_evaluate_object(handle, "_PUR", NULL, &buffer)))
  328. return num;
  329. if (!buffer.length || !buffer.pointer)
  330. return num;
  331. package = buffer.pointer;
  332. if (package->type == ACPI_TYPE_PACKAGE &&
  333. package->package.count == 2 &&
  334. package->package.elements[0].integer.value == 1) /* rev 1 */
  335. num = package->package.elements[1].integer.value;
  336. kfree(buffer.pointer);
  337. return num;
  338. }
  339. static void acpi_pad_handle_notify(acpi_handle handle)
  340. {
  341. int num_cpus;
  342. uint32_t idle_cpus;
  343. struct acpi_buffer param = {
  344. .length = 4,
  345. .pointer = (void *)&idle_cpus,
  346. };
  347. mutex_lock(&isolated_cpus_lock);
  348. num_cpus = acpi_pad_pur(handle);
  349. if (num_cpus < 0) {
  350. mutex_unlock(&isolated_cpus_lock);
  351. return;
  352. }
  353. acpi_pad_idle_cpus(num_cpus);
  354. idle_cpus = acpi_pad_idle_cpus_num();
  355. acpi_evaluate_ost(handle, ACPI_PROCESSOR_AGGREGATOR_NOTIFY, 0, &param);
  356. mutex_unlock(&isolated_cpus_lock);
  357. }
  358. static void acpi_pad_notify(acpi_handle handle, u32 event,
  359. void *data)
  360. {
  361. struct acpi_device *device = data;
  362. switch (event) {
  363. case ACPI_PROCESSOR_AGGREGATOR_NOTIFY:
  364. acpi_pad_handle_notify(handle);
  365. acpi_bus_generate_netlink_event(device->pnp.device_class,
  366. dev_name(&device->dev), event, 0);
  367. break;
  368. default:
  369. pr_warn("Unsupported event [0x%x]\n", event);
  370. break;
  371. }
  372. }
  373. static int acpi_pad_add(struct acpi_device *device)
  374. {
  375. acpi_status status;
  376. strcpy(acpi_device_name(device), ACPI_PROCESSOR_AGGREGATOR_DEVICE_NAME);
  377. strcpy(acpi_device_class(device), ACPI_PROCESSOR_AGGREGATOR_CLASS);
  378. if (acpi_pad_add_sysfs(device))
  379. return -ENODEV;
  380. status = acpi_install_notify_handler(device->handle,
  381. ACPI_DEVICE_NOTIFY, acpi_pad_notify, device);
  382. if (ACPI_FAILURE(status)) {
  383. acpi_pad_remove_sysfs(device);
  384. return -ENODEV;
  385. }
  386. return 0;
  387. }
  388. static int acpi_pad_remove(struct acpi_device *device)
  389. {
  390. mutex_lock(&isolated_cpus_lock);
  391. acpi_pad_idle_cpus(0);
  392. mutex_unlock(&isolated_cpus_lock);
  393. acpi_remove_notify_handler(device->handle,
  394. ACPI_DEVICE_NOTIFY, acpi_pad_notify);
  395. acpi_pad_remove_sysfs(device);
  396. return 0;
  397. }
  398. static const struct acpi_device_id pad_device_ids[] = {
  399. {"ACPI000C", 0},
  400. {"", 0},
  401. };
  402. MODULE_DEVICE_TABLE(acpi, pad_device_ids);
  403. static struct acpi_driver acpi_pad_driver = {
  404. .name = "processor_aggregator",
  405. .class = ACPI_PROCESSOR_AGGREGATOR_CLASS,
  406. .ids = pad_device_ids,
  407. .ops = {
  408. .add = acpi_pad_add,
  409. .remove = acpi_pad_remove,
  410. },
  411. };
  412. static int __init acpi_pad_init(void)
  413. {
  414. /* Xen ACPI PAD is used when running as Xen Dom0. */
  415. if (xen_initial_domain())
  416. return -ENODEV;
  417. power_saving_mwait_init();
  418. if (power_saving_mwait_eax == 0)
  419. return -EINVAL;
  420. return acpi_bus_register_driver(&acpi_pad_driver);
  421. }
  422. static void __exit acpi_pad_exit(void)
  423. {
  424. acpi_bus_unregister_driver(&acpi_pad_driver);
  425. }
  426. module_init(acpi_pad_init);
  427. module_exit(acpi_pad_exit);
  428. MODULE_AUTHOR("Shaohua Li<shaohua.li@intel.com>");
  429. MODULE_DESCRIPTION("ACPI Processor Aggregator Driver");
  430. MODULE_LICENSE("GPL");