Message ID | 20200304194312.1.I108734f38ade020c3e5da825839dca11d2a2ff87@changeid (mailing list archive) |
---|---|
State | Changes Requested, archived |
Headers | show |
Series | [v4] intel_idle: Add Comet Lake support | expand |
diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c index d55606608ac8..d838143f1422 100644 --- a/drivers/idle/intel_idle.c +++ b/drivers/idle/intel_idle.c @@ -1105,6 +1105,8 @@ static const struct x86_cpu_id intel_idle_ids[] __initconst = { INTEL_CPU_FAM6(ATOM_GOLDMONT_PLUS, idle_cpu_bxt), INTEL_CPU_FAM6(ATOM_GOLDMONT_D, idle_cpu_dnv), INTEL_CPU_FAM6(ATOM_TREMONT_D, idle_cpu_dnv), + INTEL_CPU_FAM6(COMETLAKE_L, idle_cpu_skl), + INTEL_CPU_FAM6(COMETLAKE, idle_cpu_skl), {} };
Add a general C-state table in order to support Comet Lake. Signed-off-by: Harry Pan <harry.pan@intel.com> --- drivers/idle/intel_idle.c | 2 ++ 1 file changed, 2 insertions(+)