From patchwork Thu Feb 5 02:05:52 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Hilman X-Patchwork-Id: 5555 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n1526X1i012746 for ; Thu, 5 Feb 2009 02:06:49 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757183AbZBECGs (ORCPT ); Wed, 4 Feb 2009 21:06:48 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757148AbZBECGs (ORCPT ); Wed, 4 Feb 2009 21:06:48 -0500 Received: from el-out-1112.google.com ([209.85.162.176]:24973 "EHLO el-out-1112.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757183AbZBECGs (ORCPT ); Wed, 4 Feb 2009 21:06:48 -0500 Received: by el-out-1112.google.com with SMTP id b25so124elf.1 for ; Wed, 04 Feb 2009 18:06:47 -0800 (PST) Received: by 10.65.132.20 with SMTP id j20mr4354275qbn.43.1233799606666; Wed, 04 Feb 2009 18:06:46 -0800 (PST) Received: from localhost (deeprooted.net [216.254.16.51]) by mx.google.com with ESMTPS id s12sm3104398qbs.29.2009.02.04.18.06.45 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 04 Feb 2009 18:06:46 -0800 (PST) From: Kevin Hilman To: linux-arm-kernel@lists.arm.linux.org.uk Cc: linux-omap@vger.kernel.org Subject: [PATCH 06/21] OMAP3: PM: Add wake-up bit defintiions for CONTROL_PADCONF_X Date: Wed, 4 Feb 2009 18:05:52 -0800 Message-Id: <1233799567-22250-7-git-send-email-khilman@deeprootsystems.com> X-Mailer: git-send-email 1.6.1 In-Reply-To: <1233799567-22250-6-git-send-email-khilman@deeprootsystems.com> References: <1233799567-22250-1-git-send-email-khilman@deeprootsystems.com> <1233799567-22250-2-git-send-email-khilman@deeprootsystems.com> <1233799567-22250-3-git-send-email-khilman@deeprootsystems.com> <1233799567-22250-4-git-send-email-khilman@deeprootsystems.com> <1233799567-22250-5-git-send-email-khilman@deeprootsystems.com> <1233799567-22250-6-git-send-email-khilman@deeprootsystems.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org Signed-off-by: Kevin Hilman --- arch/arm/plat-omap/include/mach/control.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/arch/arm/plat-omap/include/mach/control.h b/arch/arm/plat-omap/include/mach/control.h index 8a65bd2..0c9b197 100644 --- a/arch/arm/plat-omap/include/mach/control.h +++ b/arch/arm/plat-omap/include/mach/control.h @@ -207,6 +207,10 @@ #define OMAP2_PBIASLITEPWRDNZ0 (1 << 1) #define OMAP2_PBIASLITEVMODE0 (1 << 0) +/* CONTROL_PADCONF_X bits */ +#define OMAP3_PADCONF_WAKEUPEVENT0 (1 << 15) +#define OMAP3_PADCONF_WAKEUPENABLE0 (1 << 14) + #ifndef __ASSEMBLY__ #if defined(CONFIG_ARCH_OMAP2) || defined(CONFIG_ARCH_OMAP3) extern void __iomem *omap_ctrl_base_get(void);