From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tero Kristo Subject: Re: [PATCHv3 4/6] ARM: OMAP3 PM: Enable IO Wake up Date: Thu, 1 Mar 2012 10:25:55 +0200 Message-ID: <1330590355.2116.74.camel@sokoban> References: <1330525621-29836-1-git-send-email-t-kristo@ti.com> <1330525621-29836-5-git-send-email-t-kristo@ti.com> <4F4F1CBA.7040502@ti.com> Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Return-path: Received: from bear.ext.ti.com ([192.94.94.41]:37285 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752105Ab2CAI0A (ORCPT ); Thu, 1 Mar 2012 03:26:00 -0500 In-Reply-To: <4F4F1CBA.7040502@ti.com> Sender: linux-omap-owner@vger.kernel.org List-Id: linux-omap@vger.kernel.org To: Rajendra Nayak , Paul Walmsley Cc: linux-omap@vger.kernel.org, khilman@ti.com, linux-arm-kernel@lists.infradead.org, Vishwanath BS On Thu, 2012-03-01 at 12:22 +0530, Rajendra Nayak wrote: > On Wednesday 29 February 2012 07:56 PM, Tero Kristo wrote: > > From: Vishwanath BS > > > > Enable IO Wake up for OMAP3 as part of PM Init. Currently this has been > > managed in cpuidle path which is not the right place. Subsequent patch > > will remove IO Daisy chain handling in cpuidle path once daisy chain is > > handled as part of hwmod mux. > > > > Signed-off-by: Vishwanath BS > > Tested-by: Govindraj.R > > Signed-off-by: Tero Kristo > > --- > > arch/arm/mach-omap2/pm34xx.c | 4 ++++ > > 1 files changed, 4 insertions(+), 0 deletions(-) > > > > diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c > > index e97ec3f..e6c2d39 100644 > > --- a/arch/arm/mach-omap2/pm34xx.c > > +++ b/arch/arm/mach-omap2/pm34xx.c > > @@ -793,6 +793,10 @@ static int __init omap3_pm_init(void) > > goto err1; > > } > > > > + if (omap3_has_io_wakeup()) > > + omap2_prm_set_mod_reg_bits(OMAP3430_EN_IO_MASK, WKUP_MOD, > > + PM_WKEN); > > On OMAP4 this GLOBAL IO chain enable happens as part of the trigger > function itself, it might make sense to do that for OMAP3 too to avoid > similar issues as seen on OMAP4 when the GLOBAL switch is enabled too > late in boot. The best however would be to get rid of it in the trigger > function and enable this early during PM init, but I am not sure whats > a good place to do this 'early' enough. Sounds good. This will take care of the comment from Paul also. -Tero > > regards, > Rajendra > > > + > > ret = pwrdm_for_each(pwrdms_setup, NULL); > > if (ret) { > > printk(KERN_ERR "Failed to setup powerdomains\n"); >