Lines Matching defs:max_cstate
66 /* intel_idle.max_cstate=0 disables driver */
67 static int max_cstate = CPUIDLE_STATE_MAX - 1;
1162 if (cstate + 1 > max_cstate) {
1163 pr_info("max_cstate %d reached\n", max_cstate);
1199 * Check if all of the C-states listed by _CST in the max_cstate range are
1206 limit = min_t(int, min_t(int, CPUIDLE_STATE_MAX, max_cstate + 1),
1442 /* if PC10 disabled via cmdline intel_idle.max_cstate=7 or shallower */
1443 if (max_cstate <= 7)
1658 if (max_cstate == 0) {
1737 * support "intel_idle.max_cstate=..." at boot and also a read-only export of
1738 * it at /sys/module/intel_idle/parameters/max_cstate -- so using module_param
1741 module_param(max_cstate, int, 0444);