From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752586AbeAWUXW (ORCPT ); Tue, 23 Jan 2018 15:23:22 -0500 Received: from vern.gendns.com ([206.190.152.46]:36385 "EHLO vern.gendns.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752495AbeAWUXU (ORCPT ); Tue, 23 Jan 2018 15:23:20 -0500 Subject: =?UTF-8?Q?Re:_[PATCH_v6_00/41]_ARM:_davinci:_convert_to_common_cloc?= =?UTF-8?Q?k_framework=e2=80=8b?= From: David Lechner To: Bartosz Golaszewski Cc: Adam Ford , linux-clk@vger.kernel.org, devicetree , linux-arm-kernel@lists.infradead.org, Michael Turquette , Stephen Boyd , Rob Herring , Mark Rutland , Sekhar Nori , Kevin Hilman , Bartosz Golaszewski , Linux Kernel Mailing List References: <1516468460-4908-1-git-send-email-david@lechnology.com> <615bc302-e129-1501-63be-fa701f5ecaad@lechnology.com> <5f836454-5de7-c51d-d262-2c2dbc26e438@lechnology.com> Message-ID: Date: Tue, 23 Jan 2018 14:23:10 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - vern.gendns.com X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - lechnology.com X-Get-Message-Sender-Via: vern.gendns.com: authenticated_id: davidmain+lechnology.com/only user confirmed/virtual account not confirmed X-Authenticated-Sender: vern.gendns.com: davidmain@lechnology.com X-Source: X-Source-Args: X-Source-Dir: Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 01/23/2018 02:05 PM, David Lechner wrote: > On 01/23/2018 02:01 PM, David Lechner wrote: >> On 01/23/2018 01:53 PM, Bartosz Golaszewski wrote: >>> >>> In the mdio case - the problem is that devm_clk_get() doesn't fail, >>> but somehow the clock doesn't end up in the list of the device's >>> clocks - which is why it's not enabled by pm_runtime_get_sync(). >>> >> >> >> Right. This is because devm_clk_get() now finds the clock via device >> tree instead of a clkdev lookup entry. However, I think that the PM >> notifier registered in arch/arm/mach-davinci/pm_domain.c only uses >> the clkdev lookup to match the con_id and does not use device tree. >> The same thing is happing in mdio, emac and lcdc. >> > > Minor correction: It looks like emac doesn't do this because it doesn't > have a con_id of "fck". But, the same clock is shared by emac and mdio, so > since mdio enables the clock, emac doesn't notice or care that it did > not enable the clock itself. How about using pm_clk_add_clk() in these drivers to explicitly use the clocks for power management instead of relying on pm_clk_add_notifier() to do this implicitly?