processor_perflib.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800
  1. // SPDX-License-Identifier: GPL-2.0-or-later
  2. /*
  3. * processor_perflib.c - ACPI Processor P-States Library ($Revision: 71 $)
  4. *
  5. * Copyright (C) 2001, 2002 Andy Grover <[email protected]>
  6. * Copyright (C) 2001, 2002 Paul Diefenbaugh <[email protected]>
  7. * Copyright (C) 2004 Dominik Brodowski <[email protected]>
  8. * Copyright (C) 2004 Anil S Keshavamurthy <[email protected]>
  9. * - Added processor hotplug support
  10. */
  11. #define pr_fmt(fmt) "ACPI: " fmt
  12. #include <linux/kernel.h>
  13. #include <linux/module.h>
  14. #include <linux/init.h>
  15. #include <linux/cpufreq.h>
  16. #include <linux/slab.h>
  17. #include <linux/acpi.h>
  18. #include <acpi/processor.h>
  19. #ifdef CONFIG_X86
  20. #include <asm/cpufeature.h>
  21. #endif
  22. #define ACPI_PROCESSOR_FILE_PERFORMANCE "performance"
  23. static DEFINE_MUTEX(performance_mutex);
  24. /*
  25. * _PPC support is implemented as a CPUfreq policy notifier:
  26. * This means each time a CPUfreq driver registered also with
  27. * the ACPI core is asked to change the speed policy, the maximum
  28. * value is adjusted so that it is within the platform limit.
  29. *
  30. * Also, when a new platform limit value is detected, the CPUfreq
  31. * policy is adjusted accordingly.
  32. */
  33. /* ignore_ppc:
  34. * -1 -> cpufreq low level drivers not initialized -> _PSS, etc. not called yet
  35. * ignore _PPC
  36. * 0 -> cpufreq low level drivers initialized -> consider _PPC values
  37. * 1 -> ignore _PPC totally -> forced by user through boot param
  38. */
  39. static int ignore_ppc = -1;
  40. module_param(ignore_ppc, int, 0644);
  41. MODULE_PARM_DESC(ignore_ppc, "If the frequency of your machine gets wrongly" \
  42. "limited by BIOS, this should help");
  43. static bool acpi_processor_ppc_in_use;
  44. static int acpi_processor_get_platform_limit(struct acpi_processor *pr)
  45. {
  46. acpi_status status = 0;
  47. unsigned long long ppc = 0;
  48. s32 qos_value;
  49. int index;
  50. int ret;
  51. if (!pr)
  52. return -EINVAL;
  53. /*
  54. * _PPC indicates the maximum state currently supported by the platform
  55. * (e.g. 0 = states 0..n; 1 = states 1..n; etc.
  56. */
  57. status = acpi_evaluate_integer(pr->handle, "_PPC", NULL, &ppc);
  58. if (status != AE_NOT_FOUND) {
  59. acpi_processor_ppc_in_use = true;
  60. if (ACPI_FAILURE(status)) {
  61. acpi_evaluation_failure_warn(pr->handle, "_PPC", status);
  62. return -ENODEV;
  63. }
  64. }
  65. index = ppc;
  66. if (pr->performance_platform_limit == index ||
  67. ppc >= pr->performance->state_count)
  68. return 0;
  69. pr_debug("CPU %d: _PPC is %d - frequency %s limited\n", pr->id,
  70. index, index ? "is" : "is not");
  71. pr->performance_platform_limit = index;
  72. if (unlikely(!freq_qos_request_active(&pr->perflib_req)))
  73. return 0;
  74. /*
  75. * If _PPC returns 0, it means that all of the available states can be
  76. * used ("no limit").
  77. */
  78. if (index == 0)
  79. qos_value = FREQ_QOS_MAX_DEFAULT_VALUE;
  80. else
  81. qos_value = pr->performance->states[index].core_frequency * 1000;
  82. ret = freq_qos_update_request(&pr->perflib_req, qos_value);
  83. if (ret < 0) {
  84. pr_warn("Failed to update perflib freq constraint: CPU%d (%d)\n",
  85. pr->id, ret);
  86. }
  87. return 0;
  88. }
  89. #define ACPI_PROCESSOR_NOTIFY_PERFORMANCE 0x80
  90. /*
  91. * acpi_processor_ppc_ost: Notify firmware the _PPC evaluation status
  92. * @handle: ACPI processor handle
  93. * @status: the status code of _PPC evaluation
  94. * 0: success. OSPM is now using the performance state specified.
  95. * 1: failure. OSPM has not changed the number of P-states in use
  96. */
  97. static void acpi_processor_ppc_ost(acpi_handle handle, int status)
  98. {
  99. if (acpi_has_method(handle, "_OST"))
  100. acpi_evaluate_ost(handle, ACPI_PROCESSOR_NOTIFY_PERFORMANCE,
  101. status, NULL);
  102. }
  103. void acpi_processor_ppc_has_changed(struct acpi_processor *pr, int event_flag)
  104. {
  105. int ret;
  106. if (ignore_ppc || !pr->performance) {
  107. /*
  108. * Only when it is notification event, the _OST object
  109. * will be evaluated. Otherwise it is skipped.
  110. */
  111. if (event_flag)
  112. acpi_processor_ppc_ost(pr->handle, 1);
  113. return;
  114. }
  115. ret = acpi_processor_get_platform_limit(pr);
  116. /*
  117. * Only when it is notification event, the _OST object
  118. * will be evaluated. Otherwise it is skipped.
  119. */
  120. if (event_flag) {
  121. if (ret < 0)
  122. acpi_processor_ppc_ost(pr->handle, 1);
  123. else
  124. acpi_processor_ppc_ost(pr->handle, 0);
  125. }
  126. if (ret >= 0)
  127. cpufreq_update_limits(pr->id);
  128. }
  129. int acpi_processor_get_bios_limit(int cpu, unsigned int *limit)
  130. {
  131. struct acpi_processor *pr;
  132. pr = per_cpu(processors, cpu);
  133. if (!pr || !pr->performance || !pr->performance->state_count)
  134. return -ENODEV;
  135. *limit = pr->performance->states[pr->performance_platform_limit].
  136. core_frequency * 1000;
  137. return 0;
  138. }
  139. EXPORT_SYMBOL(acpi_processor_get_bios_limit);
  140. void acpi_processor_ignore_ppc_init(void)
  141. {
  142. if (ignore_ppc < 0)
  143. ignore_ppc = 0;
  144. }
  145. void acpi_processor_ppc_init(struct cpufreq_policy *policy)
  146. {
  147. unsigned int cpu;
  148. for_each_cpu(cpu, policy->related_cpus) {
  149. struct acpi_processor *pr = per_cpu(processors, cpu);
  150. int ret;
  151. if (!pr)
  152. continue;
  153. /*
  154. * Reset performance_platform_limit in case there is a stale
  155. * value in it, so as to make it match the "no limit" QoS value
  156. * below.
  157. */
  158. pr->performance_platform_limit = 0;
  159. ret = freq_qos_add_request(&policy->constraints,
  160. &pr->perflib_req, FREQ_QOS_MAX,
  161. FREQ_QOS_MAX_DEFAULT_VALUE);
  162. if (ret < 0)
  163. pr_err("Failed to add freq constraint for CPU%d (%d)\n",
  164. cpu, ret);
  165. }
  166. }
  167. void acpi_processor_ppc_exit(struct cpufreq_policy *policy)
  168. {
  169. unsigned int cpu;
  170. for_each_cpu(cpu, policy->related_cpus) {
  171. struct acpi_processor *pr = per_cpu(processors, cpu);
  172. if (pr)
  173. freq_qos_remove_request(&pr->perflib_req);
  174. }
  175. }
  176. static int acpi_processor_get_performance_control(struct acpi_processor *pr)
  177. {
  178. int result = 0;
  179. acpi_status status = 0;
  180. struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
  181. union acpi_object *pct = NULL;
  182. union acpi_object obj = { 0 };
  183. status = acpi_evaluate_object(pr->handle, "_PCT", NULL, &buffer);
  184. if (ACPI_FAILURE(status)) {
  185. acpi_evaluation_failure_warn(pr->handle, "_PCT", status);
  186. return -ENODEV;
  187. }
  188. pct = (union acpi_object *)buffer.pointer;
  189. if (!pct || (pct->type != ACPI_TYPE_PACKAGE)
  190. || (pct->package.count != 2)) {
  191. pr_err("Invalid _PCT data\n");
  192. result = -EFAULT;
  193. goto end;
  194. }
  195. /*
  196. * control_register
  197. */
  198. obj = pct->package.elements[0];
  199. if ((obj.type != ACPI_TYPE_BUFFER)
  200. || (obj.buffer.length < sizeof(struct acpi_pct_register))
  201. || (obj.buffer.pointer == NULL)) {
  202. pr_err("Invalid _PCT data (control_register)\n");
  203. result = -EFAULT;
  204. goto end;
  205. }
  206. memcpy(&pr->performance->control_register, obj.buffer.pointer,
  207. sizeof(struct acpi_pct_register));
  208. /*
  209. * status_register
  210. */
  211. obj = pct->package.elements[1];
  212. if ((obj.type != ACPI_TYPE_BUFFER)
  213. || (obj.buffer.length < sizeof(struct acpi_pct_register))
  214. || (obj.buffer.pointer == NULL)) {
  215. pr_err("Invalid _PCT data (status_register)\n");
  216. result = -EFAULT;
  217. goto end;
  218. }
  219. memcpy(&pr->performance->status_register, obj.buffer.pointer,
  220. sizeof(struct acpi_pct_register));
  221. end:
  222. kfree(buffer.pointer);
  223. return result;
  224. }
  225. #ifdef CONFIG_X86
  226. /*
  227. * Some AMDs have 50MHz frequency multiples, but only provide 100MHz rounding
  228. * in their ACPI data. Calculate the real values and fix up the _PSS data.
  229. */
  230. static void amd_fixup_frequency(struct acpi_processor_px *px, int i)
  231. {
  232. u32 hi, lo, fid, did;
  233. int index = px->control & 0x00000007;
  234. if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD)
  235. return;
  236. if ((boot_cpu_data.x86 == 0x10 && boot_cpu_data.x86_model < 10)
  237. || boot_cpu_data.x86 == 0x11) {
  238. rdmsr(MSR_AMD_PSTATE_DEF_BASE + index, lo, hi);
  239. /*
  240. * MSR C001_0064+:
  241. * Bit 63: PstateEn. Read-write. If set, the P-state is valid.
  242. */
  243. if (!(hi & BIT(31)))
  244. return;
  245. fid = lo & 0x3f;
  246. did = (lo >> 6) & 7;
  247. if (boot_cpu_data.x86 == 0x10)
  248. px->core_frequency = (100 * (fid + 0x10)) >> did;
  249. else
  250. px->core_frequency = (100 * (fid + 8)) >> did;
  251. }
  252. }
  253. #else
  254. static void amd_fixup_frequency(struct acpi_processor_px *px, int i) {};
  255. #endif
  256. static int acpi_processor_get_performance_states(struct acpi_processor *pr)
  257. {
  258. int result = 0;
  259. acpi_status status = AE_OK;
  260. struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
  261. struct acpi_buffer format = { sizeof("NNNNNN"), "NNNNNN" };
  262. struct acpi_buffer state = { 0, NULL };
  263. union acpi_object *pss = NULL;
  264. int i;
  265. int last_invalid = -1;
  266. status = acpi_evaluate_object(pr->handle, "_PSS", NULL, &buffer);
  267. if (ACPI_FAILURE(status)) {
  268. acpi_evaluation_failure_warn(pr->handle, "_PSS", status);
  269. return -ENODEV;
  270. }
  271. pss = buffer.pointer;
  272. if (!pss || (pss->type != ACPI_TYPE_PACKAGE)) {
  273. pr_err("Invalid _PSS data\n");
  274. result = -EFAULT;
  275. goto end;
  276. }
  277. acpi_handle_debug(pr->handle, "Found %d performance states\n",
  278. pss->package.count);
  279. pr->performance->state_count = pss->package.count;
  280. pr->performance->states =
  281. kmalloc_array(pss->package.count,
  282. sizeof(struct acpi_processor_px),
  283. GFP_KERNEL);
  284. if (!pr->performance->states) {
  285. result = -ENOMEM;
  286. goto end;
  287. }
  288. for (i = 0; i < pr->performance->state_count; i++) {
  289. struct acpi_processor_px *px = &(pr->performance->states[i]);
  290. state.length = sizeof(struct acpi_processor_px);
  291. state.pointer = px;
  292. acpi_handle_debug(pr->handle, "Extracting state %d\n", i);
  293. status = acpi_extract_package(&(pss->package.elements[i]),
  294. &format, &state);
  295. if (ACPI_FAILURE(status)) {
  296. acpi_handle_warn(pr->handle, "Invalid _PSS data: %s\n",
  297. acpi_format_exception(status));
  298. result = -EFAULT;
  299. kfree(pr->performance->states);
  300. goto end;
  301. }
  302. amd_fixup_frequency(px, i);
  303. acpi_handle_debug(pr->handle,
  304. "State [%d]: core_frequency[%d] power[%d] transition_latency[%d] bus_master_latency[%d] control[0x%x] status[0x%x]\n",
  305. i,
  306. (u32) px->core_frequency,
  307. (u32) px->power,
  308. (u32) px->transition_latency,
  309. (u32) px->bus_master_latency,
  310. (u32) px->control, (u32) px->status);
  311. /*
  312. * Check that ACPI's u64 MHz will be valid as u32 KHz in cpufreq
  313. */
  314. if (!px->core_frequency ||
  315. ((u32)(px->core_frequency * 1000) !=
  316. (px->core_frequency * 1000))) {
  317. pr_err(FW_BUG
  318. "Invalid BIOS _PSS frequency found for processor %d: 0x%llx MHz\n",
  319. pr->id, px->core_frequency);
  320. if (last_invalid == -1)
  321. last_invalid = i;
  322. } else {
  323. if (last_invalid != -1) {
  324. /*
  325. * Copy this valid entry over last_invalid entry
  326. */
  327. memcpy(&(pr->performance->states[last_invalid]),
  328. px, sizeof(struct acpi_processor_px));
  329. ++last_invalid;
  330. }
  331. }
  332. }
  333. if (last_invalid == 0) {
  334. pr_err(FW_BUG
  335. "No valid BIOS _PSS frequency found for processor %d\n", pr->id);
  336. result = -EFAULT;
  337. kfree(pr->performance->states);
  338. pr->performance->states = NULL;
  339. }
  340. if (last_invalid > 0)
  341. pr->performance->state_count = last_invalid;
  342. end:
  343. kfree(buffer.pointer);
  344. return result;
  345. }
  346. int acpi_processor_get_performance_info(struct acpi_processor *pr)
  347. {
  348. int result = 0;
  349. if (!pr || !pr->performance || !pr->handle)
  350. return -EINVAL;
  351. if (!acpi_has_method(pr->handle, "_PCT")) {
  352. acpi_handle_debug(pr->handle,
  353. "ACPI-based processor performance control unavailable\n");
  354. return -ENODEV;
  355. }
  356. result = acpi_processor_get_performance_control(pr);
  357. if (result)
  358. goto update_bios;
  359. result = acpi_processor_get_performance_states(pr);
  360. if (result)
  361. goto update_bios;
  362. /* We need to call _PPC once when cpufreq starts */
  363. if (ignore_ppc != 1)
  364. result = acpi_processor_get_platform_limit(pr);
  365. return result;
  366. /*
  367. * Having _PPC but missing frequencies (_PSS, _PCT) is a very good hint that
  368. * the BIOS is older than the CPU and does not know its frequencies
  369. */
  370. update_bios:
  371. #ifdef CONFIG_X86
  372. if (acpi_has_method(pr->handle, "_PPC")) {
  373. if(boot_cpu_has(X86_FEATURE_EST))
  374. pr_warn(FW_BUG "BIOS needs update for CPU "
  375. "frequency support\n");
  376. }
  377. #endif
  378. return result;
  379. }
  380. EXPORT_SYMBOL_GPL(acpi_processor_get_performance_info);
  381. int acpi_processor_pstate_control(void)
  382. {
  383. acpi_status status;
  384. if (!acpi_gbl_FADT.smi_command || !acpi_gbl_FADT.pstate_control)
  385. return 0;
  386. pr_debug("Writing pstate_control [0x%x] to smi_command [0x%x]\n",
  387. acpi_gbl_FADT.pstate_control, acpi_gbl_FADT.smi_command);
  388. status = acpi_os_write_port(acpi_gbl_FADT.smi_command,
  389. (u32)acpi_gbl_FADT.pstate_control, 8);
  390. if (ACPI_SUCCESS(status))
  391. return 1;
  392. pr_warn("Failed to write pstate_control [0x%x] to smi_command [0x%x]: %s\n",
  393. acpi_gbl_FADT.pstate_control, acpi_gbl_FADT.smi_command,
  394. acpi_format_exception(status));
  395. return -EIO;
  396. }
  397. int acpi_processor_notify_smm(struct module *calling_module)
  398. {
  399. static int is_done;
  400. int result;
  401. if (!acpi_processor_cpufreq_init)
  402. return -EBUSY;
  403. if (!try_module_get(calling_module))
  404. return -EINVAL;
  405. /* is_done is set to negative if an error occurred,
  406. * and to postitive if _no_ error occurred, but SMM
  407. * was already notified. This avoids double notification
  408. * which might lead to unexpected results...
  409. */
  410. if (is_done > 0) {
  411. module_put(calling_module);
  412. return 0;
  413. } else if (is_done < 0) {
  414. module_put(calling_module);
  415. return is_done;
  416. }
  417. is_done = -EIO;
  418. result = acpi_processor_pstate_control();
  419. if (!result) {
  420. pr_debug("No SMI port or pstate_control\n");
  421. module_put(calling_module);
  422. return 0;
  423. }
  424. if (result < 0) {
  425. module_put(calling_module);
  426. return result;
  427. }
  428. /* Success. If there's no _PPC, we need to fear nothing, so
  429. * we can allow the cpufreq driver to be rmmod'ed. */
  430. is_done = 1;
  431. if (!acpi_processor_ppc_in_use)
  432. module_put(calling_module);
  433. return 0;
  434. }
  435. EXPORT_SYMBOL(acpi_processor_notify_smm);
  436. int acpi_processor_get_psd(acpi_handle handle, struct acpi_psd_package *pdomain)
  437. {
  438. int result = 0;
  439. acpi_status status = AE_OK;
  440. struct acpi_buffer buffer = {ACPI_ALLOCATE_BUFFER, NULL};
  441. struct acpi_buffer format = {sizeof("NNNNN"), "NNNNN"};
  442. struct acpi_buffer state = {0, NULL};
  443. union acpi_object *psd = NULL;
  444. status = acpi_evaluate_object(handle, "_PSD", NULL, &buffer);
  445. if (ACPI_FAILURE(status)) {
  446. return -ENODEV;
  447. }
  448. psd = buffer.pointer;
  449. if (!psd || (psd->type != ACPI_TYPE_PACKAGE)) {
  450. pr_err("Invalid _PSD data\n");
  451. result = -EFAULT;
  452. goto end;
  453. }
  454. if (psd->package.count != 1) {
  455. pr_err("Invalid _PSD data\n");
  456. result = -EFAULT;
  457. goto end;
  458. }
  459. state.length = sizeof(struct acpi_psd_package);
  460. state.pointer = pdomain;
  461. status = acpi_extract_package(&(psd->package.elements[0]),
  462. &format, &state);
  463. if (ACPI_FAILURE(status)) {
  464. pr_err("Invalid _PSD data\n");
  465. result = -EFAULT;
  466. goto end;
  467. }
  468. if (pdomain->num_entries != ACPI_PSD_REV0_ENTRIES) {
  469. pr_err("Unknown _PSD:num_entries\n");
  470. result = -EFAULT;
  471. goto end;
  472. }
  473. if (pdomain->revision != ACPI_PSD_REV0_REVISION) {
  474. pr_err("Unknown _PSD:revision\n");
  475. result = -EFAULT;
  476. goto end;
  477. }
  478. if (pdomain->coord_type != DOMAIN_COORD_TYPE_SW_ALL &&
  479. pdomain->coord_type != DOMAIN_COORD_TYPE_SW_ANY &&
  480. pdomain->coord_type != DOMAIN_COORD_TYPE_HW_ALL) {
  481. pr_err("Invalid _PSD:coord_type\n");
  482. result = -EFAULT;
  483. goto end;
  484. }
  485. end:
  486. kfree(buffer.pointer);
  487. return result;
  488. }
  489. EXPORT_SYMBOL(acpi_processor_get_psd);
  490. int acpi_processor_preregister_performance(
  491. struct acpi_processor_performance __percpu *performance)
  492. {
  493. int count_target;
  494. int retval = 0;
  495. unsigned int i, j;
  496. cpumask_var_t covered_cpus;
  497. struct acpi_processor *pr;
  498. struct acpi_psd_package *pdomain;
  499. struct acpi_processor *match_pr;
  500. struct acpi_psd_package *match_pdomain;
  501. if (!zalloc_cpumask_var(&covered_cpus, GFP_KERNEL))
  502. return -ENOMEM;
  503. mutex_lock(&performance_mutex);
  504. /*
  505. * Check if another driver has already registered, and abort before
  506. * changing pr->performance if it has. Check input data as well.
  507. */
  508. for_each_possible_cpu(i) {
  509. pr = per_cpu(processors, i);
  510. if (!pr) {
  511. /* Look only at processors in ACPI namespace */
  512. continue;
  513. }
  514. if (pr->performance) {
  515. retval = -EBUSY;
  516. goto err_out;
  517. }
  518. if (!performance || !per_cpu_ptr(performance, i)) {
  519. retval = -EINVAL;
  520. goto err_out;
  521. }
  522. }
  523. /* Call _PSD for all CPUs */
  524. for_each_possible_cpu(i) {
  525. pr = per_cpu(processors, i);
  526. if (!pr)
  527. continue;
  528. pr->performance = per_cpu_ptr(performance, i);
  529. pdomain = &(pr->performance->domain_info);
  530. if (acpi_processor_get_psd(pr->handle, pdomain)) {
  531. retval = -EINVAL;
  532. continue;
  533. }
  534. }
  535. if (retval)
  536. goto err_ret;
  537. /*
  538. * Now that we have _PSD data from all CPUs, lets setup P-state
  539. * domain info.
  540. */
  541. for_each_possible_cpu(i) {
  542. pr = per_cpu(processors, i);
  543. if (!pr)
  544. continue;
  545. if (cpumask_test_cpu(i, covered_cpus))
  546. continue;
  547. pdomain = &(pr->performance->domain_info);
  548. cpumask_set_cpu(i, pr->performance->shared_cpu_map);
  549. cpumask_set_cpu(i, covered_cpus);
  550. if (pdomain->num_processors <= 1)
  551. continue;
  552. /* Validate the Domain info */
  553. count_target = pdomain->num_processors;
  554. if (pdomain->coord_type == DOMAIN_COORD_TYPE_SW_ALL)
  555. pr->performance->shared_type = CPUFREQ_SHARED_TYPE_ALL;
  556. else if (pdomain->coord_type == DOMAIN_COORD_TYPE_HW_ALL)
  557. pr->performance->shared_type = CPUFREQ_SHARED_TYPE_HW;
  558. else if (pdomain->coord_type == DOMAIN_COORD_TYPE_SW_ANY)
  559. pr->performance->shared_type = CPUFREQ_SHARED_TYPE_ANY;
  560. for_each_possible_cpu(j) {
  561. if (i == j)
  562. continue;
  563. match_pr = per_cpu(processors, j);
  564. if (!match_pr)
  565. continue;
  566. match_pdomain = &(match_pr->performance->domain_info);
  567. if (match_pdomain->domain != pdomain->domain)
  568. continue;
  569. /* Here i and j are in the same domain */
  570. if (match_pdomain->num_processors != count_target) {
  571. retval = -EINVAL;
  572. goto err_ret;
  573. }
  574. if (pdomain->coord_type != match_pdomain->coord_type) {
  575. retval = -EINVAL;
  576. goto err_ret;
  577. }
  578. cpumask_set_cpu(j, covered_cpus);
  579. cpumask_set_cpu(j, pr->performance->shared_cpu_map);
  580. }
  581. for_each_possible_cpu(j) {
  582. if (i == j)
  583. continue;
  584. match_pr = per_cpu(processors, j);
  585. if (!match_pr)
  586. continue;
  587. match_pdomain = &(match_pr->performance->domain_info);
  588. if (match_pdomain->domain != pdomain->domain)
  589. continue;
  590. match_pr->performance->shared_type =
  591. pr->performance->shared_type;
  592. cpumask_copy(match_pr->performance->shared_cpu_map,
  593. pr->performance->shared_cpu_map);
  594. }
  595. }
  596. err_ret:
  597. for_each_possible_cpu(i) {
  598. pr = per_cpu(processors, i);
  599. if (!pr || !pr->performance)
  600. continue;
  601. /* Assume no coordination on any error parsing domain info */
  602. if (retval) {
  603. cpumask_clear(pr->performance->shared_cpu_map);
  604. cpumask_set_cpu(i, pr->performance->shared_cpu_map);
  605. pr->performance->shared_type = CPUFREQ_SHARED_TYPE_NONE;
  606. }
  607. pr->performance = NULL; /* Will be set for real in register */
  608. }
  609. err_out:
  610. mutex_unlock(&performance_mutex);
  611. free_cpumask_var(covered_cpus);
  612. return retval;
  613. }
  614. EXPORT_SYMBOL(acpi_processor_preregister_performance);
  615. int
  616. acpi_processor_register_performance(struct acpi_processor_performance
  617. *performance, unsigned int cpu)
  618. {
  619. struct acpi_processor *pr;
  620. if (!acpi_processor_cpufreq_init)
  621. return -EINVAL;
  622. mutex_lock(&performance_mutex);
  623. pr = per_cpu(processors, cpu);
  624. if (!pr) {
  625. mutex_unlock(&performance_mutex);
  626. return -ENODEV;
  627. }
  628. if (pr->performance) {
  629. mutex_unlock(&performance_mutex);
  630. return -EBUSY;
  631. }
  632. WARN_ON(!performance);
  633. pr->performance = performance;
  634. if (acpi_processor_get_performance_info(pr)) {
  635. pr->performance = NULL;
  636. mutex_unlock(&performance_mutex);
  637. return -EIO;
  638. }
  639. mutex_unlock(&performance_mutex);
  640. return 0;
  641. }
  642. EXPORT_SYMBOL(acpi_processor_register_performance);
  643. void acpi_processor_unregister_performance(unsigned int cpu)
  644. {
  645. struct acpi_processor *pr;
  646. mutex_lock(&performance_mutex);
  647. pr = per_cpu(processors, cpu);
  648. if (!pr) {
  649. mutex_unlock(&performance_mutex);
  650. return;
  651. }
  652. if (pr->performance)
  653. kfree(pr->performance->states);
  654. pr->performance = NULL;
  655. mutex_unlock(&performance_mutex);
  656. return;
  657. }
  658. EXPORT_SYMBOL(acpi_processor_unregister_performance);