From patchwork Mon Jun 6 17:06:46 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andy Shevchenko X-Patchwork-Id: 9158867 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 7EE5B60759 for ; Mon, 6 Jun 2016 17:07:38 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 6D86427B13 for ; Mon, 6 Jun 2016 17:07:38 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 6064A2834C; Mon, 6 Jun 2016 17:07:38 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E637627B13 for ; Mon, 6 Jun 2016 17:07:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751828AbcFFRHh (ORCPT ); Mon, 6 Jun 2016 13:07:37 -0400 Received: from mga01.intel.com ([192.55.52.88]:60505 "EHLO mga01.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751699AbcFFRHg (ORCPT ); Mon, 6 Jun 2016 13:07:36 -0400 Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP; 06 Jun 2016 10:06:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,428,1459839600"; d="scan'208";a="969970132" Received: from black.fi.intel.com ([10.237.72.93]) by orsmga001.jf.intel.com with ESMTP; 06 Jun 2016 10:06:48 -0700 Received: by black.fi.intel.com (Postfix, from userid 1003) id 85A7E13C; Mon, 6 Jun 2016 20:06:47 +0300 (EEST) From: Andy Shevchenko To: linux-pm@vger.kernel.org, Len Brown Cc: Andy Shevchenko Subject: [PATCH v1 1/1] intel_idle: Add CPU model 74 (Atom Z34xx series) Date: Mon, 6 Jun 2016 20:06:46 +0300 Message-Id: <1465232806-138619-1-git-send-email-andriy.shevchenko@linux.intel.com> X-Mailer: git-send-email 2.8.1 Sender: linux-pm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Add CPU ID for Atom Z34xx processors. Datasheets indicate support for this, detailed information about potential quirks or limitations are missing, though. So we just reuse the definition for the previous ATOM series. The quite similar values (C1 is slightly deviated) are used in the official Intel Edison BSP. Signed-off-by: Andy Shevchenko --- drivers/idle/intel_idle.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/idle/intel_idle.c b/drivers/idle/intel_idle.c index c966492..bb52275 100644 --- a/drivers/idle/intel_idle.c +++ b/drivers/idle/intel_idle.c @@ -1033,6 +1033,7 @@ static const struct x86_cpu_id intel_idle_ids[] __initconst = { ICPU(0x2d, idle_cpu_snb), ICPU(0x36, idle_cpu_atom), ICPU(0x37, idle_cpu_byt), + ICPU(0x4a, idle_cpu_atom), ICPU(0x4c, idle_cpu_cht), ICPU(0x3a, idle_cpu_ivb), ICPU(0x3e, idle_cpu_ivt),