From patchwork Mon Aug 29 17:35:39 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Hilman X-Patchwork-Id: 1109262 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p7THrWSm008158 for ; Mon, 29 Aug 2011 17:53:38 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754527Ab1H2Rfp (ORCPT ); Mon, 29 Aug 2011 13:35:45 -0400 Received: from na3sys009aog108.obsmtp.com ([74.125.149.199]:43039 "EHLO na3sys009aog108.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754521Ab1H2Rfm (ORCPT ); Mon, 29 Aug 2011 13:35:42 -0400 Received: from mail-yw0-f52.google.com ([209.85.213.52]) (using TLSv1) by na3sys009aob108.postini.com ([74.125.148.12]) with SMTP ID DSNKTlvN7X96SV/PRTmFTVCukHAHDzP/9Sq4@postini.com; Mon, 29 Aug 2011 10:35:42 PDT Received: by mail-yw0-f52.google.com with SMTP id 7so6887377ywo.11 for ; Mon, 29 Aug 2011 10:35:41 -0700 (PDT) Received: by 10.142.154.20 with SMTP id b20mr2387146wfe.141.1314639341562; Mon, 29 Aug 2011 10:35:41 -0700 (PDT) Received: from localhost.localdomain (c-24-19-7-36.hsd1.wa.comcast.net. [24.19.7.36]) by mx.google.com with ESMTPS id m1sm19531524pbf.3.2011.08.29.10.35.39 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 29 Aug 2011 10:35:40 -0700 (PDT) From: Kevin Hilman To: linux-omap@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org Subject: [PATCH 06/22] OMAP3: voltagedomain data: add wakeup domain Date: Mon, 29 Aug 2011 10:35:39 -0700 Message-Id: <1314639355-12713-7-git-send-email-khilman@ti.com> X-Mailer: git-send-email 1.7.6 In-Reply-To: <1314639355-12713-1-git-send-email-khilman@ti.com> References: <1314639355-12713-1-git-send-email-khilman@ti.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter2.kernel.org [140.211.167.43]); Mon, 29 Aug 2011 17:53:38 +0000 (UTC) Add wakeup voltage domain so that the wakeup powerdomain can have an associated powerdomain. Note that the scalable flat is not set for the this voltagedomain, so it will not be fully initialized like scalable voltage domains. Signed-off-by: Kevin Hilman --- arch/arm/mach-omap2/voltagedomains3xxx_data.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/voltagedomains3xxx_data.c b/arch/arm/mach-omap2/voltagedomains3xxx_data.c index 2167ef4..42d0b11 100644 --- a/arch/arm/mach-omap2/voltagedomains3xxx_data.c +++ b/arch/arm/mach-omap2/voltagedomains3xxx_data.c @@ -69,9 +69,14 @@ static struct voltagedomain omap3_voltdm_core = { .vdd = &omap3_vdd2_info, }; +static struct voltagedomain omap3_voltdm_wkup = { + .name = "wakeup", +}; + static struct voltagedomain *voltagedomains_omap3[] __initdata = { &omap3_voltdm_mpu, &omap3_voltdm_core, + &omap3_voltdm_wkup, NULL, };