From mboxrd@z Thu Jan 1 00:00:00 1970 From: Archit Taneja Date: Tue, 14 Feb 2012 13:42:23 +0000 Subject: Re: [PATCH v2] OMAPDSS: HACK: Ensure DSS clock domain gets out of idle when HDMI is enabled Message-Id: <4F3A61EF.4030803@ti.com> List-Id: References: <1328854552-30714-1-git-send-email-archit@ti.com> <1329220678.1845.68.camel@deskari> <4F3A5A5D.4020906@ti.com> <1329225311.1845.109.camel@deskari> In-Reply-To: <1329225311.1845.109.camel@deskari> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: Tomi Valkeinen Cc: "Cousson, Benoit" , Archit Taneja , linux-omap@vger.kernel.org, linux@arm.linux.org.uk, linux-fbdev@vger.kernel.org Hi, On Tuesday 14 February 2012 06:45 PM, Tomi Valkeinen wrote: > On Tue, 2012-02-14 at 13:58 +0100, Cousson, Benoit wrote: >> Hi Tomi, > >>> Benoit, do you think we'll get the MODULEMODE mess cleaned up in the >>> hwmod/clk framework at some point, and the drivers could do without >>> these kinds of hacks? =) >> >> The best way to fix that for my point of view is to go to device tree >> or/and to consider the DSS as the parent of all the DSS modules. >> pm_runtime will then always ensure that the parent is enabled before any >> of the child are used. > > Ah, right. Sounds fine to me. > > But is that a proper "fix"? Are we sure the MODULEMODE will then always > be handled correctly? Isn't the core problem still there, it just > doesn't happen with the setup anymore? > > I mean, if we have these special requirements regarding MODULEMODE, and > the code doesn't really know about it, would it get broken easily with > restructuring/changes? > > And no, I don't have any clear idea why/how it would break, but I have > just gotten the impression that the MODULEMODE is not handled quite > properly (and so we have these current problems), and having dss_core as > the parent of other dss modules doesn't really fix that in any way. I agree with that. In the current approach, we have multiple platform devices for DSS, and all of them belong to the same clock domain, and the clock domain has just one MODULEMODE bit field. When shutting off a platform device(by calling pm_runtime_put()), hwmod enables/disables MODULEMODE without taking into mind that other active platform devices may still need it. So, for example, if we have 2 platform devices, say dss and dispc, and we have code like: dispc_foo() { pm_runtime_get(dispc_pdev); ... ... pm_runtime_put(dispc_pdev); } dss_foo() { pm_runtime_get(dss_pdev); ... ... dispc_foo(); /* MODULEMODE off after this */ ... ... pm_runtime_put(dss_pdev); } This will lead to the situation of one platform device disabling MODULEMODE even though other platform devices need it. This may not be resolved in device tree either. We would need to have some use count mechanism for these bits, or attach MODULEMODE only to one platform device, and don't give others control to enable/disable it. Archit