From patchwork Fri Jul 25 18:31:36 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Grygorii Strashko X-Patchwork-Id: 4625051 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id B8B2FC0338 for ; Fri, 25 Jul 2014 17:47:06 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id EECCE20136 for ; Fri, 25 Jul 2014 17:47:05 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CAB3E2020A for ; Fri, 25 Jul 2014 17:47:04 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760696AbaGYRrA (ORCPT ); Fri, 25 Jul 2014 13:47:00 -0400 Received: from devils.ext.ti.com ([198.47.26.153]:57628 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753938AbaGYRq7 (ORCPT ); Fri, 25 Jul 2014 13:46:59 -0400 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by devils.ext.ti.com (8.13.7/8.13.7) with ESMTP id s6PHkMBF014760; Fri, 25 Jul 2014 12:46:22 -0500 Received: from DFLE72.ent.ti.com (dfle72.ent.ti.com [128.247.5.109]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id s6PHkMvf011077; Fri, 25 Jul 2014 12:46:22 -0500 Received: from dflp32.itg.ti.com (10.64.6.15) by DFLE72.ent.ti.com (128.247.5.109) with Microsoft SMTP Server id 14.3.174.1; Fri, 25 Jul 2014 12:46:22 -0500 Received: from localhost (dlep60.itg.ti.com [157.170.170.21]) by dflp32.itg.ti.com (8.14.3/8.13.8) with ESMTP id s6PHkLv5009936; Fri, 25 Jul 2014 12:46:22 -0500 From: Grygorii Strashko To: , "Rafael J. Wysocki" , , Geert Uytterhoeven , CC: , , , , , , , Grygorii Strashko Subject: [RFC PATCH 3/3] ARM: keystone: pm_domain: setup clk pm domain clocks from DT Date: Fri, 25 Jul 2014 21:31:36 +0300 Message-ID: <1406313096-29761-4-git-send-email-grygorii.strashko@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1406313096-29761-1-git-send-email-grygorii.strashko@ti.com> References: <1406313096-29761-1-git-send-email-grygorii.strashko@ti.com> MIME-Version: 1.0 Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This patch implements custom pm_clk_notifier callback for Keystone 2 CLK PM domain which fills list of clocks for Device with all clocks assigned to this Device in DT. After this patch .con_ids field in pm_clk_notifier_block is not used and there are no limitation for clocks names in DT any more. Signed-off-by: Grygorii Strashko --- arch/arm/mach-keystone/pm_domain.c | 46 ++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/arch/arm/mach-keystone/pm_domain.c b/arch/arm/mach-keystone/pm_domain.c index ca79dda..56542d2 100644 --- a/arch/arm/mach-keystone/pm_domain.c +++ b/arch/arm/mach-keystone/pm_domain.c @@ -47,6 +47,51 @@ static int keystone_pm_runtime_resume(struct device *dev) return pm_generic_runtime_resume(dev); } + +static int keystone_pm_clk_notify(struct notifier_block *nb, + unsigned long action, void *data) +{ + struct pm_clk_notifier_block *clknb; + struct device *dev = data; + int error; + unsigned int i; + struct clk *clk; + struct device_node *np = dev->of_node; + + dev_dbg(dev, "%s() %ld\n", __func__, action); + + clknb = container_of(nb, struct pm_clk_notifier_block, nb); + + switch (action) { + case BUS_NOTIFY_BIND_DRIVER: + if (dev->pm_domain) + break; + + error = pm_clk_create(dev); + if (error) + break; + + dev->pm_domain = clknb->pm_domain; + + for (i = 0; (clk = of_clk_get(np, i)) && !IS_ERR(clk); i++) { + if (pm_clk_add_clk(dev, clk)) + clk_put(clk); + } + + break; + case BUS_NOTIFY_UNBOUND_DRIVER: + if (dev->pm_domain != clknb->pm_domain) + break; + + dev->pm_domain = NULL; + pm_clk_destroy(dev); + break; + } + + return 0; +} +#else + #endif static struct dev_pm_domain keystone_pm_domain = { @@ -59,6 +104,7 @@ static struct dev_pm_domain keystone_pm_domain = { static struct pm_clk_notifier_block platform_domain_notifier = { .pm_domain = &keystone_pm_domain, + .nb = { .notifier_call = keystone_pm_clk_notify, }, }; static struct of_device_id of_keystone_table[] = {