From patchwork Thu Dec 27 04:00:40 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Inderpal Singh X-Patchwork-Id: 13697 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 8F6C723F76 for ; Thu, 27 Dec 2012 04:00:48 +0000 (UTC) Received: from mail-vc0-f182.google.com (mail-vc0-f182.google.com [209.85.220.182]) by fiordland.canonical.com (Postfix) with ESMTP id 29DAFA18678 for ; Thu, 27 Dec 2012 04:00:48 +0000 (UTC) Received: by mail-vc0-f182.google.com with SMTP id fy27so9471299vcb.27 for ; Wed, 26 Dec 2012 20:00:47 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:x-forwarded-to:x-forwarded-for:delivered-to:x-received :received-spf:x-received:from:to:cc:subject:date:message-id:x-mailer :x-gm-message-state; bh=foCar14pVLNB7q+L6P7SHEVDorsp/W9eEpSFBlSEDx8=; b=eu7iTvuTSI2MdUCEFDXzzxl1EtVcsFNRe20LzDhOOY+f65qi3RQr6bKkRsydOBvXsp eOhbYg/qJ8Ez9sfi/rdNWsg+OXvUr4slBBMPDCGoImXK//3LII1lDB5L1lWgD8kBDw+w Flp/e1xS3Z7uZez7COltY/6bjNw5ffKbbPLJWXqh68oxEH8E4ml/33rRD9DzQLV7zdSK I6HiPSK1DxPd8Ii90zqve8qxbEPHtlTQhFcBLkcqoVx6uukKXEVQzf5UYY1G9hlLjsl9 Qtu9NLVDnoWsVRhMhyF+6fihsrM6o4BvQcB4SutgmsjZFXcX1CxZYfRn4J2VI1GBQeRg S8ig== X-Received: by 10.58.247.132 with SMTP id ye4mr46461653vec.9.1356580847643; Wed, 26 Dec 2012 20:00:47 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.58.214.195 with SMTP id oc3csp2746vec; Wed, 26 Dec 2012 20:00:47 -0800 (PST) X-Received: by 10.68.204.103 with SMTP id kx7mr92298207pbc.33.1356580846681; Wed, 26 Dec 2012 20:00:46 -0800 (PST) Received: from mail-pa0-f54.google.com (mail-pa0-f54.google.com [209.85.220.54]) by mx.google.com with ESMTPS id xg10si27801583pbc.147.2012.12.26.20.00.46 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 26 Dec 2012 20:00:46 -0800 (PST) Received-SPF: neutral (google.com: 209.85.220.54 is neither permitted nor denied by best guess record for domain of inderpal.singh@linaro.org) client-ip=209.85.220.54; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.220.54 is neither permitted nor denied by best guess record for domain of inderpal.singh@linaro.org) smtp.mail=inderpal.singh@linaro.org Received: by mail-pa0-f54.google.com with SMTP id bi5so5230999pad.27 for ; Wed, 26 Dec 2012 20:00:46 -0800 (PST) X-Received: by 10.68.243.33 with SMTP id wv1mr86286229pbc.143.1356580846015; Wed, 26 Dec 2012 20:00:46 -0800 (PST) Received: from inder-ubuntu.sisodomain.com ([115.113.119.130]) by mx.google.com with ESMTPS id gu5sm17014151pbc.10.2012.12.26.20.00.43 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 26 Dec 2012 20:00:45 -0800 (PST) From: Inderpal Singh To: linux-samsung-soc@vger.kernel.org Cc: kgene.kim@samsung.com, patches@linaro.org Subject: [PATCH] ARM: EXYNOS4: Add support for rtc wakeup Date: Thu, 27 Dec 2012 09:30:40 +0530 Message-Id: <1356580840-22960-1-git-send-email-inderpal.singh@linaro.org> X-Mailer: git-send-email 1.7.9.5 X-Gm-Message-State: ALoCoQk8xVrVJOu0ca4JW/grdgz8bd/GfcRiRGJwjtuFsoS0pXJO71vs3ZErS5WJ87jaVWh35ddK Set the gic arch extension callback to support rtc wakeup. Signed-off-by: Inderpal Singh --- arch/arm/mach-exynos/common.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/arch/arm/mach-exynos/common.c b/arch/arm/mach-exynos/common.c index 578a610..bf2ee1d 100644 --- a/arch/arm/mach-exynos/common.c +++ b/arch/arm/mach-exynos/common.c @@ -747,6 +747,8 @@ void __init exynos4_init_irq(void) * uses GIC instead of VIC. */ s5p_init_irq(NULL, 0); + + gic_arch_extn.irq_set_wake = s3c_irq_wake; } void __init exynos5_init_irq(void)