intel_idle: enable Atom C6
ATM-C6 was commented out, pending public documentation. https://bugzilla.kernel.org/show_bug.cgi?id=19762 Tested-by: Dennis Jansen <Dennis.Jansen@...> Signed-off-by: Len Brown <len.brown@intel.com>
This commit is contained in:
parent
3c06806e69
commit
7fcca7d900
|
@ -157,13 +157,13 @@ static struct cpuidle_state atom_cstates[MWAIT_MAX_NUM_CSTATES] = {
|
||||||
{ /* MWAIT C5 */ },
|
{ /* MWAIT C5 */ },
|
||||||
{ /* MWAIT C6 */
|
{ /* MWAIT C6 */
|
||||||
.name = "ATM-C6",
|
.name = "ATM-C6",
|
||||||
.desc = "MWAIT 0x40",
|
.desc = "MWAIT 0x52",
|
||||||
.driver_data = (void *) 0x40,
|
.driver_data = (void *) 0x52,
|
||||||
.flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
|
.flags = CPUIDLE_FLAG_TIME_VALID | CPUIDLE_FLAG_TLB_FLUSHED,
|
||||||
.exit_latency = 200,
|
.exit_latency = 140,
|
||||||
.power_usage = 150,
|
.power_usage = 150,
|
||||||
.target_residency = 800,
|
.target_residency = 560,
|
||||||
.enter = NULL }, /* disabled */
|
.enter = &intel_idle },
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue