From patchwork Thu Feb 25 14:41:16 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Aguirre Rodriguez, Sergio Alberto" X-Patchwork-Id: 82018 X-Patchwork-Delegate: paul@pwsan.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o1PEfD6T031874 for ; Thu, 25 Feb 2010 14:41:16 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932771Ab0BYOlM (ORCPT ); Thu, 25 Feb 2010 09:41:12 -0500 Received: from arroyo.ext.ti.com ([192.94.94.40]:35208 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932763Ab0BYOlK (ORCPT ); Thu, 25 Feb 2010 09:41:10 -0500 Received: from dlep36.itg.ti.com ([157.170.170.91]) by arroyo.ext.ti.com (8.13.7/8.13.7) with ESMTP id o1PEf9qg005548 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 25 Feb 2010 08:41:09 -0600 Received: from legion.dal.design.ti.com (localhost [127.0.0.1]) by dlep36.itg.ti.com (8.13.8/8.13.8) with ESMTP id o1PEf9YK001118; Thu, 25 Feb 2010 08:41:09 -0600 (CST) Received: from localhost (dtx0091359-ubuntu-1.am.dhcp.ti.com [128.247.79.73]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id o1PEf8Z09301; Thu, 25 Feb 2010 08:41:08 -0600 (CST) From: Sergio Aguirre To: linux-omap@vger.kernel.org Cc: Sergio Aguirre Subject: [RFC][PATCH 3/3] omap3: serial: Add uart4 wakeup handling Date: Thu, 25 Feb 2010 08:41:16 -0600 Message-Id: <1267108876-18028-4-git-send-email-saaguirre@ti.com> X-Mailer: git-send-email 1.6.3.3 In-Reply-To: <1267108876-18028-1-git-send-email-saaguirre@ti.com> References: <1267108876-18028-1-git-send-email-saaguirre@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.3 (demeter.kernel.org [140.211.167.41]); Thu, 25 Feb 2010 14:41:16 +0000 (UTC) diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index c4a810b..1942cc8 100644 --- a/arch/arm/mach-omap2/serial.c +++ b/arch/arm/mach-omap2/serial.c @@ -475,6 +475,10 @@ static void omap_uart_idle_init(struct omap_uart_state *uart) wk_mask = OMAP3430_ST_UART3_MASK; padconf = 0x19e; break; + case 3: + wk_mask = OMAP3630_ST_UART4_MASK; + padconf = 0x0d2; + break; } uart->wk_mask = wk_mask; uart->padconf = padconf;