From patchwork Thu Jun 7 18:12:09 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matthias Kaehlcke X-Patchwork-Id: 10453373 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 CB5EC60234 for ; Thu, 7 Jun 2018 18:16:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BBE2B29BDF for ; Thu, 7 Jun 2018 18:16:11 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id B035029C49; Thu, 7 Jun 2018 18:16:11 +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=-7.9 required=2.0 tests=BAYES_00, MAILING_LIST_MULTI, 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 5169829BDF for ; Thu, 7 Jun 2018 18:16:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933884AbeFGSQJ (ORCPT ); Thu, 7 Jun 2018 14:16:09 -0400 Received: from mail-pg0-f67.google.com ([74.125.83.67]:41936 "EHLO mail-pg0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S936056AbeFGSNC (ORCPT ); Thu, 7 Jun 2018 14:13:02 -0400 Received: by mail-pg0-f67.google.com with SMTP id l65-v6so5124753pgl.8 for ; Thu, 07 Jun 2018 11:13:02 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=SWb5QeE+21llbmN/IZkUxeVqFa2RAmJAr0TMkSP535Q=; b=pWf4FfmAJdhF7dQqI8eizGkPQ843WmveMjvLWSVo6lpVtLYYOM2fR4ubD5yxhE1SkC I4XdshlBeP6JAk0U52WKjkh5CDGdFFDJyJEiLjniCl6ae5Rg6jNXk54Pa65ypMp2ACBS R7lEsYWMGAEfMkVUUKUK11ZB2/xdFpUE2Kd/HTF8ErTRJGfU/lYdWimUzwnNG9wgJYg0 YHHyGaPSVaoDt9LXvVMJ3NRfpjJcg3TXtyi3PqKtIF8PxYHneuICsoEuNoeQPMLNF/Eq PIjWVRWJspLYhnU4tvLHFIoDGzH6cdXqj4GdJ0J6FDausb6S0b3b6LgKzN2NMPiMnRqv ukVA== X-Gm-Message-State: APt69E0lAVNQri+Y/fswMwu1vagYpXAVSO4zr9oCqiFwvff2FwzjdvZG K21WlZLktVWec1Y7YlPVMxg4/g== X-Google-Smtp-Source: ADUXVKJinG8fg6t90/YZ2x63em5SpHT/26VBYyEJ4SPZpuz0nqBAUHad4uENRsT1Nc1d1a4H3F55ag== X-Received: by 2002:a63:18c:: with SMTP id 134-v6mr2439035pgb.138.1528395180574; Thu, 07 Jun 2018 11:13:00 -0700 (PDT) Received: from mka.mtv.corp.google.com ([2620:0:1000:1501:8e2d:4727:1211:622]) by smtp.gmail.com with ESMTPSA id z3-v6sm5029002pfn.36.2018.06.07.11.12.59 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 07 Jun 2018 11:12:59 -0700 (PDT) From: Matthias Kaehlcke To: MyungJoo Ham Cc: Kyungmin Park , Chanwoo Choi , Arnd Bergmann , Greg Kroah-Hartman , Rob Herring , Mark Rutland , linux-pm@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Brian Norris , Douglas Anderson , Enric Balletbo i Serra , Matthias Kaehlcke Subject: [PATCH v2 06/11] PM / devfreq: Make update_devfreq() public Date: Thu, 7 Jun 2018 11:12:09 -0700 Message-Id: <20180607181214.30338-7-mka@chromium.org> X-Mailer: git-send-email 2.18.0.rc1.242.g61856ae69a-goog In-Reply-To: <20180607181214.30338-1-mka@chromium.org> References: <20180607181214.30338-1-mka@chromium.org> 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 Currently update_devfreq() is only visible to devfreq governors outside of devfreq.c. Make it public to allow drivers that adjust devfreq policies to cause a re-evaluation of the frequency after a policy change. Signed-off-by: Matthias Kaehlcke Acked-by: MyungJoo Ham --- Changes in v2: - added 'Acked-by: MyungJoo Ham ' tag drivers/devfreq/governor.h | 3 --- include/linux/devfreq.h | 8 ++++++++ 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/drivers/devfreq/governor.h b/drivers/devfreq/governor.h index b81700244ce3..f53339ca610f 100644 --- a/drivers/devfreq/governor.h +++ b/drivers/devfreq/governor.h @@ -57,9 +57,6 @@ struct devfreq_governor { unsigned int event, void *data); }; -/* Caution: devfreq->lock must be locked before calling update_devfreq */ -extern int update_devfreq(struct devfreq *devfreq); - extern void devfreq_monitor_start(struct devfreq *devfreq); extern void devfreq_monitor_stop(struct devfreq *devfreq); extern void devfreq_monitor_suspend(struct devfreq *devfreq); diff --git a/include/linux/devfreq.h b/include/linux/devfreq.h index 8a4c0f10a394..781edefb0087 100644 --- a/include/linux/devfreq.h +++ b/include/linux/devfreq.h @@ -222,6 +222,14 @@ extern void devm_devfreq_remove_device(struct device *dev, extern int devfreq_suspend_device(struct devfreq *devfreq); extern int devfreq_resume_device(struct devfreq *devfreq); +/** + * update_devfreq() - Reevaluate the device and configure frequency + * @devfreq: the devfreq device + * + * Note: devfreq->lock must be held + */ +extern int update_devfreq(struct devfreq *devfreq); + /* Helper functions for devfreq user device driver with OPP. */ extern struct dev_pm_opp *devfreq_recommended_opp(struct device *dev, unsigned long *freq, u32 flags);