From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A7E84C4CEC4 for ; Wed, 18 Sep 2019 06:28:06 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7EAE821925 for ; Wed, 18 Sep 2019 06:28:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568788086; bh=/lpqxF3W5ulSSnclEQAdOp2a40KVO+knoaImbThtG6M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=m+uN7LvJTF2AaWf0qmcWNQwmoD+gi+tEd4BtSMFsACsAtcyZJISKpaoVhF58szzRo eSpjN5+S1/SJBJtOX/5yzFDo2WdMgJnMjXlLCzGnuSX/89rB/uZ3bMMooWsDJu71Qn s5x0s/cbQKVLbpx32Ba5eK5v+BRK2MXUU4n3w2T0= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728910AbfIRG2F (ORCPT ); Wed, 18 Sep 2019 02:28:05 -0400 Received: from mail.kernel.org ([198.145.29.99]:50178 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730640AbfIRG2B (ORCPT ); Wed, 18 Sep 2019 02:28:01 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id C9C6021929; Wed, 18 Sep 2019 06:27:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1568788080; bh=/lpqxF3W5ulSSnclEQAdOp2a40KVO+knoaImbThtG6M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ot3nAdt8ujCPILt/1bnsNCg2jDf8AVNZkFudH7imDs2aD0Jql5GscMv6TixeAhDNb neQAcWc4KFh8wKVNZo+4YTXlSMlTA/pNzhsKuy488cpY3LpkvDRuY2llMrDvXw7Y95 RKwbh96B/ib6XWIsHa/9MYEALp1NisKeUZ34ce4w= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Steffen Dirkwinkel , Andy Shevchenko Subject: [PATCH 5.2 82/85] platform/x86: pmc_atom: Add CB4063 Beckhoff Automation board to critclk_systems DMI table Date: Wed, 18 Sep 2019 08:19:40 +0200 Message-Id: <20190918061237.967689191@linuxfoundation.org> X-Mailer: git-send-email 2.23.0 In-Reply-To: <20190918061234.107708857@linuxfoundation.org> References: <20190918061234.107708857@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Steffen Dirkwinkel commit 9452fbf5c6cf5f470e0748fe7a14a683e7765f7a upstream. The CB4063 board uses pmc_plt_clk* clocks for ethernet controllers. This adds it to the critclk_systems DMI table so the clocks are marked as CLK_CRITICAL and not turned off. Fixes: 648e921888ad ("clk: x86: Stop marking clocks as CLK_IS_CRITICAL") Signed-off-by: Steffen Dirkwinkel Signed-off-by: Andy Shevchenko Signed-off-by: Greg Kroah-Hartman --- drivers/platform/x86/pmc_atom.c | 8 ++++++++ 1 file changed, 8 insertions(+) --- a/drivers/platform/x86/pmc_atom.c +++ b/drivers/platform/x86/pmc_atom.c @@ -414,6 +414,14 @@ static const struct dmi_system_id critcl }, { /* pmc_plt_clk* - are used for ethernet controllers */ + .ident = "Beckhoff CB4063", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Beckhoff Automation"), + DMI_MATCH(DMI_BOARD_NAME, "CB4063"), + }, + }, + { + /* pmc_plt_clk* - are used for ethernet controllers */ .ident = "Beckhoff CB6263", .matches = { DMI_MATCH(DMI_SYS_VENDOR, "Beckhoff Automation"),