Lines Matching defs:max_cstate
67 /* intel_idle.max_cstate=0 disables driver */
68 static int max_cstate = CPUIDLE_STATE_MAX - 1;
1440 if (cstate + 1 > max_cstate) {
1441 pr_info("max_cstate %d reached\n", max_cstate);
1477 * Check if all of the C-states listed by _CST in the max_cstate range are
1484 limit = min_t(int, min_t(int, CPUIDLE_STATE_MAX, max_cstate + 1),
1720 /* if PC10 disabled via cmdline intel_idle.max_cstate=7 or shallower */
1721 if (max_cstate <= 7)
2064 if (max_cstate == 0) {
2144 * support "intel_idle.max_cstate=..." at boot and also a read-only export of
2145 * it at /sys/module/intel_idle/parameters/max_cstate -- so using module_param
2148 module_param(max_cstate, int, 0444);