processor_throttling.c 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284
  1. /*
  2. * processor_throttling.c - Throttling submodule of 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 Dominik Brodowski <linux@brodo.de>
  7. * Copyright (C) 2004 Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
  8. * - Added processor hotplug support
  9. *
  10. * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License as published by
  14. * the Free Software Foundation; either version 2 of the License, or (at
  15. * your option) any later version.
  16. *
  17. * This program is distributed in the hope that it will be useful, but
  18. * WITHOUT ANY WARRANTY; without even the implied warranty of
  19. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  20. * General Public License for more details.
  21. *
  22. * You should have received a copy of the GNU General Public License along
  23. * with this program; if not, write to the Free Software Foundation, Inc.,
  24. * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
  25. *
  26. * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  27. */
  28. #include <linux/kernel.h>
  29. #include <linux/module.h>
  30. #include <linux/slab.h>
  31. #include <linux/init.h>
  32. #include <linux/sched.h>
  33. #include <linux/cpufreq.h>
  34. #include <asm/io.h>
  35. #include <asm/uaccess.h>
  36. #include <acpi/acpi_bus.h>
  37. #include <acpi/acpi_drivers.h>
  38. #include <acpi/processor.h>
  39. #define PREFIX "ACPI: "
  40. #define ACPI_PROCESSOR_CLASS "processor"
  41. #define _COMPONENT ACPI_PROCESSOR_COMPONENT
  42. ACPI_MODULE_NAME("processor_throttling");
  43. /* ignore_tpc:
  44. * 0 -> acpi processor driver doesn't ignore _TPC values
  45. * 1 -> acpi processor driver ignores _TPC values
  46. */
  47. static int ignore_tpc;
  48. module_param(ignore_tpc, int, 0644);
  49. MODULE_PARM_DESC(ignore_tpc, "Disable broken BIOS _TPC throttling support");
  50. struct throttling_tstate {
  51. unsigned int cpu; /* cpu nr */
  52. int target_state; /* target T-state */
  53. };
  54. #define THROTTLING_PRECHANGE (1)
  55. #define THROTTLING_POSTCHANGE (2)
  56. static int acpi_processor_get_throttling(struct acpi_processor *pr);
  57. int acpi_processor_set_throttling(struct acpi_processor *pr,
  58. int state, bool force);
  59. static int acpi_processor_update_tsd_coord(void)
  60. {
  61. int count, count_target;
  62. int retval = 0;
  63. unsigned int i, j;
  64. cpumask_var_t covered_cpus;
  65. struct acpi_processor *pr, *match_pr;
  66. struct acpi_tsd_package *pdomain, *match_pdomain;
  67. struct acpi_processor_throttling *pthrottling, *match_pthrottling;
  68. if (!zalloc_cpumask_var(&covered_cpus, GFP_KERNEL))
  69. return -ENOMEM;
  70. /*
  71. * Now that we have _TSD data from all CPUs, lets setup T-state
  72. * coordination between all CPUs.
  73. */
  74. for_each_possible_cpu(i) {
  75. pr = per_cpu(processors, i);
  76. if (!pr)
  77. continue;
  78. /* Basic validity check for domain info */
  79. pthrottling = &(pr->throttling);
  80. /*
  81. * If tsd package for one cpu is invalid, the coordination
  82. * among all CPUs is thought as invalid.
  83. * Maybe it is ugly.
  84. */
  85. if (!pthrottling->tsd_valid_flag) {
  86. retval = -EINVAL;
  87. break;
  88. }
  89. }
  90. if (retval)
  91. goto err_ret;
  92. for_each_possible_cpu(i) {
  93. pr = per_cpu(processors, i);
  94. if (!pr)
  95. continue;
  96. if (cpumask_test_cpu(i, covered_cpus))
  97. continue;
  98. pthrottling = &pr->throttling;
  99. pdomain = &(pthrottling->domain_info);
  100. cpumask_set_cpu(i, pthrottling->shared_cpu_map);
  101. cpumask_set_cpu(i, covered_cpus);
  102. /*
  103. * If the number of processor in the TSD domain is 1, it is
  104. * unnecessary to parse the coordination for this CPU.
  105. */
  106. if (pdomain->num_processors <= 1)
  107. continue;
  108. /* Validate the Domain info */
  109. count_target = pdomain->num_processors;
  110. count = 1;
  111. for_each_possible_cpu(j) {
  112. if (i == j)
  113. continue;
  114. match_pr = per_cpu(processors, j);
  115. if (!match_pr)
  116. continue;
  117. match_pthrottling = &(match_pr->throttling);
  118. match_pdomain = &(match_pthrottling->domain_info);
  119. if (match_pdomain->domain != pdomain->domain)
  120. continue;
  121. /* Here i and j are in the same domain.
  122. * If two TSD packages have the same domain, they
  123. * should have the same num_porcessors and
  124. * coordination type. Otherwise it will be regarded
  125. * as illegal.
  126. */
  127. if (match_pdomain->num_processors != count_target) {
  128. retval = -EINVAL;
  129. goto err_ret;
  130. }
  131. if (pdomain->coord_type != match_pdomain->coord_type) {
  132. retval = -EINVAL;
  133. goto err_ret;
  134. }
  135. cpumask_set_cpu(j, covered_cpus);
  136. cpumask_set_cpu(j, pthrottling->shared_cpu_map);
  137. count++;
  138. }
  139. for_each_possible_cpu(j) {
  140. if (i == j)
  141. continue;
  142. match_pr = per_cpu(processors, j);
  143. if (!match_pr)
  144. continue;
  145. match_pthrottling = &(match_pr->throttling);
  146. match_pdomain = &(match_pthrottling->domain_info);
  147. if (match_pdomain->domain != pdomain->domain)
  148. continue;
  149. /*
  150. * If some CPUS have the same domain, they
  151. * will have the same shared_cpu_map.
  152. */
  153. cpumask_copy(match_pthrottling->shared_cpu_map,
  154. pthrottling->shared_cpu_map);
  155. }
  156. }
  157. err_ret:
  158. free_cpumask_var(covered_cpus);
  159. for_each_possible_cpu(i) {
  160. pr = per_cpu(processors, i);
  161. if (!pr)
  162. continue;
  163. /*
  164. * Assume no coordination on any error parsing domain info.
  165. * The coordination type will be forced as SW_ALL.
  166. */
  167. if (retval) {
  168. pthrottling = &(pr->throttling);
  169. cpumask_clear(pthrottling->shared_cpu_map);
  170. cpumask_set_cpu(i, pthrottling->shared_cpu_map);
  171. pthrottling->shared_type = DOMAIN_COORD_TYPE_SW_ALL;
  172. }
  173. }
  174. return retval;
  175. }
  176. /*
  177. * Update the T-state coordination after the _TSD
  178. * data for all cpus is obtained.
  179. */
  180. void acpi_processor_throttling_init(void)
  181. {
  182. if (acpi_processor_update_tsd_coord())
  183. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  184. "Assume no T-state coordination\n"));
  185. return;
  186. }
  187. static int acpi_processor_throttling_notifier(unsigned long event, void *data)
  188. {
  189. struct throttling_tstate *p_tstate = data;
  190. struct acpi_processor *pr;
  191. unsigned int cpu ;
  192. int target_state;
  193. struct acpi_processor_limit *p_limit;
  194. struct acpi_processor_throttling *p_throttling;
  195. cpu = p_tstate->cpu;
  196. pr = per_cpu(processors, cpu);
  197. if (!pr) {
  198. ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Invalid pr pointer\n"));
  199. return 0;
  200. }
  201. if (!pr->flags.throttling) {
  202. ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Throttling control is "
  203. "unsupported on CPU %d\n", cpu));
  204. return 0;
  205. }
  206. target_state = p_tstate->target_state;
  207. p_throttling = &(pr->throttling);
  208. switch (event) {
  209. case THROTTLING_PRECHANGE:
  210. /*
  211. * Prechange event is used to choose one proper t-state,
  212. * which meets the limits of thermal, user and _TPC.
  213. */
  214. p_limit = &pr->limit;
  215. if (p_limit->thermal.tx > target_state)
  216. target_state = p_limit->thermal.tx;
  217. if (p_limit->user.tx > target_state)
  218. target_state = p_limit->user.tx;
  219. if (pr->throttling_platform_limit > target_state)
  220. target_state = pr->throttling_platform_limit;
  221. if (target_state >= p_throttling->state_count) {
  222. printk(KERN_WARNING
  223. "Exceed the limit of T-state \n");
  224. target_state = p_throttling->state_count - 1;
  225. }
  226. p_tstate->target_state = target_state;
  227. ACPI_DEBUG_PRINT((ACPI_DB_INFO, "PreChange Event:"
  228. "target T-state of CPU %d is T%d\n",
  229. cpu, target_state));
  230. break;
  231. case THROTTLING_POSTCHANGE:
  232. /*
  233. * Postchange event is only used to update the
  234. * T-state flag of acpi_processor_throttling.
  235. */
  236. p_throttling->state = target_state;
  237. ACPI_DEBUG_PRINT((ACPI_DB_INFO, "PostChange Event:"
  238. "CPU %d is switched to T%d\n",
  239. cpu, target_state));
  240. break;
  241. default:
  242. printk(KERN_WARNING
  243. "Unsupported Throttling notifier event\n");
  244. break;
  245. }
  246. return 0;
  247. }
  248. /*
  249. * _TPC - Throttling Present Capabilities
  250. */
  251. static int acpi_processor_get_platform_limit(struct acpi_processor *pr)
  252. {
  253. acpi_status status = 0;
  254. unsigned long long tpc = 0;
  255. if (!pr)
  256. return -EINVAL;
  257. if (ignore_tpc)
  258. goto end;
  259. status = acpi_evaluate_integer(pr->handle, "_TPC", NULL, &tpc);
  260. if (ACPI_FAILURE(status)) {
  261. if (status != AE_NOT_FOUND) {
  262. ACPI_EXCEPTION((AE_INFO, status, "Evaluating _TPC"));
  263. }
  264. return -ENODEV;
  265. }
  266. end:
  267. pr->throttling_platform_limit = (int)tpc;
  268. return 0;
  269. }
  270. int acpi_processor_tstate_has_changed(struct acpi_processor *pr)
  271. {
  272. int result = 0;
  273. int throttling_limit;
  274. int current_state;
  275. struct acpi_processor_limit *limit;
  276. int target_state;
  277. if (ignore_tpc)
  278. return 0;
  279. result = acpi_processor_get_platform_limit(pr);
  280. if (result) {
  281. /* Throttling Limit is unsupported */
  282. return result;
  283. }
  284. throttling_limit = pr->throttling_platform_limit;
  285. if (throttling_limit >= pr->throttling.state_count) {
  286. /* Uncorrect Throttling Limit */
  287. return -EINVAL;
  288. }
  289. current_state = pr->throttling.state;
  290. if (current_state > throttling_limit) {
  291. /*
  292. * The current state can meet the requirement of
  293. * _TPC limit. But it is reasonable that OSPM changes
  294. * t-states from high to low for better performance.
  295. * Of course the limit condition of thermal
  296. * and user should be considered.
  297. */
  298. limit = &pr->limit;
  299. target_state = throttling_limit;
  300. if (limit->thermal.tx > target_state)
  301. target_state = limit->thermal.tx;
  302. if (limit->user.tx > target_state)
  303. target_state = limit->user.tx;
  304. } else if (current_state == throttling_limit) {
  305. /*
  306. * Unnecessary to change the throttling state
  307. */
  308. return 0;
  309. } else {
  310. /*
  311. * If the current state is lower than the limit of _TPC, it
  312. * will be forced to switch to the throttling state defined
  313. * by throttling_platfor_limit.
  314. * Because the previous state meets with the limit condition
  315. * of thermal and user, it is unnecessary to check it again.
  316. */
  317. target_state = throttling_limit;
  318. }
  319. return acpi_processor_set_throttling(pr, target_state, false);
  320. }
  321. /*
  322. * This function is used to reevaluate whether the T-state is valid
  323. * after one CPU is onlined/offlined.
  324. * It is noted that it won't reevaluate the following properties for
  325. * the T-state.
  326. * 1. Control method.
  327. * 2. the number of supported T-state
  328. * 3. TSD domain
  329. */
  330. void acpi_processor_reevaluate_tstate(struct acpi_processor *pr,
  331. unsigned long action)
  332. {
  333. int result = 0;
  334. if (action == CPU_DEAD) {
  335. /* When one CPU is offline, the T-state throttling
  336. * will be invalidated.
  337. */
  338. pr->flags.throttling = 0;
  339. return;
  340. }
  341. /* the following is to recheck whether the T-state is valid for
  342. * the online CPU
  343. */
  344. if (!pr->throttling.state_count) {
  345. /* If the number of T-state is invalid, it is
  346. * invalidated.
  347. */
  348. pr->flags.throttling = 0;
  349. return;
  350. }
  351. pr->flags.throttling = 1;
  352. /* Disable throttling (if enabled). We'll let subsequent
  353. * policy (e.g.thermal) decide to lower performance if it
  354. * so chooses, but for now we'll crank up the speed.
  355. */
  356. result = acpi_processor_get_throttling(pr);
  357. if (result)
  358. goto end;
  359. if (pr->throttling.state) {
  360. result = acpi_processor_set_throttling(pr, 0, false);
  361. if (result)
  362. goto end;
  363. }
  364. end:
  365. if (result)
  366. pr->flags.throttling = 0;
  367. }
  368. /*
  369. * _PTC - Processor Throttling Control (and status) register location
  370. */
  371. static int acpi_processor_get_throttling_control(struct acpi_processor *pr)
  372. {
  373. int result = 0;
  374. acpi_status status = 0;
  375. struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
  376. union acpi_object *ptc = NULL;
  377. union acpi_object obj = { 0 };
  378. struct acpi_processor_throttling *throttling;
  379. status = acpi_evaluate_object(pr->handle, "_PTC", NULL, &buffer);
  380. if (ACPI_FAILURE(status)) {
  381. if (status != AE_NOT_FOUND) {
  382. ACPI_EXCEPTION((AE_INFO, status, "Evaluating _PTC"));
  383. }
  384. return -ENODEV;
  385. }
  386. ptc = (union acpi_object *)buffer.pointer;
  387. if (!ptc || (ptc->type != ACPI_TYPE_PACKAGE)
  388. || (ptc->package.count != 2)) {
  389. printk(KERN_ERR PREFIX "Invalid _PTC data\n");
  390. result = -EFAULT;
  391. goto end;
  392. }
  393. /*
  394. * control_register
  395. */
  396. obj = ptc->package.elements[0];
  397. if ((obj.type != ACPI_TYPE_BUFFER)
  398. || (obj.buffer.length < sizeof(struct acpi_ptc_register))
  399. || (obj.buffer.pointer == NULL)) {
  400. printk(KERN_ERR PREFIX
  401. "Invalid _PTC data (control_register)\n");
  402. result = -EFAULT;
  403. goto end;
  404. }
  405. memcpy(&pr->throttling.control_register, obj.buffer.pointer,
  406. sizeof(struct acpi_ptc_register));
  407. /*
  408. * status_register
  409. */
  410. obj = ptc->package.elements[1];
  411. if ((obj.type != ACPI_TYPE_BUFFER)
  412. || (obj.buffer.length < sizeof(struct acpi_ptc_register))
  413. || (obj.buffer.pointer == NULL)) {
  414. printk(KERN_ERR PREFIX "Invalid _PTC data (status_register)\n");
  415. result = -EFAULT;
  416. goto end;
  417. }
  418. memcpy(&pr->throttling.status_register, obj.buffer.pointer,
  419. sizeof(struct acpi_ptc_register));
  420. throttling = &pr->throttling;
  421. if ((throttling->control_register.bit_width +
  422. throttling->control_register.bit_offset) > 32) {
  423. printk(KERN_ERR PREFIX "Invalid _PTC control register\n");
  424. result = -EFAULT;
  425. goto end;
  426. }
  427. if ((throttling->status_register.bit_width +
  428. throttling->status_register.bit_offset) > 32) {
  429. printk(KERN_ERR PREFIX "Invalid _PTC status register\n");
  430. result = -EFAULT;
  431. goto end;
  432. }
  433. end:
  434. kfree(buffer.pointer);
  435. return result;
  436. }
  437. /*
  438. * _TSS - Throttling Supported States
  439. */
  440. static int acpi_processor_get_throttling_states(struct acpi_processor *pr)
  441. {
  442. int result = 0;
  443. acpi_status status = AE_OK;
  444. struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
  445. struct acpi_buffer format = { sizeof("NNNNN"), "NNNNN" };
  446. struct acpi_buffer state = { 0, NULL };
  447. union acpi_object *tss = NULL;
  448. int i;
  449. status = acpi_evaluate_object(pr->handle, "_TSS", NULL, &buffer);
  450. if (ACPI_FAILURE(status)) {
  451. if (status != AE_NOT_FOUND) {
  452. ACPI_EXCEPTION((AE_INFO, status, "Evaluating _TSS"));
  453. }
  454. return -ENODEV;
  455. }
  456. tss = buffer.pointer;
  457. if (!tss || (tss->type != ACPI_TYPE_PACKAGE)) {
  458. printk(KERN_ERR PREFIX "Invalid _TSS data\n");
  459. result = -EFAULT;
  460. goto end;
  461. }
  462. ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d throttling states\n",
  463. tss->package.count));
  464. pr->throttling.state_count = tss->package.count;
  465. pr->throttling.states_tss =
  466. kmalloc(sizeof(struct acpi_processor_tx_tss) * tss->package.count,
  467. GFP_KERNEL);
  468. if (!pr->throttling.states_tss) {
  469. result = -ENOMEM;
  470. goto end;
  471. }
  472. for (i = 0; i < pr->throttling.state_count; i++) {
  473. struct acpi_processor_tx_tss *tx =
  474. (struct acpi_processor_tx_tss *)&(pr->throttling.
  475. states_tss[i]);
  476. state.length = sizeof(struct acpi_processor_tx_tss);
  477. state.pointer = tx;
  478. ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Extracting state %d\n", i));
  479. status = acpi_extract_package(&(tss->package.elements[i]),
  480. &format, &state);
  481. if (ACPI_FAILURE(status)) {
  482. ACPI_EXCEPTION((AE_INFO, status, "Invalid _TSS data"));
  483. result = -EFAULT;
  484. kfree(pr->throttling.states_tss);
  485. goto end;
  486. }
  487. if (!tx->freqpercentage) {
  488. printk(KERN_ERR PREFIX
  489. "Invalid _TSS data: freq is zero\n");
  490. result = -EFAULT;
  491. kfree(pr->throttling.states_tss);
  492. goto end;
  493. }
  494. }
  495. end:
  496. kfree(buffer.pointer);
  497. return result;
  498. }
  499. /*
  500. * _TSD - T-State Dependencies
  501. */
  502. static int acpi_processor_get_tsd(struct acpi_processor *pr)
  503. {
  504. int result = 0;
  505. acpi_status status = AE_OK;
  506. struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
  507. struct acpi_buffer format = { sizeof("NNNNN"), "NNNNN" };
  508. struct acpi_buffer state = { 0, NULL };
  509. union acpi_object *tsd = NULL;
  510. struct acpi_tsd_package *pdomain;
  511. struct acpi_processor_throttling *pthrottling;
  512. pthrottling = &pr->throttling;
  513. pthrottling->tsd_valid_flag = 0;
  514. status = acpi_evaluate_object(pr->handle, "_TSD", NULL, &buffer);
  515. if (ACPI_FAILURE(status)) {
  516. if (status != AE_NOT_FOUND) {
  517. ACPI_EXCEPTION((AE_INFO, status, "Evaluating _TSD"));
  518. }
  519. return -ENODEV;
  520. }
  521. tsd = buffer.pointer;
  522. if (!tsd || (tsd->type != ACPI_TYPE_PACKAGE)) {
  523. printk(KERN_ERR PREFIX "Invalid _TSD data\n");
  524. result = -EFAULT;
  525. goto end;
  526. }
  527. if (tsd->package.count != 1) {
  528. printk(KERN_ERR PREFIX "Invalid _TSD data\n");
  529. result = -EFAULT;
  530. goto end;
  531. }
  532. pdomain = &(pr->throttling.domain_info);
  533. state.length = sizeof(struct acpi_tsd_package);
  534. state.pointer = pdomain;
  535. status = acpi_extract_package(&(tsd->package.elements[0]),
  536. &format, &state);
  537. if (ACPI_FAILURE(status)) {
  538. printk(KERN_ERR PREFIX "Invalid _TSD data\n");
  539. result = -EFAULT;
  540. goto end;
  541. }
  542. if (pdomain->num_entries != ACPI_TSD_REV0_ENTRIES) {
  543. printk(KERN_ERR PREFIX "Unknown _TSD:num_entries\n");
  544. result = -EFAULT;
  545. goto end;
  546. }
  547. if (pdomain->revision != ACPI_TSD_REV0_REVISION) {
  548. printk(KERN_ERR PREFIX "Unknown _TSD:revision\n");
  549. result = -EFAULT;
  550. goto end;
  551. }
  552. pthrottling = &pr->throttling;
  553. pthrottling->tsd_valid_flag = 1;
  554. pthrottling->shared_type = pdomain->coord_type;
  555. cpumask_set_cpu(pr->id, pthrottling->shared_cpu_map);
  556. /*
  557. * If the coordination type is not defined in ACPI spec,
  558. * the tsd_valid_flag will be clear and coordination type
  559. * will be forecd as DOMAIN_COORD_TYPE_SW_ALL.
  560. */
  561. if (pdomain->coord_type != DOMAIN_COORD_TYPE_SW_ALL &&
  562. pdomain->coord_type != DOMAIN_COORD_TYPE_SW_ANY &&
  563. pdomain->coord_type != DOMAIN_COORD_TYPE_HW_ALL) {
  564. pthrottling->tsd_valid_flag = 0;
  565. pthrottling->shared_type = DOMAIN_COORD_TYPE_SW_ALL;
  566. }
  567. end:
  568. kfree(buffer.pointer);
  569. return result;
  570. }
  571. /* --------------------------------------------------------------------------
  572. Throttling Control
  573. -------------------------------------------------------------------------- */
  574. static int acpi_processor_get_throttling_fadt(struct acpi_processor *pr)
  575. {
  576. int state = 0;
  577. u32 value = 0;
  578. u32 duty_mask = 0;
  579. u32 duty_value = 0;
  580. if (!pr)
  581. return -EINVAL;
  582. if (!pr->flags.throttling)
  583. return -ENODEV;
  584. pr->throttling.state = 0;
  585. duty_mask = pr->throttling.state_count - 1;
  586. duty_mask <<= pr->throttling.duty_offset;
  587. local_irq_disable();
  588. value = inl(pr->throttling.address);
  589. /*
  590. * Compute the current throttling state when throttling is enabled
  591. * (bit 4 is on).
  592. */
  593. if (value & 0x10) {
  594. duty_value = value & duty_mask;
  595. duty_value >>= pr->throttling.duty_offset;
  596. if (duty_value)
  597. state = pr->throttling.state_count - duty_value;
  598. }
  599. pr->throttling.state = state;
  600. local_irq_enable();
  601. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  602. "Throttling state is T%d (%d%% throttling applied)\n",
  603. state, pr->throttling.states[state].performance));
  604. return 0;
  605. }
  606. #ifdef CONFIG_X86
  607. static int acpi_throttling_rdmsr(struct acpi_processor *pr,
  608. u64 *value)
  609. {
  610. struct cpuinfo_x86 *c;
  611. u64 msr_high, msr_low;
  612. unsigned int cpu;
  613. u64 msr = 0;
  614. int ret = -1;
  615. cpu = pr->id;
  616. c = &cpu_data(cpu);
  617. if ((c->x86_vendor != X86_VENDOR_INTEL) ||
  618. !cpu_has(c, X86_FEATURE_ACPI)) {
  619. printk(KERN_ERR PREFIX
  620. "HARDWARE addr space,NOT supported yet\n");
  621. } else {
  622. msr_low = 0;
  623. msr_high = 0;
  624. rdmsr_safe(MSR_IA32_THERM_CONTROL,
  625. (u32 *)&msr_low , (u32 *) &msr_high);
  626. msr = (msr_high << 32) | msr_low;
  627. *value = (u64) msr;
  628. ret = 0;
  629. }
  630. return ret;
  631. }
  632. static int acpi_throttling_wrmsr(struct acpi_processor *pr, u64 value)
  633. {
  634. struct cpuinfo_x86 *c;
  635. unsigned int cpu;
  636. int ret = -1;
  637. u64 msr;
  638. cpu = pr->id;
  639. c = &cpu_data(cpu);
  640. if ((c->x86_vendor != X86_VENDOR_INTEL) ||
  641. !cpu_has(c, X86_FEATURE_ACPI)) {
  642. printk(KERN_ERR PREFIX
  643. "HARDWARE addr space,NOT supported yet\n");
  644. } else {
  645. msr = value;
  646. wrmsr_safe(MSR_IA32_THERM_CONTROL,
  647. msr & 0xffffffff, msr >> 32);
  648. ret = 0;
  649. }
  650. return ret;
  651. }
  652. #else
  653. static int acpi_throttling_rdmsr(struct acpi_processor *pr,
  654. u64 *value)
  655. {
  656. printk(KERN_ERR PREFIX
  657. "HARDWARE addr space,NOT supported yet\n");
  658. return -1;
  659. }
  660. static int acpi_throttling_wrmsr(struct acpi_processor *pr, u64 value)
  661. {
  662. printk(KERN_ERR PREFIX
  663. "HARDWARE addr space,NOT supported yet\n");
  664. return -1;
  665. }
  666. #endif
  667. static int acpi_read_throttling_status(struct acpi_processor *pr,
  668. u64 *value)
  669. {
  670. u32 bit_width, bit_offset;
  671. u64 ptc_value;
  672. u64 ptc_mask;
  673. struct acpi_processor_throttling *throttling;
  674. int ret = -1;
  675. throttling = &pr->throttling;
  676. switch (throttling->status_register.space_id) {
  677. case ACPI_ADR_SPACE_SYSTEM_IO:
  678. ptc_value = 0;
  679. bit_width = throttling->status_register.bit_width;
  680. bit_offset = throttling->status_register.bit_offset;
  681. acpi_os_read_port((acpi_io_address) throttling->status_register.
  682. address, (u32 *) &ptc_value,
  683. (u32) (bit_width + bit_offset));
  684. ptc_mask = (1 << bit_width) - 1;
  685. *value = (u64) ((ptc_value >> bit_offset) & ptc_mask);
  686. ret = 0;
  687. break;
  688. case ACPI_ADR_SPACE_FIXED_HARDWARE:
  689. ret = acpi_throttling_rdmsr(pr, value);
  690. break;
  691. default:
  692. printk(KERN_ERR PREFIX "Unknown addr space %d\n",
  693. (u32) (throttling->status_register.space_id));
  694. }
  695. return ret;
  696. }
  697. static int acpi_write_throttling_state(struct acpi_processor *pr,
  698. u64 value)
  699. {
  700. u32 bit_width, bit_offset;
  701. u64 ptc_value;
  702. u64 ptc_mask;
  703. struct acpi_processor_throttling *throttling;
  704. int ret = -1;
  705. throttling = &pr->throttling;
  706. switch (throttling->control_register.space_id) {
  707. case ACPI_ADR_SPACE_SYSTEM_IO:
  708. bit_width = throttling->control_register.bit_width;
  709. bit_offset = throttling->control_register.bit_offset;
  710. ptc_mask = (1 << bit_width) - 1;
  711. ptc_value = value & ptc_mask;
  712. acpi_os_write_port((acpi_io_address) throttling->
  713. control_register.address,
  714. (u32) (ptc_value << bit_offset),
  715. (u32) (bit_width + bit_offset));
  716. ret = 0;
  717. break;
  718. case ACPI_ADR_SPACE_FIXED_HARDWARE:
  719. ret = acpi_throttling_wrmsr(pr, value);
  720. break;
  721. default:
  722. printk(KERN_ERR PREFIX "Unknown addr space %d\n",
  723. (u32) (throttling->control_register.space_id));
  724. }
  725. return ret;
  726. }
  727. static int acpi_get_throttling_state(struct acpi_processor *pr,
  728. u64 value)
  729. {
  730. int i;
  731. for (i = 0; i < pr->throttling.state_count; i++) {
  732. struct acpi_processor_tx_tss *tx =
  733. (struct acpi_processor_tx_tss *)&(pr->throttling.
  734. states_tss[i]);
  735. if (tx->control == value)
  736. return i;
  737. }
  738. return -1;
  739. }
  740. static int acpi_get_throttling_value(struct acpi_processor *pr,
  741. int state, u64 *value)
  742. {
  743. int ret = -1;
  744. if (state >= 0 && state <= pr->throttling.state_count) {
  745. struct acpi_processor_tx_tss *tx =
  746. (struct acpi_processor_tx_tss *)&(pr->throttling.
  747. states_tss[state]);
  748. *value = tx->control;
  749. ret = 0;
  750. }
  751. return ret;
  752. }
  753. static int acpi_processor_get_throttling_ptc(struct acpi_processor *pr)
  754. {
  755. int state = 0;
  756. int ret;
  757. u64 value;
  758. if (!pr)
  759. return -EINVAL;
  760. if (!pr->flags.throttling)
  761. return -ENODEV;
  762. pr->throttling.state = 0;
  763. value = 0;
  764. ret = acpi_read_throttling_status(pr, &value);
  765. if (ret >= 0) {
  766. state = acpi_get_throttling_state(pr, value);
  767. if (state == -1) {
  768. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  769. "Invalid throttling state, reset\n"));
  770. state = 0;
  771. ret = acpi_processor_set_throttling(pr, state, true);
  772. if (ret)
  773. return ret;
  774. }
  775. pr->throttling.state = state;
  776. }
  777. return 0;
  778. }
  779. static int acpi_processor_get_throttling(struct acpi_processor *pr)
  780. {
  781. cpumask_var_t saved_mask;
  782. int ret;
  783. if (!pr)
  784. return -EINVAL;
  785. if (!pr->flags.throttling)
  786. return -ENODEV;
  787. if (!alloc_cpumask_var(&saved_mask, GFP_KERNEL))
  788. return -ENOMEM;
  789. /*
  790. * Migrate task to the cpu pointed by pr.
  791. */
  792. cpumask_copy(saved_mask, &current->cpus_allowed);
  793. /* FIXME: use work_on_cpu() */
  794. if (set_cpus_allowed_ptr(current, cpumask_of(pr->id))) {
  795. /* Can't migrate to the target pr->id CPU. Exit */
  796. free_cpumask_var(saved_mask);
  797. return -ENODEV;
  798. }
  799. ret = pr->throttling.acpi_processor_get_throttling(pr);
  800. /* restore the previous state */
  801. set_cpus_allowed_ptr(current, saved_mask);
  802. free_cpumask_var(saved_mask);
  803. return ret;
  804. }
  805. static int acpi_processor_get_fadt_info(struct acpi_processor *pr)
  806. {
  807. int i, step;
  808. if (!pr->throttling.address) {
  809. ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No throttling register\n"));
  810. return -EINVAL;
  811. } else if (!pr->throttling.duty_width) {
  812. ACPI_DEBUG_PRINT((ACPI_DB_INFO, "No throttling states\n"));
  813. return -EINVAL;
  814. }
  815. /* TBD: Support duty_cycle values that span bit 4. */
  816. else if ((pr->throttling.duty_offset + pr->throttling.duty_width) > 4) {
  817. printk(KERN_WARNING PREFIX "duty_cycle spans bit 4\n");
  818. return -EINVAL;
  819. }
  820. pr->throttling.state_count = 1 << acpi_gbl_FADT.duty_width;
  821. /*
  822. * Compute state values. Note that throttling displays a linear power
  823. * performance relationship (at 50% performance the CPU will consume
  824. * 50% power). Values are in 1/10th of a percent to preserve accuracy.
  825. */
  826. step = (1000 / pr->throttling.state_count);
  827. for (i = 0; i < pr->throttling.state_count; i++) {
  828. pr->throttling.states[i].performance = 1000 - step * i;
  829. pr->throttling.states[i].power = 1000 - step * i;
  830. }
  831. return 0;
  832. }
  833. static int acpi_processor_set_throttling_fadt(struct acpi_processor *pr,
  834. int state, bool force)
  835. {
  836. u32 value = 0;
  837. u32 duty_mask = 0;
  838. u32 duty_value = 0;
  839. if (!pr)
  840. return -EINVAL;
  841. if ((state < 0) || (state > (pr->throttling.state_count - 1)))
  842. return -EINVAL;
  843. if (!pr->flags.throttling)
  844. return -ENODEV;
  845. if (!force && (state == pr->throttling.state))
  846. return 0;
  847. if (state < pr->throttling_platform_limit)
  848. return -EPERM;
  849. /*
  850. * Calculate the duty_value and duty_mask.
  851. */
  852. if (state) {
  853. duty_value = pr->throttling.state_count - state;
  854. duty_value <<= pr->throttling.duty_offset;
  855. /* Used to clear all duty_value bits */
  856. duty_mask = pr->throttling.state_count - 1;
  857. duty_mask <<= acpi_gbl_FADT.duty_offset;
  858. duty_mask = ~duty_mask;
  859. }
  860. local_irq_disable();
  861. /*
  862. * Disable throttling by writing a 0 to bit 4. Note that we must
  863. * turn it off before you can change the duty_value.
  864. */
  865. value = inl(pr->throttling.address);
  866. if (value & 0x10) {
  867. value &= 0xFFFFFFEF;
  868. outl(value, pr->throttling.address);
  869. }
  870. /*
  871. * Write the new duty_value and then enable throttling. Note
  872. * that a state value of 0 leaves throttling disabled.
  873. */
  874. if (state) {
  875. value &= duty_mask;
  876. value |= duty_value;
  877. outl(value, pr->throttling.address);
  878. value |= 0x00000010;
  879. outl(value, pr->throttling.address);
  880. }
  881. pr->throttling.state = state;
  882. local_irq_enable();
  883. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  884. "Throttling state set to T%d (%d%%)\n", state,
  885. (pr->throttling.states[state].performance ? pr->
  886. throttling.states[state].performance / 10 : 0)));
  887. return 0;
  888. }
  889. static int acpi_processor_set_throttling_ptc(struct acpi_processor *pr,
  890. int state, bool force)
  891. {
  892. int ret;
  893. u64 value;
  894. if (!pr)
  895. return -EINVAL;
  896. if ((state < 0) || (state > (pr->throttling.state_count - 1)))
  897. return -EINVAL;
  898. if (!pr->flags.throttling)
  899. return -ENODEV;
  900. if (!force && (state == pr->throttling.state))
  901. return 0;
  902. if (state < pr->throttling_platform_limit)
  903. return -EPERM;
  904. value = 0;
  905. ret = acpi_get_throttling_value(pr, state, &value);
  906. if (ret >= 0) {
  907. acpi_write_throttling_state(pr, value);
  908. pr->throttling.state = state;
  909. }
  910. return 0;
  911. }
  912. int acpi_processor_set_throttling(struct acpi_processor *pr,
  913. int state, bool force)
  914. {
  915. cpumask_var_t saved_mask;
  916. int ret = 0;
  917. unsigned int i;
  918. struct acpi_processor *match_pr;
  919. struct acpi_processor_throttling *p_throttling;
  920. struct throttling_tstate t_state;
  921. cpumask_var_t online_throttling_cpus;
  922. if (!pr)
  923. return -EINVAL;
  924. if (!pr->flags.throttling)
  925. return -ENODEV;
  926. if ((state < 0) || (state > (pr->throttling.state_count - 1)))
  927. return -EINVAL;
  928. if (!alloc_cpumask_var(&saved_mask, GFP_KERNEL))
  929. return -ENOMEM;
  930. if (!alloc_cpumask_var(&online_throttling_cpus, GFP_KERNEL)) {
  931. free_cpumask_var(saved_mask);
  932. return -ENOMEM;
  933. }
  934. if (cpu_is_offline(pr->id)) {
  935. /*
  936. * the cpu pointed by pr->id is offline. Unnecessary to change
  937. * the throttling state any more.
  938. */
  939. return -ENODEV;
  940. }
  941. cpumask_copy(saved_mask, &current->cpus_allowed);
  942. t_state.target_state = state;
  943. p_throttling = &(pr->throttling);
  944. cpumask_and(online_throttling_cpus, cpu_online_mask,
  945. p_throttling->shared_cpu_map);
  946. /*
  947. * The throttling notifier will be called for every
  948. * affected cpu in order to get one proper T-state.
  949. * The notifier event is THROTTLING_PRECHANGE.
  950. */
  951. for_each_cpu(i, online_throttling_cpus) {
  952. t_state.cpu = i;
  953. acpi_processor_throttling_notifier(THROTTLING_PRECHANGE,
  954. &t_state);
  955. }
  956. /*
  957. * The function of acpi_processor_set_throttling will be called
  958. * to switch T-state. If the coordination type is SW_ALL or HW_ALL,
  959. * it is necessary to call it for every affected cpu. Otherwise
  960. * it can be called only for the cpu pointed by pr.
  961. */
  962. if (p_throttling->shared_type == DOMAIN_COORD_TYPE_SW_ANY) {
  963. /* FIXME: use work_on_cpu() */
  964. if (set_cpus_allowed_ptr(current, cpumask_of(pr->id))) {
  965. /* Can't migrate to the pr->id CPU. Exit */
  966. ret = -ENODEV;
  967. goto exit;
  968. }
  969. ret = p_throttling->acpi_processor_set_throttling(pr,
  970. t_state.target_state, force);
  971. } else {
  972. /*
  973. * When the T-state coordination is SW_ALL or HW_ALL,
  974. * it is necessary to set T-state for every affected
  975. * cpus.
  976. */
  977. for_each_cpu(i, online_throttling_cpus) {
  978. match_pr = per_cpu(processors, i);
  979. /*
  980. * If the pointer is invalid, we will report the
  981. * error message and continue.
  982. */
  983. if (!match_pr) {
  984. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  985. "Invalid Pointer for CPU %d\n", i));
  986. continue;
  987. }
  988. /*
  989. * If the throttling control is unsupported on CPU i,
  990. * we will report the error message and continue.
  991. */
  992. if (!match_pr->flags.throttling) {
  993. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  994. "Throttling Controll is unsupported "
  995. "on CPU %d\n", i));
  996. continue;
  997. }
  998. t_state.cpu = i;
  999. /* FIXME: use work_on_cpu() */
  1000. if (set_cpus_allowed_ptr(current, cpumask_of(i)))
  1001. continue;
  1002. ret = match_pr->throttling.
  1003. acpi_processor_set_throttling(
  1004. match_pr, t_state.target_state, force);
  1005. }
  1006. }
  1007. /*
  1008. * After the set_throttling is called, the
  1009. * throttling notifier is called for every
  1010. * affected cpu to update the T-states.
  1011. * The notifier event is THROTTLING_POSTCHANGE
  1012. */
  1013. for_each_cpu(i, online_throttling_cpus) {
  1014. t_state.cpu = i;
  1015. acpi_processor_throttling_notifier(THROTTLING_POSTCHANGE,
  1016. &t_state);
  1017. }
  1018. /* restore the previous state */
  1019. /* FIXME: use work_on_cpu() */
  1020. set_cpus_allowed_ptr(current, saved_mask);
  1021. exit:
  1022. free_cpumask_var(online_throttling_cpus);
  1023. free_cpumask_var(saved_mask);
  1024. return ret;
  1025. }
  1026. int acpi_processor_get_throttling_info(struct acpi_processor *pr)
  1027. {
  1028. int result = 0;
  1029. struct acpi_processor_throttling *pthrottling;
  1030. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  1031. "pblk_address[0x%08x] duty_offset[%d] duty_width[%d]\n",
  1032. pr->throttling.address,
  1033. pr->throttling.duty_offset,
  1034. pr->throttling.duty_width));
  1035. /*
  1036. * Evaluate _PTC, _TSS and _TPC
  1037. * They must all be present or none of them can be used.
  1038. */
  1039. if (acpi_processor_get_throttling_control(pr) ||
  1040. acpi_processor_get_throttling_states(pr) ||
  1041. acpi_processor_get_platform_limit(pr))
  1042. {
  1043. pr->throttling.acpi_processor_get_throttling =
  1044. &acpi_processor_get_throttling_fadt;
  1045. pr->throttling.acpi_processor_set_throttling =
  1046. &acpi_processor_set_throttling_fadt;
  1047. if (acpi_processor_get_fadt_info(pr))
  1048. return 0;
  1049. } else {
  1050. pr->throttling.acpi_processor_get_throttling =
  1051. &acpi_processor_get_throttling_ptc;
  1052. pr->throttling.acpi_processor_set_throttling =
  1053. &acpi_processor_set_throttling_ptc;
  1054. }
  1055. /*
  1056. * If TSD package for one CPU can't be parsed successfully, it means
  1057. * that this CPU will have no coordination with other CPUs.
  1058. */
  1059. if (acpi_processor_get_tsd(pr)) {
  1060. pthrottling = &pr->throttling;
  1061. pthrottling->tsd_valid_flag = 0;
  1062. cpumask_set_cpu(pr->id, pthrottling->shared_cpu_map);
  1063. pthrottling->shared_type = DOMAIN_COORD_TYPE_SW_ALL;
  1064. }
  1065. /*
  1066. * PIIX4 Errata: We don't support throttling on the original PIIX4.
  1067. * This shouldn't be an issue as few (if any) mobile systems ever
  1068. * used this part.
  1069. */
  1070. if (errata.piix4.throttle) {
  1071. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  1072. "Throttling not supported on PIIX4 A- or B-step\n"));
  1073. return 0;
  1074. }
  1075. ACPI_DEBUG_PRINT((ACPI_DB_INFO, "Found %d throttling states\n",
  1076. pr->throttling.state_count));
  1077. pr->flags.throttling = 1;
  1078. /*
  1079. * Disable throttling (if enabled). We'll let subsequent policy (e.g.
  1080. * thermal) decide to lower performance if it so chooses, but for now
  1081. * we'll crank up the speed.
  1082. */
  1083. result = acpi_processor_get_throttling(pr);
  1084. if (result)
  1085. goto end;
  1086. if (pr->throttling.state) {
  1087. ACPI_DEBUG_PRINT((ACPI_DB_INFO,
  1088. "Disabling throttling (was T%d)\n",
  1089. pr->throttling.state));
  1090. result = acpi_processor_set_throttling(pr, 0, false);
  1091. if (result)
  1092. goto end;
  1093. }
  1094. end:
  1095. if (result)
  1096. pr->flags.throttling = 0;
  1097. return result;
  1098. }